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++
25 lines
645 B
C++
// InputController_7296.h: interface for the CInputController_7296 class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
#pragma once
|
|
|
|
#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 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;
|
|
};
|