class Thing { public: Thing(); // default constructor Thing(int h, int w); // constructor with parameters void Show(); // print the object status void Set(int h, int w); // set height and weight int GetHeight(); int GetWeight(); // accessors private: int height; int weight; };