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: * xxxddMMMyy * */ #ifndef __TURNOFF_H
#define __TURNOFF_H
#include "sensor.h"
#include "event.h"
_CLASSDEF(TurnOffUpsOnBatterySensor)
class TurnOffUpsOnBatterySensor : public Sensor {
protected: INT AutoRebootEnabled; public: TurnOffUpsOnBatterySensor(PDevice aParent, PCommController aCommController);
//overidden interfaces
virtual INT IsA() const { return TURNOFFUPSONBATTERYSENSOR; }; virtual INT Get(INT, PCHAR); virtual INT Set(INT, const PCHAR);
//Additional Interfaces
};
#endif
|