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_7296.h

33 lines
1010 B
C++

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