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.
29 lines
740 B
C++
29 lines
740 B
C++
// Output_7432.h: interface for the COutput_7432 class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_OUTPUT_7432_H__7310F1FD_5C78_49AD_8CC0_BBFBD060440A__INCLUDED_)
|
|
#define AFX_OUTPUT_7432_H__7310F1FD_5C78_49AD_8CC0_BBFBD060440A__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "OutputBase.h"
|
|
|
|
class CAdlinkCommon;
|
|
|
|
class COutput_7432 : public COutputBase
|
|
{
|
|
public:
|
|
COutput_7432(const COutputSetting &Setting);
|
|
virtual ~COutput_7432();
|
|
|
|
BOOL SetState(bool bState) override;
|
|
|
|
private:
|
|
std::unique_ptr<CAdlinkCommon> m_pCommon;
|
|
};
|
|
|
|
#endif // !defined(AFX_OUTPUT_7432_H__7310F1FD_5C78_49AD_8CC0_BBFBD060440A__INCLUDED_)
|