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.
34 lines
1.0 KiB
C++
34 lines
1.0 KiB
C++
// OutputController_7434.h: interface for the COutputController_7434 class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_OUTPUTCONTROLLER_7434_H__A7CC244A_21BA_46DA_8B8B_1CDF993D1252__INCLUDED_)
|
|
#define AFX_OUTPUTCONTROLLER_7434_H__A7CC244A_21BA_46DA_8B8B_1CDF993D1252__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "OutputControllerBase.h"
|
|
|
|
class COutputController_7434 : public COutputControllerBase
|
|
{
|
|
public:
|
|
COutputController_7434();
|
|
virtual ~COutputController_7434();
|
|
|
|
// method to initialise the input controller card
|
|
BOOL Init(int nCardType, CArray<stCard, stCard> &astCard);
|
|
|
|
// method to close the input controller card
|
|
void Close(int nCardType);
|
|
|
|
// method to turn output OFF
|
|
BOOL Off(const COutputSetting &OutputSetting);
|
|
|
|
// method to turn output ON
|
|
BOOL On(const COutputSetting &OutputSetting);
|
|
};
|
|
|
|
#endif // !defined(AFX_OUTPUTCONTROLLER_7434_H__A7CC244A_21BA_46DA_8B8B_1CDF993D1252__INCLUDED_)
|