OGS
GeoType.h
Go to the documentation of this file.
1 
15 #pragma once
16 
17 #include <string>
18 
19 namespace GeoLib {
20 
25 enum class GEOTYPE {
26  POINT,
27  POLYLINE,
28  SURFACE
29 };
30 
31 std::string convertGeoTypeToString (GEOTYPE geo_type);
32 
33 } // end namespace GeoLib
GEOTYPE
Definition: GeoType.h:25
std::string convertGeoTypeToString(GEOTYPE geo_type)
Definition: GeoType.cpp:23