SDC C-Project CF Review 프로그램
LYW
2021-09-23 c77236e1522caa3e2082dd7b5b32f6c30b125172
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
#include "StdAfx.h"
#include "CHReviewRecipe/RcpSortingInfo.h"
 
CRcpSortingInfo::CRcpSortingInfo(void)
{
    Reset();
}
 
CRcpSortingInfo::~CRcpSortingInfo(void)
{
 
}
 
void CRcpSortingInfo::Reset(void)
{
    m_nSortType = RCP_SORT_TYPE_SIZE;
    m_nSortData = RCP_SORT_DATA_ORDER_DECEND;
    m_nSortPriority = RCP_SORT_PRIORITY_NONE;
}
 
void CRcpSortingInfo::SetInfo(const CRcpSortingInfo& rhs)
{
    *this = rhs;
}
 
void CRcpSortingInfo::GetInfo(CRcpSortingInfo& rhs)
{
    rhs = *this;
}