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.
|
|
/*
* * 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
|