mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-08 00:02:35 -05:00
22 lines
837 B
Plaintext
22 lines
837 B
Plaintext
class QgsVectorLayerEditPassthrough : QgsVectorLayerEditBuffer
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsvectorlayereditpassthrough.h>
|
|
%End
|
|
public:
|
|
QgsVectorLayerEditPassthrough( QgsVectorLayer *layer );
|
|
bool isModified() const;
|
|
bool addFeature( QgsFeature &f );
|
|
bool addFeatures( QgsFeatureList &features );
|
|
bool deleteFeature( QgsFeatureId fid );
|
|
bool deleteFeatures( const QgsFeatureIds &fids );
|
|
bool changeGeometry( QgsFeatureId fid, const QgsGeometry &geom );
|
|
bool changeAttributeValue( QgsFeatureId fid, int field, const QVariant &newValue, const QVariant &oldValue = QVariant() );
|
|
bool addAttribute( const QgsField &field );
|
|
bool deleteAttribute( int attr );
|
|
bool renameAttribute( int attr, const QString &newName );
|
|
bool commitChanges( QStringList &commitErrors );
|
|
void rollBack();
|
|
|
|
};
|