~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/cpp/app_templates/khello/app.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%{H_TEMPLATE}
 
2
 
 
3
#ifndef _%{APPNAMEUC}_H_
 
4
#define _%{APPNAMEUC}_H_
 
5
 
 
6
#ifdef HAVE_CONFIG_H
 
7
#include <config.h>
 
8
#endif
 
9
 
 
10
#include <kmainwindow.h>
 
11
 
 
12
/**
 
13
 * @short Application Main Window
 
14
 * @author %{AUTHOR} <%{EMAIL}>
 
15
 * @version %{VERSION}
 
16
 */
 
17
class %{APPNAME} : public KMainWindow
 
18
{
 
19
    Q_OBJECT
 
20
public:
 
21
    /**
 
22
     * Default Constructor
 
23
     */
 
24
    %{APPNAME}();
 
25
 
 
26
    /**
 
27
     * Default Destructor
 
28
     */
 
29
    virtual ~%{APPNAME}();
 
30
};
 
31
 
 
32
#endif // _%{APPNAMEUC}_H_