@@ -32,7 +32,7 @@ class QgsGeometryCache;
32
32
#include " qgsvectorlayereditbuffer.h"
33
33
34
34
35
- class QgsVectorLayerUndoCommand : public QUndoCommand
35
+ class CORE_EXPORT QgsVectorLayerUndoCommand : public QUndoCommand
36
36
{
37
37
public:
38
38
QgsVectorLayerUndoCommand ( QgsVectorLayerEditBuffer *buffer )
@@ -50,7 +50,7 @@ class QgsVectorLayerUndoCommand : public QUndoCommand
50
50
};
51
51
52
52
53
- class QgsVectorLayerUndoCommandAddFeature : public QgsVectorLayerUndoCommand
53
+ class CORE_EXPORT QgsVectorLayerUndoCommandAddFeature : public QgsVectorLayerUndoCommand
54
54
{
55
55
public:
56
56
QgsVectorLayerUndoCommandAddFeature ( QgsVectorLayerEditBuffer* buffer, QgsFeature& f );
@@ -63,7 +63,7 @@ class QgsVectorLayerUndoCommandAddFeature : public QgsVectorLayerUndoCommand
63
63
};
64
64
65
65
66
- class QgsVectorLayerUndoCommandDeleteFeature : public QgsVectorLayerUndoCommand
66
+ class CORE_EXPORT QgsVectorLayerUndoCommandDeleteFeature : public QgsVectorLayerUndoCommand
67
67
{
68
68
public:
69
69
QgsVectorLayerUndoCommandDeleteFeature ( QgsVectorLayerEditBuffer* buffer, QgsFeatureId fid );
@@ -77,7 +77,7 @@ class QgsVectorLayerUndoCommandDeleteFeature : public QgsVectorLayerUndoCommand
77
77
};
78
78
79
79
80
- class QgsVectorLayerUndoCommandChangeGeometry : public QgsVectorLayerUndoCommand
80
+ class CORE_EXPORT QgsVectorLayerUndoCommandChangeGeometry : public QgsVectorLayerUndoCommand
81
81
{
82
82
public:
83
83
QgsVectorLayerUndoCommandChangeGeometry ( QgsVectorLayerEditBuffer* buffer, QgsFeatureId fid, QgsGeometry* newGeom );
@@ -95,7 +95,7 @@ class QgsVectorLayerUndoCommandChangeGeometry : public QgsVectorLayerUndoCommand
95
95
};
96
96
97
97
98
- class QgsVectorLayerUndoCommandChangeAttribute : public QgsVectorLayerUndoCommand
98
+ class CORE_EXPORT QgsVectorLayerUndoCommandChangeAttribute : public QgsVectorLayerUndoCommand
99
99
{
100
100
public:
101
101
QgsVectorLayerUndoCommandChangeAttribute ( QgsVectorLayerEditBuffer* buffer, QgsFeatureId fid, int fieldIndex, const QVariant& newValue );
@@ -111,7 +111,7 @@ class QgsVectorLayerUndoCommandChangeAttribute : public QgsVectorLayerUndoComman
111
111
};
112
112
113
113
114
- class QgsVectorLayerUndoCommandAddAttribute : public QgsVectorLayerUndoCommand
114
+ class CORE_EXPORT QgsVectorLayerUndoCommandAddAttribute : public QgsVectorLayerUndoCommand
115
115
{
116
116
public:
117
117
QgsVectorLayerUndoCommandAddAttribute ( QgsVectorLayerEditBuffer* buffer, const QgsField& field );
@@ -125,7 +125,7 @@ class QgsVectorLayerUndoCommandAddAttribute : public QgsVectorLayerUndoCommand
125
125
};
126
126
127
127
128
- class QgsVectorLayerUndoCommandDeleteAttribute : public QgsVectorLayerUndoCommand
128
+ class CORE_EXPORT QgsVectorLayerUndoCommandDeleteAttribute : public QgsVectorLayerUndoCommand
129
129
{
130
130
public:
131
131
QgsVectorLayerUndoCommandDeleteAttribute ( QgsVectorLayerEditBuffer* buffer, int fieldIndex );
0 commit comments