Windows2003-3790/ds/netapi/svcdlls/upssvc/apcsmart/replbatt.h

29 lines
634 B
C
Raw Permalink Normal View History

2001-01-01 00:00:00 +01:00
/*
*
* NOTES:
*
* REVISIONS:
* ker01DEC92: Initial break out of sensor classes into separate files
* dma10Nov97: Created virtual destructor for ReplaceBatterySensor class.
* tjg02Mar98: Added Update method
*/
#ifndef REPLBATT_H
#define REPLBATT_H
#include "stsensor.h"
_CLASSDEF(ReplaceBatterySensor)
class ReplaceBatterySensor : public StateSensor {
public:
ReplaceBatterySensor(PDevice aParent, PCommController aCommController=NULL);
virtual ~ReplaceBatterySensor();
virtual INT Update(PEvent anEvent);
virtual INT IsA() const { return REPLACEBATTERYSENSOR; };
};
#endif