blob: 0a8320c9efd519836dd7809fcb5ea36502c44e94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef %{APPNAMEUC}_H
#define %{APPNAMEUC}_H
#include "%{APPNAMELC}base.h"
class %{APPNAME} : public %{APPNAME}Base
{
Q_OBJECT
TQ_OBJECT
public:
static TQString appName() {
return TQString::tqfromLatin1("%{APPNAMELC}" );
}
%{APPNAME}( TQWidget* tqparent = 0, const char* name = 0, WFlags fl = 0 );
~%{APPNAME}();
private slots:
void goodBye();
};
#endif // %{APPNAMEUC}_H
|