#pragma once class Point { public: void display() const; void shift(int dx, int dy); private: int x_ = 0; int y_ = 0; };