windows-nt/Source/XPSP1/NT/ds/netapi/svcdlls/upssvc/apcsmart/runtrems.h
2020-09-26 16:20:57 +08:00

27 lines
510 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