#include "point.hh" #include void Point::display() const { std::cout << "(" << x_ << ", " << y_ << ")"; } void Point::shift(const int dx, const int dy) { x_ += dx; y_ += dy; }