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.

31 lines
474 B

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