SDC C-Project CF Review 프로그램
LYW
2021-07-23 55615eba335d4cbc1f83330dc5078fe073034b7d
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include "StdAfx.h"
#include "VcrControl_Simulation.h"
 
 
CVcrControl_Simulation::CVcrControl_Simulation(int nIndex) : CVcrControl(nIndex)
{
}
 
CVcrControl_Simulation::~CVcrControl_Simulation(void)
{
}
 
BOOL CVcrControl_Simulation::Connect(const CVcrControlInfo& controlInfo)
{
    m_ControlInfo = controlInfo;
    return TRUE;
}
 
void CVcrControl_Simulation::Disconnect()
{
 
}
 
 
BOOL CVcrControl_Simulation::GetDecodeStatus(BOOL &bValue)
{
    if (!m_bConnected) return FALSE;
 
    bValue = m_bDecode;
 
    return TRUE;
}
 
BOOL CVcrControl_Simulation::GetDecodeData(CString &strValue)
{
    if (!m_bConnected) return FALSE;
 
    return TRUE;
}
 
BOOL CVcrControl_Simulation::GetReadSize(int &readSize)
{
    return TRUE;
}
 
BOOL CVcrControl_Simulation::DecodeTriggerSignal()
{
    if (!m_bConnected) return FALSE;
 
 
    return TRUE;
}