From 308273fef97381356e96fcd9c17011409a3c2920 Mon Sep 17 00:00:00 2001 From: kojingeun <diteam.co.kr> Date: 수, 07 6월 2023 10:28:21 +0900 Subject: [PATCH] Ongoing50 #4517 CF AOI Review 결과 파일 찾기 실패 개선 1. Find Bin File 찾는 Library 변경 - CRT _findfirsti64 / _findnexti64 -> C++17 Filesystem directory_iterator - 파일 탐색 시간 20k Files(80GB) 1sec 소요 --- ReviewSystem/ReviewSystem/ReviewProcessor.h | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/ReviewSystem/ReviewSystem/ReviewProcessor.h b/ReviewSystem/ReviewSystem/ReviewProcessor.h index 4de61ac..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; @@ -82,6 +83,13 @@ 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