SDC C-Project CF Review 프로그램
LYW
2021-08-10 ebfd7a15f5c7fe5d4cf9120a49b21f3cffd050f7
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
#pragma once
 
#include <vector>
 
class AFX_EXT_CLASS CRcpAFMRecipeInfo
{
public:
    CRcpAFMRecipeInfo(void);
    virtual ~CRcpAFMRecipeInfo(void);
 
public:
    void Reset();
    void SetInfo(const CRcpAFMRecipeInfo& rhs);
    void GetInfo(CRcpAFMRecipeInfo& rhs);
 
    int GetRecipeIndex() const    { return m_nRecipeIndex; }
    int GetZoomIndex() const    { return m_nZoomIndex; }
 
    double GetZPosOffset() const    { return m_dZPosOffset; }
    int GetAFMOffMode() const    { return m_nAFMOffMode; }
public:
    int m_nRecipeIndex;
    int m_nZoomIndex;
    double m_dZPosOffset;
    int m_nAFMOffMode;
    BOOL m_bAFMHomeOffMode;
 
};
 
typedef std::vector<CRcpAFMRecipeInfo>                VectorRcpAFMRecipeInfo;
typedef std::vector<CRcpAFMRecipeInfo>::iterator    VectorRcpAFMRecipeInfoIt;