#pragma once #include namespace kd { template class Point { public: Point(T latitude, T longitude) : latitude(latitude), longitude(longitude) {} // latitude // y // ^ // | // 0---> x longitude T latitude; T longitude; /// nice stream formatting with the standard << operator friend std::ostream& operator<<(std::ostream& stream, const Point& p) { return stream << "(lat: " << p.latitude << ", lng: " << p.longitude << ')'; } }; }