1// Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB).
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QT3DQUICKANIMATION_GLOBAL_P_H
5#define QT3DQUICKANIMATION_GLOBAL_P_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists for the convenience
12// of other Qt classes. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include <Qt3DQuickAnimation/qt3dquickanimation_global.h>
19#include <QtQml/qqml.h>
20#include <private/qglobal_p.h>
21
22#define Q_3DQUICKANIMATIONSHARED_PRIVATE_EXPORT Q_3DQUICKANIMATIONSHARED_EXPORT
23
24QT_BEGIN_NAMESPACE
25
26namespace Qt3DAnimation {
27namespace Quick {
28
29Q_3DQUICKANIMATIONSHARED_PRIVATE_EXPORT void Quick3DAnimation_initialize();
30Q_3DQUICKANIMATIONSHARED_PRIVATE_EXPORT void Quick3DAnimation_registerType(const char *className, const char *quickName, int major, int minor);
31
32template<class T, class E> void registerExtendedType(const char *className, const char *quickName,
33 const char *uri, int major, int minor, const char *name)
34{
35 qmlRegisterExtendedType<T, E>(uri, major, minor, name);
36 Quick3DAnimation_registerType(className, quickName, major, minor);
37}
38
39template<class T> void registerType(const char *className, const char *quickName,
40 const char *uri, int major, int minor, const char *name)
41{
42 qmlRegisterType<T>(uri, major, minor, name);
43 Quick3DAnimation_registerType(className, quickName, major, minor);
44}
45
46} // Quick
47} // Qt3DAnimation
48
49QT_END_NAMESPACE
50
51#endif // QT3DQUICKANIMATION_GLOBAL_P_H
52

source code of qt3d/src/quick3d/quick3danimation/qt3dquickanimation_global_p.h