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 | |
24 | QT_BEGIN_NAMESPACE |
25 | |
26 | namespace Qt3DAnimation { |
27 | namespace Quick { |
28 | |
29 | Q_3DQUICKANIMATIONSHARED_PRIVATE_EXPORT void Quick3DAnimation_initialize(); |
30 | Q_3DQUICKANIMATIONSHARED_PRIVATE_EXPORT void Quick3DAnimation_registerType(const char *className, const char *quickName, int major, int minor); |
31 | |
32 | template<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 | |
39 | template<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 | |
49 | QT_END_NAMESPACE |
50 | |
51 | #endif // QT3DQUICKANIMATION_GLOBAL_P_H |
52 | |