source:
s10k/Vago/about.h@
1115
Last change on this file since 1115 was 1047, checked in by , 8 years ago | |
---|---|
File size: 351 bytes |
Line | |
---|---|
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 |
Note:
See TracBrowser
for help on using the repository browser.