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