aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/size.cpp
blob: 5edb8a77bba3525d3b446b767de6821d178f2ceb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <iostream>
#include "size.h"

using namespace std;

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