SDC C-Project CF Review 프로그램
LYW
2021-08-17 572aebd50409d2f11183d6ebbb9d12fe9041e7a5
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
53
54
55
56
57
58
59
60
61
62
63
64
#include "StdAfx.h"
#include "RcpZoneFilteringInfo.h"
 
CRcpZoneFilteringInfo::CRcpZoneFilteringInfo(int nType)
{
    Reset(nType);
}
 
CRcpZoneFilteringInfo::CRcpZoneFilteringInfo(void)
{
    
}
 
 
CRcpZoneFilteringInfo::~CRcpZoneFilteringInfo(void)
{
    
}
 
void CRcpZoneFilteringInfo::Reset(int nType)
{
    m_nFilterType = 0;
    m_nFilterJudge = 0;
    m_nReviewCount = 0;
    m_dJudgeHeight = 0.;
 
    m_FilterSubType = 0;
    m_FilterCode = _T("");
    m_FilterSection = 0;
 
//     switch(nType)
//     {
//     case RCP_FILTER_TYPE_JUDGE:
//         for (int i=0; i<RCP_FILTER_DATA_JUDGE_COUNT; i++)
//         {
//             m_vecFilterJudge.push_back(0);
//         }
//         break;
// 
//     case RCP_FILTER_TYPE_SUBTYPE:
//         for (int i=0; i<RCP_FILTER_DATA_SUBTYPE_COUNT; i++)
//         {
//             m_vecFilterSubType.push_back(0);
//         }
//         break;
// 
//     case RCP_FILTER_TYPE_CODE:
//         for (int i=0; i<RCP_FILTER_DATA_CODE_COUNT; i++)
//         {
//             m_vecFilterCode.push_back(_T(""));
//         }
//         break;
//     }
}
 
void CRcpZoneFilteringInfo::SetInfo(const CRcpZoneFilteringInfo& rhs)
{
    *this = rhs;
}
 
void CRcpZoneFilteringInfo::GetInfo(CRcpZoneFilteringInfo& rhs)
{
    rhs = *this;
}