aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmltypenotavailable.cpp
blob: b3d33eb706efd1090cc81b6a1e1d817cda5eef43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include "qqmltypenotavailable_p.h"

QT_BEGIN_NAMESPACE

int qmlRegisterTypeNotAvailable(const char *uri, int versionMajor, int versionMinor, const char *qmlName, const QString& message)
{
    return qmlRegisterUncreatableType<QQmlTypeNotAvailable>(uri,versionMajor,versionMinor,qmlName,message);
}

QT_END_NAMESPACE

#include "moc_qqmltypenotavailable_p.cpp"