| 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 | #include "qt3dquickanimationplugin_p.h" |
| 5 | #include "qt3dquickanimation_global_p.h" |
| 6 | |
| 7 | QT_BEGIN_NAMESPACE |
| 8 | |
| 9 | Q_GHS_KEEP_REFERENCE(qml_register_types_Qt3D_Animation); |
| 10 | Q_GHS_KEEP_REFERENCE(Qt3DAnimation::Quick::Quick3DAnimation_initialize); |
| 11 | |
| 12 | void Qt3DQuick3DAnimationPlugin::registerTypes(const char *) |
| 13 | { |
| 14 | volatile auto registerFunction = &qml_register_types_Qt3D_Animation; |
| 15 | Q_UNUSED(registerFunction); |
| 16 | volatile auto initializeFunction = &Qt3DAnimation::Quick::Quick3DAnimation_initialize; |
| 17 | Q_UNUSED(initializeFunction); |
| 18 | } |
| 19 | |
| 20 | QT_END_NAMESPACE |
| 21 |
