PlottWare/PlottWareControl/point.h
2019-08-08 17:02:07 +03:00

17 lines
259 B
C++

#ifndef POINT_H_INCLUDED
#define POINT_H_INCLUDED
class Point{
float x;
float y;
public:
Point();
Point(float _x, float _y);
float getX();
float getY();
void setX(float _x);
void setY(float _y);
};
#endif // POINT_H_INCLUDED