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 <s@s.org> */ #include "ksensors.h" #include <tqlabel.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"