File indexing completed on 2024-05-05 16:05:43

0001 /*
0002     SPDX-FileCopyrightText: 2020 David Faure <faure@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef KCMTEST_H
0008 #define KCMTEST_H
0009 
0010 #include <QObject>
0011 #include <QVariantList>
0012 
0013 class KCMTest : public QObject
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit KCMTest(QObject *parent, const QVariantList &foo = QVariantList());
0018 };
0019 
0020 #endif