summaryrefslogtreecommitdiffstats
path: root/src/ksensors.cpp
blob: 2447fcbc96fadfa8ddc9cff56dbae174af2c7b04 (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 <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"