// Copyright 2016, University of Freiburg, // Chair of Algorithms and Data Structures. // Author: Patrick Brosi #ifndef UTIL_GEO_POINT_H_ #define UTIL_GEO_POINT_H_ #include #include namespace util { namespace geon { template class Point { public: Point(T x, T y) : _x(x), _y(y) {} T getX() const { return _x; } T getY() const { return _y; } void setX(T x) { _x = x; } void setY(T y) { _y = y; } private: T _x, _y; }; } // namespace geon } // namespace util #endif // UTIL_GEO_POINT_H_