#ifndef POINT #define POINT 1 #include class CPoint{ public: int x; int y; void show() { cout<< "("<< x << "," << y << ")" << "\n";} bool setxy(int ix, int iy); }; #endif