SDC C-Project CF Review 프로그램
KEJ
2024-06-26 0c66940a8e2cf64c9890519901f433b3668216b6
DitGlassRawMessenger/DitGlassRawMessenger/GlassRawBase.h
@@ -44,6 +44,14 @@
enum CAMTYPE { _eCT_Reflex = 0, _eCT_Transfer };
/* < KJG 20240620 - #4942 ADD Start >*/
interface IGlassRaw2Parent
{
   virtual void IGR2P_ReportBinaryResult(BOOL bSucess) = 0;
};
/* < KJG 20240620 - #4942 ADD  End>*/
class CGlassRawBase
{
public:
@@ -79,4 +87,8 @@
   BOOL b_EnableFtpAck;
   /* <LJC 20211122 : #3820 ADD End> */
   void SetInterface_IGR2P(_In_ IGlassRaw2Parent* pInterface) { m_pParentInterface = pInterface; } /* < KJG 20240620 - #4942 ADD >*/
protected:
   IGlassRaw2Parent* m_pParentInterface; /* < KJG 20240620 - #4942 ADD >*/
};