SDC C-Project CF Review 프로그램
LYW
2021-10-14 26e2541b87ca76e16cf69399eb9a3cce62d2e864
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 "CHReviewRecipe/RcpPriorityInfo.h"
 
CRcpPriorityInfo::CRcpPriorityInfo(void)
{
    Reset();
}
 
CRcpPriorityInfo::~CRcpPriorityInfo(void)
{
    Reset();
}
 
void CRcpPriorityInfo::Reset()
{    
    m_nPriorityOpticData            = RCP_PRIORITY_ORDER_OPTIC_ALL;                // �켱���� optic ������
    m_nPriorityGrayData                = RCP_PRIORITY_ORDER_GRAY_ALL;                // �켱���� gray ������
    m_nPriorityStackData            = RCP_PRIORITY_ORDER_STACK_ALL;                // �켱���� stack ������
    m_nPriorityDefectType            = RCP_PRIORITY_ORDER_PARTICLE;
    m_nPriorityModelData            = RCP_PRIORITY_MODEL_TYPE_ALL;
    m_nDefectGradeData              = RCP_PRIORITY_Judge_ALL;
    m_nPriorityDefectTypeNum        = 0;
 
    m_bUseSizeOption                = FALSE;
    m_nDefectumMinSize                = 0;
    m_nDefectumMaxSize                = 99999;
    //m_nPriorityDefectCode            = RCP_PRIORITY_DEFECT_CODE_ALL; //20210608
    m_strPriorityDefectCode            = "";
}
 
void CRcpPriorityInfo::SetInfo(const CRcpPriorityInfo& rhs)
{
    *this = rhs;
}
 
void CRcpPriorityInfo::GetInfo(CRcpPriorityInfo& rhs)
{
    rhs = *this;
}