mirror of https://github.com/tongzx/nt5src
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.
26 lines
532 B
26 lines
532 B
/*
|
|
*
|
|
* NOTES:
|
|
*
|
|
* REVISIONS:
|
|
* ker01DEC92: Initial break out of sensor classes into separate files
|
|
* pcy08Apr94: Trim size, use static iterators, dead code removal
|
|
*/
|
|
#ifndef BATTCOND_H
|
|
#define BATTCOND_H
|
|
|
|
#include "stsensor.h"
|
|
|
|
_CLASSDEF(BatteryConditionSensor)
|
|
|
|
class BatteryConditionSensor : public StateSensor {
|
|
|
|
public:
|
|
BatteryConditionSensor(PDevice aParent, PCommController aCommController=NULL);
|
|
virtual ~BatteryConditionSensor();
|
|
virtual INT IsA() const { return BATTERYCONDITIONSENSOR; };
|
|
};
|
|
#endif
|
|
|
|
|
|
|