24 #include <geos/export.h>
29 #include <geos/geomgraph/EdgeIntersection.h>
30 #include <geos/geom/Coordinate.h>
34 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
62 using container = std::vector<EdgeIntersection>;
63 using const_iterator = container::const_iterator;
66 mutable container nodeMap;
80 void add(
const geom::Coordinate& coord, std::size_t segmentIndex,
double dist);
86 std::sort(nodeMap.begin(), nodeMap.end());
87 nodeMap.erase(std::unique(nodeMap.begin(), nodeMap.end()), nodeMap.end());
91 return nodeMap.begin();
118 std::string print()
const;