#include using namespace std; class Rectangle { public: Rectangle(int x, int y, int width, int height, string label, string color); ~Rectangle(); void draw(); void move(int x, int y); void resize(int width, int height); void setLabel(string newLabel); void setColor(string newColor); int containsPt(int x, int y); int getLeft(); int getTop(); int getWidth(); int getHeight(); string getLabel(); string getColor(); protected: int left; int top; int width; int height; string label; string color; };