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 "qsceneimportplugin_p.h"
5
6QT_BEGIN_NAMESPACE
7
8namespace Qt3DRender {
9
10QSceneImportPlugin::QSceneImportPlugin(QObject *parent) : QObject(parent)
11{
12
13}
14
15QSceneImportPlugin::~QSceneImportPlugin()
16{
17
18}
19
20QSceneImporter *QSceneImportPlugin::create(const QString &key, const QStringList &paramList)
21{
22 Q_UNUSED(key);
23 Q_UNUSED(paramList);
24 return nullptr;
25}
26
27} // namespace Qt3DRender
28
29QT_END_NAMESPACE
30
31#include "moc_qsceneimportplugin_p.cpp"
32
33

source code of qt3d/src/render/io/qsceneimportplugin.cpp