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
| #include "StdAfx.h"
| #include "CHReviewRecipe/RcpCoordinateInfo.h"
|
|
| CRcpCoordinateInfo::CRcpCoordinateInfo(void)
| {
| Reset();
| }
|
|
| CRcpCoordinateInfo::~CRcpCoordinateInfo(void)
| {
| Reset();
| }
|
| void CRcpCoordinateInfo::Reset()
| {
| m_dBeforePosX = 0;
| m_dBeforePosY = 0;
| m_dAfterPosX = 0;
| m_dAfterPosY = 0;
| }
|
| void CRcpCoordinateInfo::SetInfo(const CRcpCoordinateInfo& rhs)
| {
| *this = rhs;
| }
|
| void CRcpCoordinateInfo::GetInfo(CRcpCoordinateInfo& rhs)
| {
| rhs = *this;
| }
|
|