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.
26 lines
671 B
C
26 lines
671 B
C
|
2 years ago
|
// InputController_HSL.h: interface for the CInputController_HSL class.
|
||
|
|
//
|
||
|
|
//////////////////////////////////////////////////////////////////////
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "InputControllerBase.h"
|
||
|
|
|
||
|
|
class CAdlinkCommon_HSL;
|
||
|
|
|
||
|
|
class CInputController_HSL : public CInputControllerBase
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CInputController_HSL();
|
||
|
|
virtual ~CInputController_HSL();
|
||
|
|
|
||
|
|
// method to initialise the input controller card
|
||
|
|
int InitCard(int nHardwareIniTypeID, int nHardwareIniTypeCardNo, int* nPhysicalCardID) override;
|
||
|
|
|
||
|
|
// method to close the input controller card
|
||
|
|
int CloseCard(int nPhysicalCardID) override;
|
||
|
|
|
||
|
|
private:
|
||
|
|
std::unique_ptr<CAdlinkCommon_HSL> m_pCommon;
|
||
|
|
};
|