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.
|
|
/*
* pcy11Dec92: Rework * pcy08Apr94: Trim size, use static iterators, dead code removal * djs03Dec96: Changed generate methods to virtual */ #ifndef __THSENSOR_H
#define __THSENSOR_H
#include "sensor.h"
_CLASSDEF(ThresholdSensor)
enum THSTATE { ABOVE_RANGE, IN_RANGE, BELOW_RANGE };
#define ON TRUE
#define OFF FALSE
class ThresholdSensor : public Sensor { protected: FLOAT theMaxThresholdValue; FLOAT theMinThresholdValue; THSTATE theThresholdState; INT theMaxThresholdControl; INT theMinThresholdControl;
//Functions
INT GetMaxThresholdValue(PCHAR); INT GetMinThresholdValue(PCHAR); INT SetMaxThresholdValue(const PCHAR); INT SetMinThresholdValue(const PCHAR); INT GetMaxThresholdControl(PCHAR); INT GetMinThresholdControl(PCHAR); INT SetMaxThresholdControl(const PCHAR); INT SetMinThresholdControl(const PCHAR); virtual INT GenerateBelowMessage(); virtual INT GenerateAboveMessage(); INT GenerateInRangeMessage(); virtual INT storeValue(const PCHAR aValue); VOID checkState(); virtual VOID getConfigThresholds();
public: ThresholdSensor(PDevice aParent, PCommController aCommController, INT aSensorCode = NO_SENSOR_CODE, ACCESSTYPE anACCESSTYPE = AREAD_ONLY);
virtual INT Get(INT, PCHAR); virtual INT Set(INT, const PCHAR); };
#endif
|