File indexing completed on 2024-04-21 04:00:53

0001 /**
0002  * test_dialog.h
0003  *
0004  * SPDX-FileCopyrightText: 2004 Zack Rusin <zack@kde.org>
0005  *
0006  * SPDX-License-Identifier: LGPL-2.1-or-later
0007  */
0008 #ifndef TEST_DIALOG_H
0009 #define TEST_DIALOG_H
0010 
0011 #include "dialog.h"
0012 
0013 #include <QObject>
0014 
0015 class TestDialog : public QObject
0016 {
0017     Q_OBJECT
0018 public:
0019     TestDialog();
0020 
0021 public Q_SLOTS:
0022     void check(const QString &buffer);
0023     void doneChecking(const QString &);
0024 };
0025 
0026 #endif