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
676 B
C++
25 lines
676 B
C++
// OutputController_7434.h: interface for the COutputController_7434 class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
#pragma once
|
|
|
|
#include "OutputControllerBase.h"
|
|
|
|
class CAdlinkCommon;
|
|
|
|
class COutputController_7434 : public COutputControllerBase
|
|
{
|
|
public:
|
|
COutputController_7434();
|
|
virtual ~COutputController_7434();
|
|
|
|
// method to initialise the output controller card
|
|
int InitCard(int nHardwareIniTypeID, int nHardwareIniTypeCardNo, int* pPhysicalCardID) override;
|
|
|
|
// method to close the output controller card
|
|
int CloseCard(int nPhysicalCardID) override;
|
|
|
|
private:
|
|
std::unique_ptr<CAdlinkCommon> m_pCommon;
|
|
};
|