diff options
Diffstat (limited to 'src/ksensors.h')
-rw-r--r-- | src/ksensors.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/ksensors.h b/src/ksensors.h new file mode 100644 index 0000000..16dbc7f --- /dev/null +++ b/src/ksensors.h @@ -0,0 +1,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_ |