diff --git a/src/contour_creator.hh b/src/contour_creator.hh index 87d5066..54d29b9 100644 --- a/src/contour_creator.hh +++ b/src/contour_creator.hh @@ -35,4 +35,18 @@ class CellMap OGRSpatialReference reference_system; CellMap(int width, int height, uint8_t* cells, OGRSpatialReference reference_system, double* geotransform); int get_cell(int x,int y); -}; \ No newline at end of file +}; + +class Point +{ + public: + int x; + int y; + int mscase; + Point(int x, int y, int mscase){ + this -> x = x; + this -> y = y; + this -> mscase = mscase; + + }; +};