blob: 01373881ae693fc42f7bef0703893f0bd523b0fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
%{CPP_TEMPLATE}
#include "%{APPNAMELC}.h"
#include <tqlabel.h>
#include <tdemainwindow.h>
#include <klocale.h>
%{APPNAME}::%{APPNAME}()
: TDEMainWindow( 0, "%{APPNAME}" )
{
// set the shell's ui resource file
setXMLFile("%{APPNAMELC}ui.rc");
new TQLabel( "Hello World", this, "hello label" );
}
%{APPNAME}::~%{APPNAME}()
{
}
#include "%{APPNAMELC}.moc"
|