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

source code of qt3d/src/input/frontend/qinputdeviceplugin.cpp