QGIS API Documentation  2.2.0-Valmiera
 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 
47  virtual bool addFeature( QgsVectorLayer* layer, QgsAttributeMap defaultValues = QgsAttributeMap(), const QgsGeometry& defaultGeometry = QgsGeometry() ) = 0;
48 
49 
59  virtual bool startEditing( QgsVectorLayer* layer ) = 0;
60 
69  virtual bool stopEditing( QgsVectorLayer* layer, bool allowCancel = true ) = 0;
70 
71 };
72 
73 #endif // QGSVECTORLAYERTOOLS_H