aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/size.cpp
blob: 63af9c82842e73ef10a952921fcdbaa7ce1b8692 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
#include "size.h"

using namespace std;

void
Size::show() const
{
    cout << "(width: " << m_width << ", height: " << m_height << ")";
}