forked from Qortal/Brooklyn
d2ebfd0519
Screw the description like that inbred T3Q
26 lines
568 B
C++
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
|