File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
src/analysis/vector/geometry_checker Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,17 @@ class ANALYSIS_EXPORT QgsGeometryOverlapCheck : public QgsGeometryCheck
98
98
static QList<QgsWkbTypes::GeometryType> factoryCompatibleGeometryTypes () {return {QgsWkbTypes::PolygonGeometry};}
99
99
static bool factoryIsCompatible ( QgsVectorLayer *layer ) SIP_SKIP { return factoryCompatibleGeometryTypes ().contains ( layer->geometryType () ); }
100
100
101
+ QString description () const override ;
102
+ QString id () const override ;
103
+ QgsGeometryCheck::Flags flags () const override ;
104
+
105
+ // /@cond private
106
+ static QString factoryDescription () SIP_SKIP;
107
+ static QString factoryId () SIP_SKIP;
108
+ static QgsGeometryCheck::Flags factoryFlags () SIP_SKIP;
109
+ static QList<QgsWkbTypes::GeometryType> factoryCompatibleGeometryTypes () SIP_SKIP;
110
+ static bool factoryIsCompatible ( QgsVectorLayer *layer ) SIP_SKIP;
111
+ // /@endcond private
101
112
102
113
enum ResolutionMethod { Subtract, NoChange };
103
114
You can’t perform that action at this time.
0 commit comments