summaryrefslogtreecommitdiffstats
path: root/src/ksensors.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-24 09:39:37 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-24 09:39:37 -0500
commit191c434271e705161fbd01ed83b6d043a275bffc (patch)
tree0919a0a91d56167a9d36bca3881c513006b68a9b /src/ksensors.cpp
downloadksensors-191c434271e705161fbd01ed83b6d043a275bffc.tar.gz
ksensors-191c434271e705161fbd01ed83b6d043a275bffc.zip
Initial import of ksensors 0.7.3 sources
Diffstat (limited to 'src/ksensors.cpp')
-rw-r--r--src/ksensors.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/ksensors.cpp b/src/ksensors.cpp
new file mode 100644
index 0000000..2447fcb
--- /dev/null
+++ b/src/ksensors.cpp
@@ -0,0 +1,25 @@
+/*
+ * Copyright (C) 2003 noname <s@s.org>
+ */
+
+#include "ksensors.h"
+
+#include <qlabel.h>
+
+#include <kmainwindow.h>
+#include <klocale.h>
+
+ksensors::ksensors()
+ : KMainWindow( 0, "ksensors" )
+{
+ // set the shell's ui resource file
+ setXMLFile("ksensorsui.rc");
+
+ new QLabel( "Hello World", this, "hello label" );
+}
+
+ksensors::~ksensors()
+{
+}
+
+#include "ksensors.moc"