#include #include #include using namespace std; #include "Point.hpp" class Rectangle { private: int width, height; Point *origin; public: Rectangle(int w, int h, Point p); Rectangle(int s, Point p); Rectangle(); ~Rectangle(); void setWidth(int w); void setHeight(int h); int getWidth(); int getHeight(); void setOrigin(Point *p); Point *getOrigin() const; };