Windows2003-3790/ds/netapi/svcdlls/upssvc/apcsmart/runtrems.h
2020-09-30 16:53:55 +02:00

27 lines
536 B
C++

/*
*
* NOTES:
*
* REVISIONS:
* ker01DEC92: Initial break out of sensor classes into separate files
* cgm12Apr96: Add destructor with unregister
*/
#ifndef RTRTHSEN_H
#define RTRTHSEN_H
#include "thsensor.h"
_CLASSDEF(RunTimeRemainingSensor)
class RunTimeRemainingSensor : public ThresholdSensor {
public:
RunTimeRemainingSensor(PDevice aParent, PCommController aCommController);
virtual ~RunTimeRemainingSensor();
virtual INT IsA() const { return BATTERYRUNTIMESENSOR; };
};
#endif