21 #ifndef GEOS_GEOMGRAPH_TOPOLOGYLOCATION_H
22 #define GEOS_GEOMGRAPH_TOPOLOGYLOCATION_H
24 #include <geos/export.h>
25 #include <geos/inline.h>
32 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
89 int get(std::size_t posIndex)
const;
99 bool isAnyNull()
const;
109 void setAllLocations(
int locValue);
111 void setAllLocationsIfNull(
int locValue);
113 void setLocation(std::size_t locIndex,
int locValue);
115 void setLocation(
int locValue);
118 const std::vector<int> &getLocations()
const;
120 void setLocations(
int on,
int left,
int right);
122 bool allPositionsEqual(
int loc)
const;
130 std::string toString()
const;
134 std::vector<int> location;
150 #endif // ifndef GEOS_GEOMGRAPH_TOPOLOGYLOCATION_H
A TopologyLocation is the labelling of a GraphComponent's topological relationship to a single Geomet...
Definition: TopologyLocation.h:58