#pragma once
|
#include "VcrControl.h"
|
|
class AFX_EXT_CLASS CVcrControl_Simulation : public CVcrControl
|
{
|
public:
|
CVcrControl_Simulation(int nIndex);
|
virtual ~CVcrControl_Simulation(void);
|
|
virtual BOOL Connect(const CVcrControlInfo& controlInfo);
|
virtual void Disconnect();
|
|
virtual BOOL GetDecodeStatus(BOOL &bValue);
|
virtual BOOL GetDecodeData(CString &strValue);
|
virtual BOOL GetReadSize(int &readSize);
|
|
virtual BOOL DecodeTriggerSignal();
|
|
protected:
|
int m_nCurrentValue;
|
int m_nCurrentStatus;
|
|
BOOL m_bDecode;
|
CString m_strDecodeData;
|
|
int m_nSWVer;
|
BOOL m_bOnlyData; // ÄÁÆ®·Ñ·¯ÀÇ °á°ú ¹æ½Ä (Decode Data ¸¸ ¼ö½Å)
|
|
};
|