diff options
Diffstat (limited to 'languages/cpp/app_templates/khello/app.h')
-rw-r--r-- | languages/cpp/app_templates/khello/app.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/languages/cpp/app_templates/khello/app.h b/languages/cpp/app_templates/khello/app.h new file mode 100644 index 00000000..678df7a3 --- /dev/null +++ b/languages/cpp/app_templates/khello/app.h @@ -0,0 +1,32 @@ +%{H_TEMPLATE} + +#ifndef _%{APPNAMEUC}_H_ +#define _%{APPNAMEUC}_H_ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <kmainwindow.h> + +/** + * @short Application Main Window + * @author %{AUTHOR} <%{EMAIL}> + * @version %{VERSION} + */ +class %{APPNAME} : public KMainWindow +{ + Q_OBJECT +public: + /** + * Default Constructor + */ + %{APPNAME}(); + + /** + * Default Destructor + */ + virtual ~%{APPNAME}(); +}; + +#endif // _%{APPNAMEUC}_H_ |