14#include <tqobjectlist.h>
15#include <tqstringlist.h>
19#include "sensorparams.h"
21class Sensor :
public TQObject
27 Sensor(
int msec = 1000 );
30 void addMeter( SensorParams *s );
31 SensorParams* hasMeter( Meter *meter );
32 void deleteMeter( Meter *meter );
33 int isEmpty() {
return objList->isEmpty(); };
34 virtual void setMaxValue( SensorParams *s );
41 TQObjectList *objList;
44 virtual void update()=0;