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.

25 lines
645 B
C++

// InputController_7432.h: interface for the CInputController_7432 class.
//
//////////////////////////////////////////////////////////////////////
#pragma once
#include "InputControllerBase.h"
class CAdlinkCommon;
class CInputController_7432 : public CInputControllerBase
{
public:
CInputController_7432();
virtual ~CInputController_7432();
// method to initialise the input controller card
int InitCard(int nTypeID, int nTypeCardNo, int* pPhysicalCardID) override;
// method to close the input controller card
int CloseCard(int nPhysicalCardID) override;
private:
std::unique_ptr<CAdlinkCommon> m_pCommon;
};