File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,13 @@ public:
49
49
WKBMultiPoint,
50
50
WKBMultiLineString,
51
51
WKBMultiPolygon,
52
- WKBUnknown
52
+ WKBUnknown,
53
+ WKBPoint25D = 0x80000001,
54
+ WKBLineString25D,
55
+ WKBPolygon25D,
56
+ WKBMultiPoint25D,
57
+ WKBMultiLineString25D,
58
+ WKBMultiPolygon25D
53
59
};
54
60
enum GeometryType
55
61
{
@@ -104,6 +110,8 @@ public:
104
110
const int PROJ_PREFIX_LEN;
105
111
/** The length of teh string "+ellps=" */
106
112
const int ELLPS_PREFIX_LEN;
113
+ /** The length of the string "+lat_1=" */
114
+ const int LAT_PREFIX_LEN;
107
115
/** Magick number that determins whether a projection srsid is a system (srs.db)
108
116
* or user (~/.qgis.qgis.db) defined projection. */
109
117
const int USER_CRS_START_ID;
@@ -116,3 +124,5 @@ public:
116
124
const float MINIMUM_POINT_SIZE;
117
125
/** Magic number that determines the minimum allowable point size for point symbols */
118
126
const float DEFAULT_POINT_SIZE;
127
+ const double DEFAULT_LINE_WIDTH;
128
+
You can’t perform that action at this time.
0 commit comments