18 lines
262 B
C++
18 lines
262 B
C++
|
/*
|
||
|
SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#include "inputdevice.h"
|
||
|
|
||
|
namespace KWin
|
||
|
{
|
||
|
|
||
|
InputDevice::InputDevice(QObject *parent)
|
||
|
: QObject(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
} // namespace KWin
|