Added "Show Solution"
[vexed] / about.h
1 #ifndef ABOUT_H
2 #define ABOUT_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class About;
8 }
9
10 class About : public QDialog
11 {
12     Q_OBJECT
13
14 public:
15     explicit About(QWidget *parent = 0);
16     ~About();
17
18 private:
19     Ui::About *ui;
20 };
21
22 #endif // ABOUT_H