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