File indexing completed on 2025-02-09 04:24:43
0001 /* 0002 SPDX-FileCopyrightText: 2002 David Faure <faure@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-only 0005 */ 0006 0007 #ifndef _kruntest_h 0008 #define _kruntest_h 0009 0010 #include <QWidget> 0011 0012 class QPushButton; 0013 class Receiver : public QWidget 0014 { 0015 Q_OBJECT 0016 public: 0017 Receiver(); 0018 ~Receiver() override 0019 { 0020 } 0021 public Q_SLOTS: 0022 void slotStart(); 0023 void slotStop(); 0024 void slotLaunchOne(); 0025 void slotLaunchTest(QPushButton *sender); 0026 0027 private: 0028 QPushButton *start; 0029 QPushButton *stop; 0030 }; 0031 0032 #endif