File tree Expand file tree Collapse file tree 2 files changed +17
-9
lines changed Expand file tree Collapse file tree 2 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 21
21
#include < QDomDocument>
22
22
#include < QStringList>
23
23
24
+ QgsProperty::QgsProperty ()
25
+ {
26
+ }
27
+
28
+ QgsProperty::~QgsProperty ()
29
+ {
30
+ }
31
+
32
+ QgsPropertyValue::~QgsPropertyValue ()
33
+ {
34
+ }
35
+
24
36
void QgsPropertyValue::dump ( int tabs ) const
25
37
{
26
38
QString tabString;
Original file line number Diff line number Diff line change @@ -47,12 +47,8 @@ class QDomDocument;
47
47
class CORE_EXPORT QgsProperty
48
48
{
49
49
public:
50
-
51
- QgsProperty ()
52
- {}
53
-
54
- virtual ~ QgsProperty()
55
- {}
50
+ QgsProperty ();
51
+ virtual ~QgsProperty ();
56
52
57
53
/* * Dumps out the keys and values
58
54
*
@@ -124,7 +120,7 @@ class CORE_EXPORT QgsPropertyValue : public QgsProperty
124
120
: value_( value )
125
121
{}
126
122
127
- virtual ~QgsPropertyValue () {}
123
+ virtual ~QgsPropertyValue ();
128
124
129
125
/* * Returns true if is a QgsPropertyKey */
130
126
virtual bool isKey () const override { return false ; }
@@ -189,7 +185,7 @@ class CORE_EXPORT QgsPropertyKey : public QgsProperty
189
185
{
190
186
public:
191
187
QgsPropertyKey ( const QString &name = " " );
192
- virtual ~ QgsPropertyKey();
188
+ virtual ~QgsPropertyKey ();
193
189
194
190
// / every key has a name
195
191
// @{
@@ -207,7 +203,7 @@ class CORE_EXPORT QgsPropertyKey : public QgsProperty
207
203
208
204
209
205
// / add the given property key
210
- QgsPropertyKey * addKey ( const QString & keyName )
206
+ QgsPropertyKey *addKey ( const QString & keyName )
211
207
{
212
208
delete mProperties .take ( keyName );
213
209
mProperties .insert ( keyName, new QgsPropertyKey ( keyName ) );
You can’t perform that action at this time.
0 commit comments