@@ -47,7 +47,7 @@ class ANALYSIS_EXPORT QgsGeometryAnalyzer
4747 @param onlySelectedFeatures if true, only selected features are considered, else all the features
4848 @param p progress dialog (or 0 if no progress dialog is to be shown)
4949 @note: added in version 1.4*/
50- bool simplify ( QgsVectorLayer* layer, const QString& shapefileName, double tolerance, \
50+ bool simplify ( QgsVectorLayer* layer, const QString& shapefileName, double tolerance,
5151 bool onlySelectedFeatures = false , QProgressDialog* p = 0 );
5252
5353 /* *Calculate the true centroids, or 'center of mass' for a vector layer and
@@ -58,7 +58,7 @@ class ANALYSIS_EXPORT QgsGeometryAnalyzer
5858 @param onlySelectedFeatures if true, only selected features are considered, else all the features
5959 @param p progress dialog (or 0 if no progress dialog is to be shown)
6060 @note: added in version 1.4*/
61- bool centroids ( QgsVectorLayer* layer, const QString& shapefileName, \
61+ bool centroids ( QgsVectorLayer* layer, const QString& shapefileName,
6262 bool onlySelectedFeatures = false , QProgressDialog* p = 0 );
6363
6464 /* *Create a polygon based on the extent of all (selected) features and write it to a new shape file
@@ -80,7 +80,7 @@ class ANALYSIS_EXPORT QgsGeometryAnalyzer
8080 @param bufferDistanceField index of the attribute field that contains the buffer distance (or -1 if all features have the same buffer distance)
8181 @param p progress dialog (or 0 if no progress dialog is to be shown)
8282 @note: added in version 1.3*/
83- bool buffer ( QgsVectorLayer* layer, const QString& shapefileName, double bufferDistance, \
83+ bool buffer ( QgsVectorLayer* layer, const QString& shapefileName, double bufferDistance,
8484 bool onlySelectedFeatures = false , bool dissolve = false , int bufferDistanceField = -1 , QProgressDialog* p = 0 );
8585
8686 /* *Create convex hull(s) of a vector layer and write it to a new shape file
@@ -92,7 +92,7 @@ class ANALYSIS_EXPORT QgsGeometryAnalyzer
9292 all features have the same buffer distance)
9393 @param p progress dialog (or 0 if no progress dialog is to be shown)
9494 @note: added in version 1.4*/
95- bool convexHull ( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false , \
95+ bool convexHull ( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false ,
9696 int uniqueIdField = -1 , QProgressDialog* p = 0 );
9797
9898 /* *Dissolve a vector layer and write it to a new shape file
@@ -104,7 +104,7 @@ class ANALYSIS_EXPORT QgsGeometryAnalyzer
104104 all features should be dissolved together)
105105 @param p progress dialog (or 0 if no progress dialog is to be shown)
106106 @note: added in version 1.4*/
107- bool dissolve ( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false , \
107+ bool dissolve ( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false ,
108108 int uniqueIdField = -1 , QProgressDialog* p = 0 );
109109
110110 private:
@@ -116,7 +116,7 @@ class ANALYSIS_EXPORT QgsGeometryAnalyzer
116116 /* *Helper function to get the cetroid of an individual feature*/
117117 void centroidFeature ( QgsFeature& f, QgsVectorFileWriter* vfw );
118118 /* *Helper function to buffer an individual feature*/
119- void bufferFeature ( QgsFeature& f, int nProcessedFeatures, QgsVectorFileWriter* vfw, bool dissolve, QgsGeometry** dissolveGeometry, \
119+ void bufferFeature ( QgsFeature& f, int nProcessedFeatures, QgsVectorFileWriter* vfw, bool dissolve, QgsGeometry** dissolveGeometry,
120120 double bufferDistance, int bufferDistanceField );
121121 /* *Helper function to get the convex hull of feature(s)*/
122122 void convexFeature ( QgsFeature& f, int nProcessedFeatures, QgsGeometry** dissolveGeometry );
0 commit comments