QGIS API Documentation  2.8.2-Wien
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgsvectorlayertools.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsvectorlayertools.h
3  --------------------------------------
4  Date : 29.5.2013
5  Copyright : (C) 2013 Matthias Kuhn
6  Email : matthias dot kuhn at gmx dot ch
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #ifndef QGSVECTORLAYERTOOLS_H
17 #define QGSVECTORLAYERTOOLS_H
18 
19 #include "qgsfeature.h"
20 #include "qgsgeometry.h"
21 
22 class QgsVectorLayer;
23 
33 class GUI_EXPORT QgsVectorLayerTools
34 {
35  public:
37  {}
38 
40  {}
41 
50  virtual bool addFeature( QgsVectorLayer* layer, QgsAttributeMap defaultValues = QgsAttributeMap(), const QgsGeometry& defaultGeometry = QgsGeometry() ) const = 0;
51 
52 
62  virtual bool startEditing( QgsVectorLayer* layer ) const = 0;
63 
72  virtual bool stopEditing( QgsVectorLayer* layer, bool allowCancel = true ) const = 0;
73 
80  virtual bool saveEdits( QgsVectorLayer* layer ) const = 0;
81 
82 };
83 
84 #endif // QGSVECTORLAYERTOOLS_H