blob: 7dd66eec50f38759b5051184a8e445b018d90ebf (
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 <[email protected]>
*/
#ifndef _KSENSORS_H_
#define _KSENSORS_H_
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tdemainwindow.h>
/**
* @short Application Main Window
* @author noname <[email protected]>
* @version 0.1
*/
class ksensors : public TDEMainWindow
{
TQ_OBJECT
public:
/**
* Default Constructor
*/
ksensors();
/**
* Default Destructor
*/
virtual ~ksensors();
};
#endif // _KSENSORS_H_
|