You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
461 B
33 lines
461 B
15 years ago
|
%{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_
|