windows-nt/Source/XPSP1/NT/ds/netapi/svcdlls/upssvc/apcsmart/upsmodl.h
2020-09-26 16:20:57 +08:00

25 lines
466 B
C++

/*
* REVISIONS:
* ker01DEC92: Initial break out of sensor classes into separate files
*
*/
#ifndef UPSMODL_H
#define UPSMODL_H
#include "sensor.h"
_CLASSDEF(UpsModelSensor)
_CLASSDEF(FirmwareRevSensor)
_CLASSDEF(Device)
class UpsModelSensor : public Sensor {
public:
UpsModelSensor(PDevice aParent, PCommController aCommController=NULL,
PFirmwareRevSensor aFirmwareRev=NULL);
virtual INT IsA() const { return UPSMODELSENSOR; };
};
#endif