15 lines
170 B
C++
15 lines
170 B
C++
#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;
|
|
}
|