21 #ifndef GEOS_GEOMGRAPH_EDGENODINGVALIDATOR_H
22 #define GEOS_GEOMGRAPH_EDGENODINGVALIDATOR_H
24 #include <geos/export.h>
27 #include <geos/noding/FastNodingValidator.h>
29 #include <geos/inline.h>
33 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
39 class CoordinateSequence;
60 std::vector<noding::SegmentString*>& toSegmentStrings(std::vector<Edge*>& edges);
66 std::vector<noding::SegmentString*> segStr;
72 std::vector<geom::CoordinateSequence*> newCoordSeq;
99 nv(toSegmentStrings(edges))
102 ~EdgeNodingValidator();
104 void checkValid() { nv.checkValid(); }
119 #endif // ifndef GEOS_GEOMGRAPH_EDGENODINGVALIDATOR_H
Validates that a collection of SegmentStrings is correctly noded.
Definition: EdgeNodingValidator.h:57
static void checkValid(std::vector< Edge * > &edges)
Checks whether the supplied Edges are correctly noded.
Definition: EdgeNodingValidator.h:89
Validates that a collection of SegmentStrings is correctly noded.
Definition: FastNodingValidator.h:53