source: s10k/Vago/about.h@ 1183

Last change on this file since 1183 was 1047, checked in by s10k, 8 years ago

Added Vago v1.0

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