aboutsummaryrefslogtreecommitdiffstats
path: root/bin/templates/qt4project/mywidget_form.h
diff options
context:
space:
mode:
Diffstat (limited to 'bin/templates/qt4project/mywidget_form.h')
-rw-r--r--bin/templates/qt4project/mywidget_form.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/bin/templates/qt4project/mywidget_form.h b/bin/templates/qt4project/mywidget_form.h
new file mode 100644
index 0000000000..fd4d373277
--- /dev/null
+++ b/bin/templates/qt4project/mywidget_form.h
@@ -0,0 +1,23 @@
+#ifndef %PRE_DEF%
+#define %PRE_DEF%
+
+#include <QtGui/%BASECLASS%>
+
+namespace Ui
+{
+ class %CLASS%Class;
+}
+
+class %CLASS% : public %BASECLASS%
+{
+ Q_OBJECT
+
+public:
+ %CLASS%(QWidget *parent = 0);
+ ~%CLASS%();
+
+private:
+ Ui::%CLASS%Class *ui;
+};
+
+#endif // %PRE_DEF%