404
|
1 /* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik |
|
2 * Software engineering by Intevation GmbH |
|
3 * |
|
4 * This file is Free Software under the GNU GPL (v>=2) |
|
5 * and comes with ABSOLUTELY NO WARRANTY! |
|
6 * See LICENSE.txt for details. |
|
7 */ |
199
|
8 #ifndef ABOUTDIALOG_H |
|
9 #define ABOUTDIALOG_H |
|
10 |
|
11 #include <QDialog> |
|
12 #include <QMainWindow> |
|
13 /** |
|
14 * @file aboutdialog.h |
|
15 * @brief The dialog for information about the application. |
|
16 */ |
|
17 |
|
18 class AboutDialog : public QDialog |
|
19 { |
|
20 public: |
|
21 /** @brief Create a help dialog */ |
|
22 AboutDialog(QMainWindow *parent); |
|
23 |
|
24 private: |
|
25 void setupGUI(); |
|
26 |
|
27 }; |
|
28 #endif // ABOUTDIALOG_H |