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.

35 lines
532 B

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