22 #ifndef GEOS_GEOMGRAPH_EDGEINTERSECTIONLIST_H 23 #define GEOS_GEOMGRAPH_EDGEINTERSECTIONLIST_H 25 #include <geos/export.h> 30 #include <geos/geomgraph/EdgeIntersection.h> 31 #include <geos/geom/Coordinate.h> 33 #include <geos/inline.h> 37 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class 64 using container = std::vector<EdgeIntersection>;
65 using const_iterator = container::const_iterator;
68 mutable container nodeMap;
88 std::sort(nodeMap.begin(), nodeMap.end());
89 nodeMap.erase(std::unique(nodeMap.begin(), nodeMap.end()), nodeMap.end());
93 return nodeMap.begin();
101 bool isEmpty()
const;
117 void addSplitEdges(std::vector<Edge*>* edgeList);
120 std::string print()
const;
132 #endif // ifndef GEOS_GEOMGRAPH_EDGEINTERSECTIONLIST_H Coordinate is the lightweight class used to store coordinates.
Definition: Coordinate.h:60
Definition: EdgeIntersection.h:45
Definition: EdgeIntersectionList.h:59
Basic namespace for all GEOS functionalities.
Definition: IndexedNestedRingTester.h:25
Definition: geomgraph/Edge.h:66