// InputController_9112.h: interface for the CInputController_9112 class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_INPUTCONTROLLER_9112_H__4742809F_9543_4644_852C_CE63BAF927F7__INCLUDED_) #define AFX_INPUTCONTROLLER_9112_H__4742809F_9543_4644_852C_CE63BAF927F7__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "InputControllerBase.h" class CAdlinkCommon; // NOTE: the Channel/Point number for analog input is 0 to 15 only // However, MIT internal setting is 16 to 31. class CInputController_9112 : public CInputControllerBase { public: CInputController_9112(); virtual ~CInputController_9112(); // method to initialise the input controller card int InitCard(int nHardwareIniTypeID, int nHardwareIniTypeCardNo, int *pPhysicalCardID) override; // method to close the input controller card int CloseCard(int nPhysicalCardID) override; private: std::unique_ptr m_pCommon; }; #endif // !defined(AFX_INPUTCONTROLLER_9112_H__4742809F_9543_4644_852C_CE63BAF927F7__INCLUDED_)