#ifndef SIZE_H #define SIZE_H struct Size final { int width; int height; Size(int width, int height); }; #endif