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.
34 lines
468 B
34 lines
468 B
%{H_TEMPLATE}
|
|
|
|
#ifndef _%{APPNAMEUC}_H_
|
|
#define _%{APPNAMEUC}_H_
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <tdemainwindow.h>
|
|
|
|
/**
|
|
* @short Application Main Window
|
|
* @author %{AUTHOR} <%{EMAIL}>
|
|
* @version %{VERSION}
|
|
*/
|
|
class %{APPNAME} : public TDEMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/**
|
|
* Default Constructor
|
|
*/
|
|
%{APPNAME}();
|
|
|
|
/**
|
|
* Default Destructor
|
|
*/
|
|
virtual ~%{APPNAME}();
|
|
};
|
|
|
|
#endif // _%{APPNAMEUC}_H_
|