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