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 QT3DQUICK3DANIMATIONPLUGIN_H |
5 | #define QT3DQUICK3DANIMATIONPLUGIN_H |
6 | |
7 | #include <QtQml/qqmlextensionplugin.h> |
8 | |
9 | QT_BEGIN_NAMESPACE |
10 | |
11 | class Qt3DQuick3DAnimationPlugin : public QQmlExtensionPlugin |
12 | { |
13 | Q_OBJECT |
14 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface/1.0" ) |
15 | public: |
16 | Qt3DQuick3DAnimationPlugin(QObject *parent = 0) : QQmlExtensionPlugin(parent) { } |
17 | void registerTypes(const char *uri) override; |
18 | }; |
19 | |
20 | QT_END_NAMESPACE |
21 | |
22 | #endif // QT3DQUICK3DANIMATIONPLUGIN_H |
23 | |