File indexing completed on 2024-04-28 15:19:31

0001 /*  This file is part of the KDE libraries
0002     SPDX-FileCopyrightText: 1997 Matthias Kalle Dalheimer <kalle@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #ifndef KCONFIGTEST_H
0007 #define KCONFIGTEST_H
0008 
0009 #include <QObject>
0010 
0011 class KConfigTest : public QObject
0012 {
0013     Q_OBJECT
0014 
0015 private Q_SLOTS:
0016     void testComplex();
0017     void testInvalid();
0018     void initTestCase();
0019     void cleanupTestCase();
0020 
0021 private:
0022     bool m_fontFromStringBug;
0023 };
0024 
0025 #endif /* KCONFIGTEST_H */