summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kdedcop/app.h
blob: 19489d45ecb64207262570cd0197aafd577767a2 (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
34
35
36
37
%{H_TEMPLATE}

#ifndef _%{APPNAMEUC}_H_
#define _%{APPNAMEUC}_H_

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <kmainwindow.h>

#include "mainclass.h"

/**
 * @short Application Main Window
 * @author %{AUTHOR} <%{EMAIL}>
 * @version 0.1
 */
class %{APPNAME} : public KMainWindow
{
    Q_OBJECT
  
public:
    /**
     * Default Constructor
     */
    %{APPNAME}();

    /**
     * Default Destructor
     */
    virtual ~%{APPNAME}();
private:
    MainClass *m_mainClass;
};

#endif // _%{APPNAMEUC}_H_