blob: c99ada1d456a0692d8b4cfb10bd94637f806193e (
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
25
|
/*
* Copyright (C) 2003 noname <[email protected]>
*/
#include "ksensors.h"
#include <ntqlabel.h>
#include <tdemainwindow.h>
#include <tdelocale.h>
ksensors::ksensors()
: TDEMainWindow( 0, "ksensors" )
{
// set the shell's ui resource file
setXMLFile("ksensorsui.rc");
new TQLabel( "Hello World", this, "hello label" );
}
ksensors::~ksensors()
{
}
#include "ksensors.moc"
|