1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef LOCAL_GCX_H
- #define LOCAL_GCX_H
- #include <cstdio>
- namespace gcx {
- class Point {
- private:
- int x, y, z;
- char tag;
- public:
- Point();
- Point(const char &tag);
- Point(const char &tag, const int &xx, const int &yy, const int &zz);
- // Point &operator=(const Point &point);
- void show() const;
- };
- class Dataset {
- private:
- Point s, e;
- bool b;
- public:
- Dataset();
- Dataset(const Point &ss, const Point &ee, const bool &bb);
- // Dataset &operator=(const Dataset &data);
- void show() const;
- };
- class Manager {
- private:
- Dataset set;
- int data;
- public:
- void SetNew(const Dataset &onj);
- };
- }
- #endif
|