From 5ce2e7ca14f09da2138ea783ef16044a01423413 Mon Sep 17 00:00:00 2001
From: SWK <sungwk82@diteam.co.kr>
Date: 금, 10 3월 2023 15:30:57 +0900
Subject: [PATCH] #4403 CF AOI Review TACT 개선 1. Alive 신호 처리 시 지연 개선

---
 ReviewSystem/ReviewSystem/ReviewProcessor.h |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/ReviewSystem/ReviewSystem/ReviewProcessor.h b/ReviewSystem/ReviewSystem/ReviewProcessor.h
index dbfb2ff..b5a7c74 100644
--- a/ReviewSystem/ReviewSystem/ReviewProcessor.h
+++ b/ReviewSystem/ReviewSystem/ReviewProcessor.h
@@ -62,6 +62,7 @@
 	
 	virtual const CRsRcpReviewInfo* IRP2P_Recipe_GetRsRcpReviewInfo() = 0;
 	virtual const CSystemInfo*      IRP2P_GetReviewSysteminfo() = 0;
+	virtual const CSignalControlInfo*	IRP2P_GetReviewSignalinfo() = 0;
 	virtual CGlassResult*			IRP2P_GetCurrentGlassResult() = 0;													
 	virtual void					IRP2P_DisplayMessage(const TCHAR* lpstrFormat, ...) = 0;
 	virtual CResultServerControl*	IRP2P_GetResultServerControl() = 0;
@@ -76,6 +77,19 @@
 
 	virtual void					IRP2P_UpdateWSISelfDiagnosisResult();
 
+	virtual BOOL						IRP2P_GetFirstReviewLeft() = 0;
+	virtual BOOL						IRP2P_GetFirstReviewRight() = 0;
+
+	virtual void						IRP2P_SetFirstReviewLeft(BOOL b_Check) = 0;
+	virtual void						IRP2P_SetFirstReviewRight(BOOL b_Check) = 0;
+
+	/*< LYW 20211109 - #3662 ADD Start >*/
+	virtual BOOL						IRP2P_GetReview00ImageContrast() = 0;
+	virtual BOOL						IRP2P_GetReview01ImageContrast() = 0;
+	virtual void						IRP2P_SetReview00ImageContrast(int n_Value) = 0;
+	virtual void						IRP2P_SetReview01ImageContrast(int n_Value) = 0;
+	/*< LYW 20211109 - #3662 ADD End >*/
+
 };
 
 typedef std::vector<CPoint>					VectorPoint;

--
Gitblit v1.9.3