mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
11 lines
387 B
Plaintext
11 lines
387 B
Plaintext
|
class QgsVectorLayerTools
|
||
|
{
|
||
|
%TypeHeaderCode
|
||
|
#include <qgsvectorlayertools.h>
|
||
|
%End
|
||
|
public:
|
||
|
virtual bool addFeature( QgsVectorLayer* layer, QgsAttributeMap defaultValues = QgsAttributeMap(), const QgsGeometry& = QgsGeometry() ) = 0;
|
||
|
virtual bool startEditing( QgsVectorLayer* layer ) = 0;
|
||
|
virtual bool stopEditing( QgsVectorLayer* layer, bool allowCancel = true ) = 0;
|
||
|
};
|