2017-06-29 00:57:46 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2018 Albert Vaca Cintora <albertvaka@gmail.com>
|
2017-06-29 00:57:46 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2017-06-29 00:57:46 +01:00
|
|
|
*/
|
|
|
|
|
2018-04-02 19:20:24 +01:00
|
|
|
#include "abstractremoteinput.h"
|
2017-06-29 00:57:46 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
AbstractRemoteInput::AbstractRemoteInput(QObject *parent)
|
2018-04-02 19:20:24 +01:00
|
|
|
: QObject(parent)
|
2017-06-29 00:57:46 +01:00
|
|
|
{
|
2018-04-02 19:20:24 +01:00
|
|
|
}
|
2023-07-26 09:15:11 +01:00
|
|
|
|
|
|
|
#include "moc_abstractremoteinput.cpp"
|