jf8441's picture
Upload 25 files
0ef7a64 verified
raw
history blame
498 Bytes
/*
Name:Wong Pui Shan
Sdutent ID:52611804
program: AScISD
Name: HAR Chiu Kwong Samson
Sdutent ID:52629360
program: AScISD
Name: LAM Cheuk Man
Sdutent ID:52621140
program: AScISD
Name:KO Jeffrey KO
Sdutent ID:525 695 30
program: AScISD
*/
#ifndef SIZE_H
#define SIZE_H
class Size
{
private:
int width;
int height;
public:
int getWidth() const;
int getHeight() const;
void setWidth(int w);
void setHeight(int h);
};
#endif