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.

36 lines
658 B

  1. /*
  2. *
  3. * NOTES:
  4. *
  5. * REVISIONS:
  6. * rct11Dec92 Created as stub for SmartUps
  7. * ane11Jan93 Replaced stubs with real function implementations
  8. * pcy13Jan92: Get rid of Update/Validate; Return err from Set
  9. */
  10. #ifndef __TOWDELS_H
  11. #define __TOWDELS_H
  12. #include "sensor.h"
  13. #include "event.h"
  14. _CLASSDEF(TurnOffWithDelaySensor)
  15. class TurnOffWithDelaySensor : public Sensor {
  16. protected:
  17. public:
  18. TurnOffWithDelaySensor( PDevice aParent, PCommController aCommController);
  19. //overidden interfaces
  20. virtual INT IsA() const { return TURNOFFWITHDELAYSENSOR; };
  21. //Additional Interfaces
  22. };
  23. #endif