SDC C-Project CF Review 프로그램
LYW
2022-05-31 f1a543772246f59b8b52a8857270b38ee38f3588
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#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 ¸¸ ¼ö½Å)
 
};