#include "Rectangle.hpp" int Rectangle::getWidth() const { return width;} int Rectangle::getHeight() const { return height;} void Rectangle::setWidth(int w) { width = w; }