File indexing completed on 2024-05-12 16:59:20

0001 /*
0002  *   SPDX-FileCopyrightText: 2015-2016 Ivan Cukic <ivan.cukic@kde.org>
0003  *
0004  *   SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005  */
0006 
0007 #ifndef CONFIG_H
0008 #define CONFIG_H
0009 
0010 #include <Module.h>
0011 
0012 class Config : public Module
0013 {
0014     Q_OBJECT
0015 
0016 public:
0017     explicit Config(QObject *parent = nullptr);
0018     ~Config() override;
0019 
0020 Q_SIGNALS:
0021     void pluginConfigChanged();
0022     void mainConfigChanged();
0023 
0024 private:
0025     D_PTR;
0026 };
0027 
0028 #endif // CONFIG_H