You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
469 B
35 lines
469 B
/*
|
|
* Copyright (C) 2003 noname <s@s.org>
|
|
*/
|
|
|
|
#ifndef _KSENSORS_H_
|
|
#define _KSENSORS_H_
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <tdemainwindow.h>
|
|
|
|
/**
|
|
* @short Application Main Window
|
|
* @author noname <s@s.org>
|
|
* @version 0.1
|
|
*/
|
|
class ksensors : public TDEMainWindow
|
|
{
|
|
TQ_OBJECT
|
|
public:
|
|
/**
|
|
* Default Constructor
|
|
*/
|
|
ksensors();
|
|
|
|
/**
|
|
* Default Destructor
|
|
*/
|
|
virtual ~ksensors();
|
|
};
|
|
|
|
#endif // _KSENSORS_H_
|