File indexing completed on 2024-05-12 17:07:18

0001 /*
0002     SPDX-FileCopyrightText: 2020 David Redondo <kde@david-redondo.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 #pragma once
0008 
0009 #include <KCModuleData>
0010 
0011 class KeysData : public KCModuleData
0012 {
0013     Q_OBJECT
0014 public:
0015     KeysData(QObject *parent = nullptr, const QVariantList &args = {});
0016     bool isDefaults() const override;
0017 
0018 private:
0019     bool m_isDefault = true;
0020     int m_pendingComponentCalls = 0;
0021 };