#include #include "Point.h" using namespace std; void Point::display(void) const { cout << '(' << x << ',' << y << ')' << endl; } void Point::move(int dx, int dy) { x += dx; y += dy; }