File indexing completed on 2024-12-08 12:18:36
0001 /* 0002 SPDX-License-Identifier: LGPL-2.0-or-later 0003 SPDX-FileCopyrightText: 2020 Laurent Montel <montel@kde.org> 0004 */ 0005 0006 #ifndef KCURSORSAVERTEST_H 0007 #define KCURSORSAVERTEST_H 0008 0009 #include <QObject> 0010 0011 class KCursorSaverTest : public QObject 0012 { 0013 Q_OBJECT 0014 public: 0015 explicit KCursorSaverTest(QObject *parent = nullptr); 0016 ~KCursorSaverTest() override = default; 0017 private Q_SLOTS: 0018 void ignoreWarning(); 0019 }; 0020 0021 #endif // KCURSORSAVERTEST_H