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