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.
31 lines
474 B
31 lines
474 B
/*
|
|
*
|
|
* NOTES:
|
|
*
|
|
* REVISIONS:
|
|
* ker01DEC92: Initial break out of sensor classes into separate files
|
|
*/
|
|
#ifndef BATTCAPS_H
|
|
#define BATTCAPS_H
|
|
|
|
#include "thsensor.h"
|
|
|
|
_CLASSDEF(BatteryCapacitySensor)
|
|
|
|
|
|
class BatteryCapacitySensor : public ThresholdSensor {
|
|
|
|
public:
|
|
BatteryCapacitySensor(PDevice aParent,PCommController aCommController=NULL);
|
|
virtual ~BatteryCapacitySensor();
|
|
virtual INT IsA() const {return BATTERYCAPACITYSENSOR ; } ;
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|