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.

21 lines
420 B
C

2 years ago
// Output_7434.h: interface for the COutput_7434 class.
//
//////////////////////////////////////////////////////////////////////
#pragma once
#include "OutputBase.h"
class CAdlinkCommon;
class COutput_7434 : public COutputBase
{
public:
COutput_7434(const COutputSetting& Setting);
virtual ~COutput_7434();
BOOL SetState(bool bState) override;
private:
std::unique_ptr<CAdlinkCommon> m_pCommon;
};