#include #include using namespace std; class Rectangle { private: int* width; int* height; public: Rectangle(int w, int h); ~Rectangle(); void setWidth(int w); void setHeight(int h); int getWidth(); int getHeight(); };