// Output_9222.h: interface for the COutput_9222 class. // ////////////////////////////////////////////////////////////////////// #pragma once #include "OutputBase.h" class CAdlinkCommon; // NOTE: the Channel/Point number for analog output is 0 and 1 only // However, MIT internal setting is 16 and 17. class COutput_9222 : public COutputBase { public: COutput_9222(const COutputSetting& Setting); virtual ~COutput_9222(); // dVoltage = -10V to +10V // dRange = dummy value. Not in Used for this card. // method to set analog output voltage BOOL SetVoltage(double dVoltage, double dRange) override; BOOL SetState(bool bState) override; private: std::unique_ptr m_pCommon; };