jf8441's picture
Upload 25 files
0ef7a64 verified
raw
history blame
239 Bytes
#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;
}