#ifndef POINT_H #define POINT_H #include #include using namespace std; class Point { private: //member variables string name; int x_val; int y; public: //member functions void print() const; void move_up(int unit); //accesssor int get_x() const; int get_y() const; string get_name() const; //mutators void set_x(const int new_x); void set_y(const int new_y); void set_name(const string new_name); }; #endif