KWin
Loading...
Searching...
No Matches
inputbackend.cpp
Go to the documentation of this file.
1/*
2 SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#include "inputbackend.h"
8
9namespace KWin
10{
11
13 : QObject(parent)
14{
15}
16
17KSharedConfigPtr InputBackend::config() const
18{
19 return m_config;
20}
21
22void InputBackend::setConfig(KSharedConfigPtr config)
23{
24 m_config = config;
25}
26
27} // namespace KWin
28
29#include "moc_inputbackend.cpp"
InputBackend(QObject *parent=nullptr)
void setConfig(KSharedConfigPtr config)
KSharedConfigPtr config() const