mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
21 lines
357 B
C
21 lines
357 B
C
|
|
// SPDX-FileCopyrightText: 2025 Devin Lin <devin@kde.org>
|
||
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
|
||
|
|
#include <KConfigGroup>
|
||
|
|
#include <KSharedConfig>
|
||
|
|
|
||
|
|
class DevicePresets : public QObject
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
DevicePresets(QObject *parent = nullptr);
|
||
|
|
|
||
|
|
void initialize();
|
||
|
|
|
||
|
|
private:
|
||
|
|
KSharedConfig::Ptr m_mobileConfig;
|
||
|
|
};
|