From 9ad2aa59da822e9d30c5e0cd677025fe6e12df95 Mon Sep 17 00:00:00 2001 From: LYW <leeyeanwoo@diteam.co.kr> Date: 화, 09 11월 2021 17:37:17 +0900 Subject: [PATCH] Ongoing90 #3662 CF AOI Review 전설비 알람 발생 조치 --- 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