| 1 | // Copyright (C) 2016 The Qt Company Ltd and/or its subsidiary(-ies). |
|---|---|
| 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 "qsceneexportplugin_p.h" |
| 5 | |
| 6 | QT_BEGIN_NAMESPACE |
| 7 | |
| 8 | namespace Qt3DRender { |
| 9 | |
| 10 | QSceneExportPlugin::QSceneExportPlugin(QObject *parent) : QObject(parent) |
| 11 | { |
| 12 | |
| 13 | } |
| 14 | |
| 15 | QSceneExportPlugin::~QSceneExportPlugin() |
| 16 | { |
| 17 | |
| 18 | } |
| 19 | |
| 20 | QSceneExporter *QSceneExportPlugin::create(const QString &key, const QStringList ¶mList) |
| 21 | { |
| 22 | Q_UNUSED(key); |
| 23 | Q_UNUSED(paramList); |
| 24 | return nullptr; |
| 25 | } |
| 26 | |
| 27 | } // namespace Qt3DRender |
| 28 | |
| 29 | QT_END_NAMESPACE |
| 30 | |
| 31 | #include "moc_qsceneexportplugin_p.cpp" |
| 32 | |
| 33 |
