| Revision: | 771 |
| Committed: | Sun Mar 31 19:02:16 2013 UTC (12 years, 7 months ago) by s10k |
| Content type: | text/x-chdr |
| Original Path: | Vago/trunk/Vago/about.h |
| File size: | 345 byte(s) |
| Log Message: |
| # | Content |
|---|---|
| 1 | #ifndef ABOUT_H |
| 2 | #define ABOUT_H |
| 3 | |
| 4 | #include <QDialog> |
| 5 | #include <util.h> |
| 6 | |
| 7 | namespace Ui { |
| 8 | class About; |
| 9 | } |
| 10 | |
| 11 | class About : public QDialog |
| 12 | { |
| 13 | Q_OBJECT |
| 14 | |
| 15 | public: |
| 16 | explicit About(QWidget *parent = 0); |
| 17 | ~About(); |
| 18 | |
| 19 | private slots: |
| 20 | void on_pushButton_clicked(); |
| 21 | |
| 22 | private: |
| 23 | Ui::About *ui; |
| 24 | }; |
| 25 | |
| 26 | #endif // ABOUT_H |