mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-15 00:07:25 -05:00
Add missing param doc
This commit is contained in:
parent
99b246dd78
commit
6fe832b984
@ -78,7 +78,7 @@ Writes the contents of vector layer to a different datasource.
|
||||
const QgsCoordinateReferenceSystem &crs,
|
||||
bool overwrite = false,
|
||||
const QMap<QString, QVariant> &options = QMap<QString, QVariant>(),
|
||||
QgsFeatureSink::SinkFlags sinkOptions = 0 );
|
||||
QgsFeatureSink::SinkFlags sinkFlags = 0 );
|
||||
%Docstring
|
||||
Constructor for QgsVectorLayerExporter.
|
||||
|
||||
@ -90,6 +90,7 @@ Constructor for QgsVectorLayerExporter.
|
||||
not available
|
||||
:param overwrite: set to true to overwrite any existing data source
|
||||
:param options: optional provider dataset options
|
||||
:param sinkFlags: for how to add features
|
||||
%End
|
||||
|
||||
|
||||
|
||||
@ -98,6 +98,7 @@ class CORE_EXPORT QgsVectorLayerExporter : public QgsFeatureSink
|
||||
* not available
|
||||
* \param overwrite set to true to overwrite any existing data source
|
||||
* \param options optional provider dataset options
|
||||
* \param sinkFlags for how to add features
|
||||
*/
|
||||
QgsVectorLayerExporter( const QString &uri,
|
||||
const QString &provider,
|
||||
@ -106,7 +107,7 @@ class CORE_EXPORT QgsVectorLayerExporter : public QgsFeatureSink
|
||||
const QgsCoordinateReferenceSystem &crs,
|
||||
bool overwrite = false,
|
||||
const QMap<QString, QVariant> &options = QMap<QString, QVariant>(),
|
||||
QgsFeatureSink::SinkFlags sinkOptions = nullptr );
|
||||
QgsFeatureSink::SinkFlags sinkFlags = nullptr );
|
||||
|
||||
//! QgsVectorLayerExporter cannot be copied
|
||||
QgsVectorLayerExporter( const QgsVectorLayerExporter &rh ) = delete;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user