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.

25 lines
455 B

  1. /*
  2. *
  3. * NOTES:
  4. *
  5. * REVISIONS:
  6. * ker01DEC92: Initial break out of sensor classes into separate files
  7. * pcy26Jan93: I'm a EepromSensor now
  8. *
  9. */
  10. #ifndef UPSIDSEN_H
  11. #define UPSIDSEN_H
  12. #include "eeprom.h"
  13. _CLASSDEF(UpsIdSensor)
  14. class UpsIdSensor : public EepromSensor {
  15. public:
  16. UpsIdSensor(PDevice aParent, PCommController aCommController=NULL);
  17. virtual INT IsA() const { return UPSIDSENSOR; };
  18. };
  19. #endif