blob: 11a9241f4effab8eae1f5e4a7539611f22dcadef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  | 
%{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_
  |