1 /*
2  * Author: Copyright (C) Rudolf Boeddeker  Date: 2013-08-13
3  * Copyright (c) 2013-2018 Nitrokey UG
4  *
5  * This file is part of Nitrokey App.
6  *
7  * Nitrokey App is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * any later version.
11  *
12  * Nitrokey App is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with Nitrokey App. If not, see <http://www.gnu.org/licenses/>.
19  *
20  * SPDX-License-Identifier: GPL-3.0
21  */
22 
23 #ifndef DEBUGDIALOG_H
24 #define DEBUGDIALOG_H
25 
26 #include <QDialog>
27 
28 namespace Ui {
29 class DebugDialog;
30 }
31 
32 class DebugDialog : public QDialog {
33   Q_OBJECT public : explicit DebugDialog(QWidget *parent = 0);
34   ~DebugDialog();
35 
36   public slots:
37     void on_DebugData(QString message);
38 
39 
40 private:
41   Ui::DebugDialog *ui;
42 
43 };
44 
45 #endif // DEBUGDIALOG_H
46