]> git.sesse.net Git - nageru/blob - aboutdialog.h
Release Nageru 1.7.2.
[nageru] / aboutdialog.h
1 #ifndef _ABOUTDIALOG_H
2 #define _ABOUTDIALOG_H 1
3
4 #include <QDialog>
5 #include <QString>
6
7 class QObject;
8
9 namespace Ui {
10 class AboutDialog;
11 }  // namespace Ui
12
13 class AboutDialog : public QDialog
14 {
15         Q_OBJECT
16
17 public:
18         AboutDialog();
19
20 private:
21         Ui::AboutDialog *ui;
22 };
23
24 #endif  // !defined(_ABOUTDIALOG_H)