Leaked source code of windows server 2003
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
536 B

  1. /*
  2. *
  3. * NOTES:
  4. *
  5. * REVISIONS:
  6. * ker01DEC92: Initial break out of sensor classes into separate files
  7. * cgm12Apr96: Add destructor with unregister
  8. */
  9. #ifndef RTRTHSEN_H
  10. #define RTRTHSEN_H
  11. #include "thsensor.h"
  12. _CLASSDEF(RunTimeRemainingSensor)
  13. class RunTimeRemainingSensor : public ThresholdSensor {
  14. public:
  15. RunTimeRemainingSensor(PDevice aParent, PCommController aCommController);
  16. virtual ~RunTimeRemainingSensor();
  17. virtual INT IsA() const { return BATTERYRUNTIMESENSOR; };
  18. };
  19. #endif