summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/qtopia4app/example.h
blob: 7d58c7d8490ddb71bd8f9f2d731ac4a777cd9070 (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

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

class %{APPNAME}Base : public QWidget, public Ui_%{APPNAME}Base
{
public:
    %{APPNAME}Base( QWidget *parent = 0, Qt::WFlags f = 0 );
    virtual ~%{APPNAME}Base();
};

class %{APPNAME} : public %{APPNAME}Base
{ 
    Q_OBJECT
public:
    %{APPNAME}( QWidget *parent = 0, Qt::WFlags f = 0 );
    virtual ~%{APPNAME}();

private slots:
    void goodBye();
};

#endif // %{APPNAMEUC}_H