class Rectangle { private: int *width_ptr, *height_ptr; public: Rectangle(); Rectangle(int w, int h); Rectangle(int s); ~Rectangle(); void setWidth(int w); void setHeight(int h); int getWidth(); int getHeight(); int getArea(); };