/* SPDX-FileCopyrightText: 2020 David Redondo SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL */ #pragma once #include class KeysData : public KCModuleData { Q_OBJECT public: KeysData(QObject *parent = nullptr); bool isDefaults() const override; private: bool m_isDefault = true; int m_pendingComponentCalls = 0; };