#ifndef POINT_H #define POINT_H #include class Point { public: Point(int x, int y); int distance_to(Point const& other) const; bool operator==(Point const& rhs) const; private: int x; int y; }; std::ostream& operator<<(std::ostream & os, Point const& rhs); #endif