#ifndef _cponto_h #define _cponto_h class cponto{ private: int x,y; public: cponto(); cponto(int _x, int _y); int getX(); int getY(); void setX(int _x); void setY(int _y); void set(int _x, int _y); }; #endif