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

#include "typesystypedef.h"

ValueWithUnitUser::ValueWithUnitUser() = default;

ValueWithUnit<double, LengthUnit::Millimeter>
    ValueWithUnitUser::doubleInchToMillimeter(ValueWithUnit<double, LengthUnit::Inch> v)
{
    return ValueWithUnit<double, LengthUnit::Millimeter>(v.value() * 254);
}