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.
20 lines
598 B
C++
20 lines
598 B
C++
// OutputController_7856.h: interface for the COutputController_7856 class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
#pragma once
|
|
|
|
#include "OutputControllerBase.h"
|
|
|
|
class COutputController_7856 : public COutputControllerBase
|
|
{
|
|
public:
|
|
COutputController_7856();
|
|
virtual ~COutputController_7856();
|
|
|
|
// method to initialise the output controller card
|
|
int InitCard(int nHardwareIniTypeID, int nHardwareIniTypeCardNo, int& nPhysicalCardID) override;
|
|
|
|
// method to close the output controller card
|
|
int CloseCard(int nPhysicalCardID) override;
|
|
};
|