#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;
|
}
|