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.

37 lines
625 B

  1. /*
  2. *
  3. * NOTES:
  4. *
  5. * REVISIONS:
  6. * rct11Dec92 Created as stub for SmartUps
  7. * pcy13Jan93 Replaced stubs with real function implementations
  8. *
  9. */
  10. #ifndef __UPS2SLEP_H
  11. #define __UPS2SLEP_H
  12. #include "sensor.h"
  13. #include "event.h"
  14. _CLASSDEF(PutUpsToSleepSensor)
  15. class PutUpsToSleepSensor : public Sensor {
  16. protected:
  17. public:
  18. PutUpsToSleepSensor( PDevice aParent, PCommController aCommController);
  19. //overidden interfaces
  20. virtual INT IsA() const { return PUTUPSTOSLEEPSENSOR; };
  21. virtual INT Set(const PCHAR);
  22. //Additional Interfaces
  23. };
  24. #endif