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.

23 lines
714 B
C++

// OutputController_9112.h: interface for the COutputController_9112 class.
//
//////////////////////////////////////////////////////////////////////
#pragma once
#include "OutputControllerBase.h"
// NOTE: the Channel/Point number for analog output is 0 and 1 only
// However, MIT internal setting is 16 and 17.
class COutputController_9112 : public COutputControllerBase
{
public:
COutputController_9112();
virtual ~COutputController_9112();
// 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;
};