1 | // Copyright (C) 2015 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 "qinputdeviceplugin_p.h" |
5 | |
6 | QT_BEGIN_NAMESPACE |
7 | |
8 | namespace Qt3DInput { |
9 | |
10 | QInputDevicePlugin::QInputDevicePlugin(QObject *parent) |
11 | : QObject(parent) |
12 | { |
13 | } |
14 | |
15 | QInputDevicePlugin::~QInputDevicePlugin() |
16 | { |
17 | } |
18 | |
19 | QInputDeviceIntegration *QInputDevicePlugin::create(const QString &key, const QStringList ¶mList) |
20 | { |
21 | Q_UNUSED(key); |
22 | Q_UNUSED(paramList); |
23 | return nullptr; |
24 | } |
25 | |
26 | } // Qt3DInput |
27 | |
28 | QT_END_NAMESPACE |
29 | |
30 | #include "moc_qinputdeviceplugin_p.cpp" |
31 |