diff options
Diffstat (limited to 'tools/linguist/tutorial/tt3/mainwindow.h')
-rw-r--r-- | tools/linguist/tutorial/tt3/mainwindow.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/linguist/tutorial/tt3/mainwindow.h b/tools/linguist/tutorial/tt3/mainwindow.h new file mode 100644 index 0000000..77f23f8 --- /dev/null +++ b/tools/linguist/tutorial/tt3/mainwindow.h @@ -0,0 +1,23 @@ +/**************************************************************** +** +** Definition of MainWindow class, translation tutorial 3 +** +****************************************************************/ + +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include <qmainwindow.h> + +class MainWindow : public QMainWindow +{ + Q_OBJECT +public: + MainWindow( QWidget *parent = 0, const char *name = 0 ); + +private slots: + void about(); + void aboutQt(); +}; + +#endif |