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
400 B
C++
21 lines
400 B
C++
// Input_7433.h: interface for the CInput_7433 class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
#pragma once
|
|
|
|
#include "InputBase.h"
|
|
|
|
class CAdlinkCommon;
|
|
|
|
class CInput_7433 : public CInputBase
|
|
{
|
|
public:
|
|
CInput_7433(const CInputSetting& Setting);
|
|
virtual ~CInput_7433();
|
|
|
|
int GetState() override;
|
|
|
|
private:
|
|
std::unique_ptr<CAdlinkCommon> m_pCommon;
|
|
};
|