File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -669,6 +669,7 @@ SET(QGIS_CORE_MOC_HDRS
669
669
raster/qgsrasterlayerrenderer.h
670
670
671
671
geometry/qgspoint.h
672
+ geometry/qgsgeometry.h
672
673
673
674
geocms/geonode/qgsgeonoderequest.h
674
675
@@ -1090,7 +1091,6 @@ SET(QGIS_CORE_HDRS
1090
1091
geometry/qgsgeometryeditutils.h
1091
1092
geometry/qgsgeometryengine.h
1092
1093
geometry/qgsgeometryfactory.h
1093
- geometry/qgsgeometry.h
1094
1094
geometry/qgsgeometryutils.h
1095
1095
geometry/qgsgeos.h
1096
1096
geometry/qgsinternalgeometryengine.h
Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ struct QgsGeometryPrivate;
110
110
111
111
class CORE_EXPORT QgsGeometry
112
112
{
113
+ Q_GADGET
113
114
public:
114
115
115
116
/* *
@@ -848,6 +849,7 @@ class CORE_EXPORT QgsGeometry
848
849
SideLeft = 0 , // !< Buffer to left of line
849
850
SideRight, // !< Buffer to right of line
850
851
};
852
+ Q_ENUM ( BufferSide );
851
853
852
854
// ! End cap styles for buffers
853
855
enum EndCapStyle
@@ -856,6 +858,7 @@ class CORE_EXPORT QgsGeometry
856
858
CapFlat, // !< Flat cap (in line with start/end of line)
857
859
CapSquare, // !< Square cap (extends past start/end of line by buffer distance)
858
860
};
861
+ Q_ENUM ( EndCapStyle );
859
862
860
863
// ! Join styles for buffers
861
864
enum JoinStyle
@@ -864,6 +867,7 @@ class CORE_EXPORT QgsGeometry
864
867
JoinStyleMiter, // !< Use mitered joins
865
868
JoinStyleBevel, // !< Use beveled joins
866
869
};
870
+ Q_ENUM ( JoinStyle );
867
871
868
872
/* *
869
873
* Returns a buffer region around this geometry having the given width and with a specified number
You can’t perform that action at this time.
0 commit comments