#include "StdAfx.h" #include "CHReviewRecipe/RsRcpDefectFindInfo.h" CRsRcpDefectFindInfo::CRsRcpDefectFindInfo(void) { Reset(); } CRsRcpDefectFindInfo::~CRsRcpDefectFindInfo(void) { Reset(); } void CRsRcpDefectFindInfo::Reset() { m_bDefectFind = FALSE; m_nDirection = 0; m_nDFPitchX = 160; m_nDFPitchY = 160; m_nDFAutoPitchRange = 5; m_nDFThreshold = 30; m_nDFThreshold2 = 50; } void CRsRcpDefectFindInfo::SetInfo(const CRsRcpDefectFindInfo& rhs) { *this = rhs; } void CRsRcpDefectFindInfo::GetInfo(CRsRcpDefectFindInfo& rhs) { rhs = *this; }