#include "Point.h" // my file bool CPoint::setxy(double a, double b) { x=a; y=b; return true; } CPoint::~CPoint() { } CPoint::CPoint() { x=1; y=2; }