#ifndef POINT_2D_H #define POINT_2D_H #include class Point_2D { private: int m_ix, m_iy; public: int getX() const; int getY() const; Point_2D(const int x = 0, const int y = 0); }; std::ostream &operator<<(std::ostream &, const Point_2D &); #endif