SDC C-Project CF Review 프로그램
LYW
2021-08-17 67bcdefa0aae33fcf16333967744a9aafcaf9433
ReviewSystem/ReviewSystem/SequenceProcessor.h
@@ -484,6 +484,13 @@
   virtual CDlgSelfDiagnosis*         ISP2P_GetDlgDiagnosis() = 0;
   virtual CDlgReviewHistoryTool*      ISP2P_GetDlgHistory() = 0;
   virtual BOOL                  ISP2P_GetFirstReviewLeft() = 0;
   virtual BOOL                  ISP2P_GetFirstReviewRight() = 0;
   virtual void                  ISP2P_SetFirstReviewLeft(BOOL b_Check) = 0;
   virtual void                  ISP2P_SetFirstReviewRight(BOOL b_Check) = 0;
   virtual BOOL                  GetOffSetValue(int nModule, int nCam, int nScan, double dGlassXPos, double &dXpos, double &dYpos) = 0;
public:
@@ -580,10 +587,16 @@
   void SetSP2P(ISequenceProcessor2Parent* pSP2P);
   void SetLineMachineType(int nLineType, int nMachineType, CString strEqpID);
   void SetDefaultValue();
   //#3584 210817 LYW CF AOI Review 시뮬레이션 기능 정상화 ADD START
   void SetSimulationMode(BOOL bCheck) { m_bSimulationMode = bCheck; };
   //#3584 210817 LYW CF AOI Review 시뮬레이션 기능 정상화 ADD END
   // getter
   int      GetProcessMode() const;
   int      GetProcessStatus() const;
   //#3584 210817 LYW CF AOI Review 시뮬레이션 기능 정상화 ADD START
   BOOL GetSimulationMode() { return m_bSimulationMode; };
   //#3584 210817 LYW CF AOI Review 시뮬레이션 기능 정상화 ADD END
   static int GetDirectionX(int nGlassDirection, int nMotorDirection);
   static int GetDirectionY(int nGlassDirection, int nMotorDirection);
@@ -773,4 +786,8 @@
   CTime            m_wsiStartTime;
   int               m_nWsiTotalCount;
   //#3584 210817 LYW CF AOI Review 시뮬레이션 기능 정상화 ADD START
   BOOL            m_bSimulationMode;
   //#3584 210817 LYW CF AOI Review 시뮬레이션 기능 정상화 ADD END
};