Brooklyn/plasma/kcms/keys/standardshortcutsmodel.h
Scare Crowe d2ebfd0519 QortalOS Titan 5.60.12
Screw the description like that inbred T3Q
2022-03-05 21:17:59 +05:00

26 lines
568 B
C++

/*
SPDX-FileCopyrightText: 2020 David Redondo <kde@david-redondo.de>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#ifndef STANDARDSHORTCUTSMODEL_H
#define STANDARDSHORTCUTSMODEL_H
#include "basemodel.h"
class StandardShortcutsModel : public BaseModel
{
Q_OBJECT
public:
explicit StandardShortcutsModel(QObject *parent);
void load() override;
void save() override;
void exportToConfig(const KConfigBase &config) override;
void importConfig(const KConfigBase &config) override;
};
#endif