Source code of Windows XP (NT5)
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: * pcy27Aug93: Get rid of Update() * cad28Sep93: Made sure destructor(s) virtual * pcy08Apr94: Trim size, use static iterators, dead code removal * cgm12Apr96: Add destructor with unregister * djs02Jun97: Changed from sensor to a statesensor */ #ifndef BADBATTS_H
#define BADBATTS_H
#include "stsensor.h"
_CLASSDEF(NumberBadBatteriesSensor) class NumberBadBatteriesSensor : public StateSensor { public: NumberBadBatteriesSensor(PDevice aParent, PCommController aCommController = NULL); virtual ~NumberBadBatteriesSensor(); virtual INT IsA() const { return NUMBERBADBATTERIESSENSOR; }; };
#endif
|