You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mitlib.pub/MITLIB/IODll/InputController_7433.h

33 lines
1010 B
C++

// InputController_7433.h: interface for the CInputController_7433 class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_INPUTCONTROLLER_7433_H__8F122EDF_A234_44FF_A804_2642B543BD17__INCLUDED_)
#define AFX_INPUTCONTROLLER_7433_H__8F122EDF_A234_44FF_A804_2642B543BD17__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "InputControllerBase.h"
class CAdlinkCommon;
class CInputController_7433 : public CInputControllerBase
{
public:
CInputController_7433();
virtual ~CInputController_7433();
// 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<CAdlinkCommon> m_pCommon;
};
#endif // !defined(AFX_INPUTCONTROLLER_7433_H__8F122EDF_A234_44FF_A804_2642B543BD17__INCLUDED_)