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.
 
 
 
 
 
 

40 lines
731 B

/*
* REVISIONS:
* djs08May96 Created
*/
#ifndef __CHGSENSOR_H
#define __CHGSENSOR_H
#include "stsensor.h"
#include "isa.h"
_CLASSDEF(ChangeSensor)
class ChangeSensor : public StateSensor {
protected:
public:
ChangeSensor(PDevice aParent,
PCommController aCommController,
INT aSensorCode = NO_SENSOR_CODE,
INT anUpperEventCode = NO_CODE,
INT aLowerEventCode = NO_CODE,
ACCESSTYPE anACCESSTYPE = AREAD_ONLY);
//overidden interfaces
virtual INT Validate(INT, const PCHAR);
private:
INT theUpperEventCode;
INT theLowerEventCode;
INT theValidationCheckingEnabled;
};
#endif