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.

24 lines
466 B

  1. /*
  2. * REVISIONS:
  3. * ker01DEC92: Initial break out of sensor classes into separate files
  4. *
  5. */
  6. #ifndef UPSMODL_H
  7. #define UPSMODL_H
  8. #include "sensor.h"
  9. _CLASSDEF(UpsModelSensor)
  10. _CLASSDEF(FirmwareRevSensor)
  11. _CLASSDEF(Device)
  12. class UpsModelSensor : public Sensor {
  13. public:
  14. UpsModelSensor(PDevice aParent, PCommController aCommController=NULL,
  15. PFirmwareRevSensor aFirmwareRev=NULL);
  16. virtual INT IsA() const { return UPSMODELSENSOR; };
  17. };
  18. #endif