1 | // Copyright (C) 2018 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 "qrendererplugin_p.h" |
5 | |
6 | QT_BEGIN_NAMESPACE |
7 | |
8 | namespace Qt3DRender { |
9 | |
10 | namespace Render { |
11 | |
12 | QRendererPlugin::QRendererPlugin(QObject *parent) |
13 | : QObject(parent) |
14 | { |
15 | } |
16 | |
17 | QRendererPlugin::~QRendererPlugin() |
18 | { |
19 | } |
20 | |
21 | AbstractRenderer *QRendererPlugin::create(const QString &key) |
22 | { |
23 | Q_UNUSED(key); |
24 | return nullptr; |
25 | } |
26 | |
27 | } // Render |
28 | |
29 | } // Qt3DRender |
30 | |
31 | QT_END_NAMESPACE |
32 | |
33 | #include "moc_qrendererplugin_p.cpp" |
34 |