Source code of Windows XP (NT5)
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

  1. /*
  2. *
  3. * NOTES:
  4. *
  5. * REVISIONS:
  6. * ker01DEC92: Initial break out of sensor classes into separate files
  7. * pcy08Apr94: Trim size, use static iterators, dead code removal
  8. */
  9. #ifndef BATTCOND_H
  10. #define BATTCOND_H
  11. #include "stsensor.h"
  12. _CLASSDEF(BatteryConditionSensor)
  13. class BatteryConditionSensor : public StateSensor {
  14. public:
  15. BatteryConditionSensor(PDevice aParent, PCommController aCommController=NULL);
  16. virtual ~BatteryConditionSensor();
  17. virtual INT IsA() const { return BATTERYCONDITIONSENSOR; };
  18. };
  19. #endif