SDC C-Project CF Review 프로그램
LYW
2022-04-15 8ede40e3f7cfe1772ef7db2b1d74e905639cf343
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
#include "StdAfx.h"
#include "CHReviewRecipe/RcpMeasureInfo.h"
 
CRcpMeasureInfo::CRcpMeasureInfo(void)
{
    Reset();
}
 
CRcpMeasureInfo::~CRcpMeasureInfo(void)
{
    Reset();
}
 
void CRcpMeasureInfo::Reset()
{
    m_nModuleIdx        = -1;
    m_nResultIdx        = -1;
    m_nMeasureModelIdx = -1;
    m_nMagnificationIdx = -1;
    m_nLightLevel = 0;
    m_dPosX = 0.0;
    m_dPosY = 0.0;
    m_nUserGlassCount = 0;
}
 
void CRcpMeasureInfo::SetInfo(const CRcpMeasureInfo& rhs)
{
    *this = rhs;
 
//     m_nMeasureModelIdx = rhs.m_nMeasureModelIdx;
//     m_nMagnificationIdx = rhs.m_nMagnificationIdx;
//     m_nLightLevel = rhs.m_nLightLevel;
//     m_dPosX = rhs.m_dPosX;
//     m_dPosY = rhs.m_dPosY;
}
 
void CRcpMeasureInfo::GetInfo(CRcpMeasureInfo& rhs)
{
    rhs = *this;
 
//     rhs.m_nMeasureModelIdx = m_nMeasureModelIdx;
//     rhs.m_nMagnificationIdx = m_nMagnificationIdx;
//     rhs.m_nLightLevel = m_nLightLevel;
//     rhs.m_dPosX = m_dPosX;
//     rhs.m_dPosY = m_dPosY;
}