SDC C-Project CF Review 프로그램
LYW
2021-07-19 2bd50ead7f0b92fb9ed5b477b63dea8fbcf8217e
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
#include "StdAfx.h"
#include "CHAfmControls/AfmControl.h"
 
CAfmControl::CAfmControl(int nIndex)
{
    m_nIndex        = nIndex;
    Reset();
}
 
CAfmControl::~CAfmControl(void)
{
    Reset();
}
 
void CAfmControl::Reset()
{
    m_pAFC2P = NULL;
    m_bConnected = FALSE;
 
    m_nStatus = 0;
    m_nRecipeStatus = 0;
 
    m_strRecipeName = _T("");
    m_nRecipeIndex = -1;
    m_nZoomIndex = -1;
    m_nTracking = 0;
 
    m_vecAFMRecipeInfo.clear();
}
 
BOOL CAfmControl::GetConnected() const
{
    return m_bConnected;
}
 
BOOL CAfmControl::SetSystemTime( SYSTEMTIME stCurrentTime )
{
    return TRUE;
}