ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/s10k/Vago/about.h
Revision: 1092
Committed: Sat Dec 30 13:43:28 2017 UTC (7 years, 9 months ago) by s10k
Content type: text/x-chdr
File size: 351 byte(s)
Log Message:
moved files to s10k directory since now vago uses the same libs structures as my other projects (e.g. XmlTools)

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