- /*
- * File: Point.h
- * Author: max
- *
- * Created on 17 Февраль 2011 г., 17:07
- */
- #ifndef POINT_H
- #define POINT_H
- class Point
- {
- public:
- Point(double _x = 0,double _y = 0) : x(_x),y(_y) {}
- void Show() const;
- void Set_Coordinate(double x1,double y1);
- private:
- double x,y;
- };
- #endif /* POINT_H */