From ce2731b82636ca893693575810e7ed5ee8cc5e2e Mon Sep 17 00:00:00 2001
From: KEJ <kimeungju@diteam.co.kr>
Date: 목, 27 6월 2024 19:15:03 +0900
Subject: [PATCH] Ongoing80 #4942 CF AOI Review Bin File Loading 실패 개선  1. 누락코드 추가

---
 ReviewSystem/ReviewSystem/DitGlassRawClient.h |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/ReviewSystem/ReviewSystem/DitGlassRawClient.h b/ReviewSystem/ReviewSystem/DitGlassRawClient.h
index c66f391..0cb0144 100644
--- a/ReviewSystem/ReviewSystem/DitGlassRawClient.h
+++ b/ReviewSystem/ReviewSystem/DitGlassRawClient.h
@@ -1,6 +1,7 @@
 #pragma once
 
 #include "DitGlassRawStruct.h"
+#include <afxmt.h>
 
 class CDitGlassRawClient
 {
@@ -9,6 +10,8 @@
 	~CDitGlassRawClient(void);
 
 public:
+	static CDitGlassRawClient* GetInstance(); //cmark
+
 	BOOL ConnectServer();
 	BOOL isConnect(){return m_hMapBasicInfo == NULL || m_hMapGlassData == NULL ? FALSE : TRUE;};
 
@@ -51,7 +54,7 @@
 	BOOL ConnectGlassRawInfo();
 	BOOL ConnectGlassRawData();
 	BOOL SetCommand(emGlassRawCommand nCmd);
-
+	static CDitGlassRawClient* m_pDitGlassClient; //cmark
 protected:
 	_grmGlassData*  m_pGlassData;
 	_grmBlockData*		m_pBlockData;

--
Gitblit v1.9.3