| Revision: | 811 | 
| Committed: | Sat Apr 13 12:15:20 2013 UTC (12 years, 6 months ago) by s10k | 
| Content type: | text/x-chdr | 
| Original Path: | Vago/trunk/Vago/about.h | 
| File size: | 347 byte(s) | 
| Log Message: | Vago: some layout fixes on windows, removed debug includes | 
| # | Content | 
|---|---|
| 1 | #ifndef ABOUT_H | 
| 2 | #define ABOUT_H | 
| 3 | |
| 4 | #include <QDialog> | 
| 5 | |
| 6 | #include "util.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 |