blob: 16dbc7f52016d6ff77d67aea60e3cc20025cddc4 (
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
26
27
28
29
30
31
32
33
34
|
/*
* Copyright (C) 2003 noname <s@s.org>
*/
#ifndef _KSENSORS_H_
#define _KSENSORS_H_
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <kmainwindow.h>
/**
* @short Application Main Window
* @author noname <s@s.org>
* @version 0.1
*/
class ksensors : public KMainWindow
{
Q_OBJECT
public:
/**
* Default Constructor
*/
ksensors();
/**
* Default Destructor
*/
virtual ~ksensors();
};
#endif // _KSENSORS_H_
|