summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/qtopiaapp/example.h
blob: 42dfc2dd8169010694ec4e8a0764691ac7233a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#ifndef %{APPNAMEUC}_H
#define %{APPNAMEUC}_H
#include "%{APPNAMELC}base.h"

class %{APPNAME} : public %{APPNAME}Base
{ 
    Q_OBJECT

public:
    %{APPNAME}( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
    ~%{APPNAME}();

private slots:
    void goodBye();
};

#endif // %{APPNAMEUC}_H