#ifndef LOCAL_GCX_H #define LOCAL_GCX_H #include 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