Size constructor

Size(
  1. int width,
  2. int height
)

Implementation

Size(int width, int height)
    : _width = width,
      _height = height;