1 /*
2     SPDX-FileCopyrightText: 2020 David Redondo <kde@david-redondo.de>
3 
4     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
5 */
6 
7 #ifndef KEYSDATA_H
8 #define KEYSDATA_H
9 
10 #include <KCModuleData>
11 
12 class KeysData : public KCModuleData
13 {
14     Q_OBJECT
15 public:
16     KeysData(QObject *parent = nullptr, const QVariantList &args = {});
17     bool isDefaults() const override;
18 
19 private:
20     bool m_isDefault = true;
21     int m_pendingComponentCalls = 0;
22 };
23 
24 #endif
25