SDC C-Project CF Review 프로그램
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// InspectorRecipe.h: interface for the CInspectorRecipe class.
//
//////////////////////////////////////////////////////////////////////
 
#if !defined(AFX_INSPECTORRECIPE_H__4156C9C1_99FF_4285_8A50_6EABAA26F46A__INCLUDED_)
#define AFX_INSPECTORRECIPE_H__4156C9C1_99FF_4285_8A50_6EABAA26F46A__INCLUDED_
 
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
 
// #include "GlassRecipe.h"
#include "SystemRecipe.h"
#include "ScanRecipe.h"
 
 
 
 
class AFX_EXT_CLASS IInspectorRecipe
{
 
protected:
    CSystemRecipe            m_SystemRecipe;
    CGlassRecipe            m_GlassRecipe;
    CScanRecipe                m_ScanRecipe;
 
 
    CMosisPacket                m_ReadPacket;
    CMosisPacket                m_WritePacket;
 
 
public:
    CSystemRecipe    *GetSystemRecipe()                {return &m_SystemRecipe;}
    CGlassRecipe    *GetGlassRecipe()                {return &m_GlassRecipe;}
    CScanRecipe        *GetScanRecipe()                {return &m_ScanRecipe;}
 
public:
    // pData¿¡ Àִ ³»¿ëÀ» Packet¿¡ copyÇ졒ʡ¢ ³»¿ëÀ» Àд´Ù.
    BOOL            ReadInspectorRecipe(BYTE* pData, int size, int iPacket);
    BOOL            MakeInspectorRecipe(int iScan);
    BOOL            Test_InspectorRecipe();
 
 
public:
};
 
#endif // !defined(AFX_INSPECTORRECIPE_H__4156C9C1_99FF_4285_8A50_6EABAA26F46A__INCLUDED_)