#include "point.h" int Point::getY() const { return y_; } int Point::getX() const { return x_; } void Point::setX(int x) { x_=x; } void Point::setY(int y) { y_=y; }