]> git.sesse.net Git - nageru/blob - shared/aboutdialog.h
Fix some leftovers in warning messages.
[nageru] / shared / aboutdialog.h
1 #ifndef _ABOUTDIALOG_H
2 #define _ABOUTDIALOG_H 1
3
4 #include <QDialog>
5 #include <QString>
6
7 #include <string>
8
9 class QObject;
10
11 namespace Ui {
12 class AboutDialog;
13 }  // namespace Ui
14
15 class AboutDialog : public QDialog
16 {
17         Q_OBJECT
18
19 public:
20         AboutDialog(const std::string &program, const std::string &subheading);
21
22 private:
23         Ui::AboutDialog *ui;
24 };
25
26 #endif  // !defined(_ABOUTDIALOG_H)