| 1 | // Copyright (C) 2016 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 | #include "qt3dquick3dextrasplugin_p.h" |
| 5 | #include "qt3dquick3dextrasforeign_p.h" |
| 6 | |
| 7 | #include <Qt3DExtras/qspritesheetitem.h> |
| 8 | #include <Qt3DQuickExtras/private/qt3dquickextras_global_p.h> |
| 9 | #include <Qt3DQuickExtras/private/quick3dspritesheet_p.h> |
| 10 | #include <Qt3DQuickExtras/private/qt3dquickextras_global_p.h> |
| 11 | |
| 12 | #include <QtQml/qqml.h> |
| 13 | #include <QtQml/qqmlextensionplugin.h> |
| 14 | |
| 15 | #include <QtCore/qtsymbolmacros.h> |
| 16 | |
| 17 | QT_BEGIN_NAMESPACE |
| 18 | |
| 19 | QT_DECLARE_EXTERN_SYMBOL(qml_register_types_Qt3D_Extras, void); |
| 20 | QT_DECLARE_EXTERN_SYMBOL(Qt3DExtras::Quick::Quick3DExtras_initialize, void); |
| 21 | |
| 22 | void Qt3DQuick3DExtrasPlugin::registerTypes(const char *) |
| 23 | { |
| 24 | volatile auto registerFunction = &qml_register_types_Qt3D_Extras; |
| 25 | Q_UNUSED(registerFunction); |
| 26 | |
| 27 | volatile auto initializeFunction = &Qt3DExtras::Quick::Quick3DExtras_initialize; |
| 28 | Q_UNUSED(initializeFunction); |
| 29 | } |
| 30 | |
| 31 | QT_END_NAMESPACE |
| 32 |
