3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-07 14:54:17 +00:00
Brooklyn/plasma/kcms/keys/keysdata.h
Scare Crowe d2ebfd0519 QortalOS Titan 5.60.12
Screw the description like that inbred T3Q
2022-03-05 21:17:59 +05:00

25 lines
488 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 KEYSDATA_H
#define KEYSDATA_H
#include <KCModuleData>
class KeysData : public KCModuleData
{
Q_OBJECT
public:
KeysData(QObject *parent = nullptr, const QVariantList &args = {});
bool isDefaults() const override;
private:
bool m_isDefault = true;
int m_pendingComponentCalls = 0;
};
#endif