ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/Vago/trunk/Vago/about.h
Revision: 1047
Committed: Fri Sep 16 22:51:26 2016 UTC (9 years ago) by s10k
Content type: text/x-chdr
File size: 351 byte(s)
Log Message:
Added Vago v1.0

File Contents

# Content
1 #ifndef ABOUT_H
2 #define ABOUT_H
3
4 #include <QDialog>
5
6 #include "utilvago.h"
7
8 namespace Ui {
9 class About;
10 }
11
12 class About : public QDialog
13 {
14 Q_OBJECT
15
16 public:
17 explicit About(QWidget *parent = 0);
18 ~About();
19
20 private slots:
21 void on_pushButton_clicked();
22
23 private:
24 Ui::About *ui;
25 };
26
27 #endif // ABOUT_H