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)
65 using container = std::vector<EdgeIntersection>;
66 using const_iterator = container::const_iterator;
69 mutable container nodeMap;
89 std::sort(nodeMap.begin(), nodeMap.end());
90 nodeMap.erase(std::unique(nodeMap.begin(), nodeMap.end()), nodeMap.end());
94 return nodeMap.begin();
102 bool isEmpty()
const;
121 std::string print()
const;
Coordinate is the lightweight class used to store coordinates.
Definition: Coordinate.h:60
A list of edge intersections along an Edge.
Definition: EdgeIntersectionList.h:60
void addSplitEdges(std::vector< Edge * > *edgeList)
Represents a point on an edge which intersects with another edge.
Definition: EdgeIntersection.h:45
Definition: geomgraph/Edge.h:66
Basic namespace for all GEOS functionalities.
Definition: IndexedNestedRingTester.h:26