File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ SET(QGIS_CORE_SRCS
163
163
qgslegendstyle.cpp
164
164
qgslocalec.cpp
165
165
qgslogger.cpp
166
+ qgsmapdecoration.cpp
166
167
qgsmaphittest.cpp
167
168
qgsmaplayer.cpp
168
169
qgsmaplayerlegend.cpp
Original file line number Diff line number Diff line change
1
+ /* **************************************************************************
2
+ qgsmapdecoration.cpp
3
+ ----------------
4
+ begin : April 2017
5
+ copyright : (C) 2017 by Mathieu Pellerin
6
+ email : nirvn dot asia at gmail dot com
7
+ ***************************************************************************/
8
+
9
+ /* **************************************************************************
10
+ * *
11
+ * This program is free software; you can redistribute it and/or modify *
12
+ * it under the terms of the GNU General Public License as published by *
13
+ * the Free Software Foundation; either version 2 of the License, or *
14
+ * (at your option) any later version. *
15
+ * *
16
+ ***************************************************************************/
17
+
18
+ #include " qgsmapdecoration.h"
19
+
20
+ QgsMapDecoration::QgsMapDecoration ()
21
+ {
22
+ }
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class CORE_EXPORT QgsMapDecoration
37
37
/* *
38
38
* Constructor for QgsMapDecoration.
39
39
*/
40
- QgsMapDecoration () {}
40
+ QgsMapDecoration ();
41
41
42
42
virtual ~QgsMapDecoration () = default ;
43
43
You can’t perform that action at this time.
1 commit comments
nirvn commentedon Apr 23, 2017
Thanks @jef-n .