aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/size.cpp
blob: 0291d6e8600253b00e11daa40fb724dd77c2050f (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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 "size.h"

#include <iostream>

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