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.

35 lines
574 B

  1. /*
  2. *
  3. * NOTES:
  4. *
  5. * REVISIONS:
  6. * ker25NOV92 Initial OS/2 Revision
  7. * cgm12Apr96: Destructor with unregister
  8. */
  9. #ifndef __SMBOOSEN_H
  10. #define __SMBOOSEN_H
  11. #include "stsensor.h"
  12. #include "event.h"
  13. _CLASSDEF(SmartBoostSensor)
  14. class SmartBoostSensor : public StateSensor {
  15. protected:
  16. public:
  17. SmartBoostSensor( PDevice aParent,
  18. PCommController aCommController);
  19. virtual ~SmartBoostSensor();
  20. //overidden interfaces
  21. virtual INT IsA() const { return SMARTBOOSTSENSOR; };
  22. };
  23. #endif