You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
387 B
C++
26 lines
387 B
C++
/*
|
|
* Copyright (C) 2003 noname <s@s.org>
|
|
*/
|
|
|
|
#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"
|