mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
22 lines
831 B
Plaintext
22 lines
831 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, 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();
|
|
|
|
};
|