class Point { private: int x, y; public: Point(); // Default constructor Point(int nX); // another constructor Point(int nX, int nY); // another constructor void setX(int nX); void setY(int nY); int getX(); int getY(); };