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.

28 lines
634 B

  1. /*
  2. *
  3. * NOTES:
  4. *
  5. * REVISIONS:
  6. * ker01DEC92: Initial break out of sensor classes into separate files
  7. * dma10Nov97: Created virtual destructor for ReplaceBatterySensor class.
  8. * tjg02Mar98: Added Update method
  9. */
  10. #ifndef REPLBATT_H
  11. #define REPLBATT_H
  12. #include "stsensor.h"
  13. _CLASSDEF(ReplaceBatterySensor)
  14. class ReplaceBatterySensor : public StateSensor {
  15. public:
  16. ReplaceBatterySensor(PDevice aParent, PCommController aCommController=NULL);
  17. virtual ~ReplaceBatterySensor();
  18. virtual INT Update(PEvent anEvent);
  19. virtual INT IsA() const { return REPLACEBATTERYSENSOR; };
  20. };
  21. #endif