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