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