File indexing completed on 2024-04-28 13:32:00

0001 /*
0002     SPDX-FileCopyrightText: 2020 David Redondo <kde@david-redondo.de>
0003     SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004 */
0005 #ifndef SDDM_DATA_H
0006 #define SDDM_DATA_H
0007 
0008 #include <KCModuleData>
0009 
0010 class SddmSettings;
0011 
0012 class SddmData : public KCModuleData
0013 {
0014     Q_OBJECT
0015 public:
0016     SddmData(QObject *parent = nullptr, const QVariantList &args = QVariantList());
0017     SddmSettings *sddmSettings() const;
0018 
0019 private:
0020     SddmSettings *m_settings;
0021 };
0022 
0023 #endif