#include class CPoint{ public: int x; int y; void show() { cout<< "("<< x << "," << y << ")" << "\n";} bool setxy(int ix, int iy); CPoint CPoint::middlepoint(CPoint p1,CPoint p2); };