summaryrefslogtreecommitdiffstats
path: root/tools/linguist/tutorial/tt2/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/linguist/tutorial/tt2/mainwindow.h')
-rw-r--r--tools/linguist/tutorial/tt2/mainwindow.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/linguist/tutorial/tt2/mainwindow.h b/tools/linguist/tutorial/tt2/mainwindow.h
new file mode 100644
index 0000000..f021869
--- /dev/null
+++ b/tools/linguist/tutorial/tt2/mainwindow.h
@@ -0,0 +1,19 @@
+/****************************************************************
+**
+** Definition of MainWindow class, translation tutorial 2
+**
+****************************************************************/
+
+#ifndef MAINWINDOW_H
+#define MAINWINDOW_H
+
+#include <qmainwindow.h>
+
+class MainWindow : public QMainWindow
+{
+ Q_OBJECT
+public:
+ MainWindow( QWidget *parent = 0, const char *name = 0 );
+};
+
+#endif