class Rectangle { public: Rectangle(int x, int y, int width, int height, char *label, char *color); ~Rectangle(); void draw(); void move(int x, int y); void resize(int width, int height); void setLabel(char *); void setColor(char *); int containsPt(int x, int y); int getLeft(); int getTop(); int getWidth(); int getHeight(); char *getLabel(); char *getColor(); protected: int left; int top; int width; int height; char *label; char *color; };