File indexing completed on 2024-04-28 16:49:46

0001 /*
0002     SPDX-FileCopyrightText: 2007 John Tapsell <tapsell@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef GUITESTPROCESS_H
0008 #define GUITESTPROCESS_H
0009 
0010 #include <QObject>
0011 class testGuiProcess : public QObject
0012 {
0013     Q_OBJECT
0014 private slots:
0015     void testGUI();
0016 };
0017 
0018 #endif