You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/core/qgsgml.h
+24-9
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,10 @@
34
34
classQgsRectangle;
35
35
classQgsCoordinateReferenceSystem;
36
36
37
-
/**This class reads data from a WFS server or alternatively from a GML file. It uses the expat XML parser and an event based model to keep performance high. The parsing starts when the first data arrives, it does not wait until the request is finished*/
37
+
/**This class reads data from a WFS server or alternatively from a GML file. It
38
+
* uses the expat XML parser and an event based model to keep performance high.
39
+
* The parsing starts when the first data arrives, it does not wait until the
40
+
* request is finished */
38
41
classCORE_EXPORT QgsGml: public QObject
39
42
{
40
43
Q_OBJECT
@@ -117,26 +120,33 @@ class CORE_EXPORT QgsGml: public QObject
/**Creates a multiline from the information in mCurrentWKBFragments and mCurrentWKBFragmentSizes. Assign the result. The multiline is in mCurrentWKB and mCurrentWKBSize. The function deletes the memory in mCurrentWKBFragments. Returns 0 in case of success.*/
145
+
/**Creates a multiline from the information in mCurrentWKBFragments and
146
+
* mCurrentWKBFragmentSizes. Assign the result. The multiline is in
147
+
* mCurrentWKB and mCurrentWKBSize. The function deletes the memory in
148
+
* mCurrentWKBFragments. Returns 0 in case of success.
149
+
*/
140
150
intcreateMultiLineFromFragments();
141
151
intcreateMultiPointFromFragments();
142
152
intcreatePolygonFromFragments();
@@ -146,9 +156,11 @@ class CORE_EXPORT QgsGml: public QObject
146
156
147
157
/**Returns pointer to main window or 0 if it does not exist*/
148
158
QWidget* findMainWindow() const;
149
-
/**This function evaluates the layer bounding box from the features and sets it to mExtent.
150
-
Less efficient compared to reading the bbox from the provider, so it is only done if the wfs server
151
-
does not provider extent information.*/
159
+
/**This function evaluates the layer bounding box from the features and
160
+
* sets it to mExtent. Less efficient compared to reading the bbox from
161
+
* the provider, so it is only done if the wfs server does not provider
162
+
* extent information.
163
+
*/
152
164
voidcalculateExtentFromFeatures();
153
165
154
166
/** Get safely (if empty) top from mode stack */
@@ -191,7 +203,10 @@ class CORE_EXPORT QgsGml: public QObject
191
203
/**The total WKB size for a feature*/
192
204
intmCurrentWKBSize;
193
205
QgsRectangle mCurrentExtent;
194
-
/**WKB intermediate storage during parsing. For points and lines, no intermediate WKB is stored at all. For multipoins and multilines and polygons, only one nested list is used. For multipolygons, both nested lists are used*/
206
+
/**WKB intermediate storage during parsing. For points and lines, no
207
+
* intermediate WKB is stored at all. For multipoints and multilines and
208
+
* polygons, only one nested list is used. For multipolygons, both nested lists
0 commit comments