Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qqmltypemoduleversion.cpp
Go to the documentation of this file.
1// Copyright (C) 2019 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
5
7
8QQmlTypeModuleVersion::QQmlTypeModuleVersion()
9 : m_module(nullptr), m_minor(0)
10{
11}
12
14 : m_module(module), m_minor(version.minorVersion())
15{
16 Q_ASSERT(m_module);
17}
18
23
25{
26 m_module = o.m_module;
27 m_minor = o.m_minor;
28 return *this;
29}
30
31QT_END_NAMESPACE
QQmlTypeModuleVersion & operator=(const QQmlTypeModuleVersion &)
QQmlTypeModuleVersion(QQmlTypeModule *, QTypeRevision)
QQmlTypeModuleVersion(const QQmlTypeModuleVersion &)
Combined button and popup list for selecting options.