From 07a62310a7480610663ffc608491cf46370d99b8 Mon Sep 17 00:00:00 2001 From: LYW <leeyeanwoo@diteam.co.kr> Date: 금, 15 10월 2021 15:26:33 +0900 Subject: [PATCH] Ongoing90 #3671 CF AOI Review 전설비 Align Matching 방법 개선 --- ReviewHistory/include/akCore/akVector.h | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/ReviewHistory/include/akCore/akVector.h b/ReviewHistory/include/akCore/akVector.h new file mode 100644 index 0000000..ec4fb48 --- /dev/null +++ b/ReviewHistory/include/akCore/akVector.h @@ -0,0 +1,20 @@ +#pragma once + + +#include "akCoreLinker.h" + +namespace akCore +{ + template <class type> class AKCORE_DLLSPEC khVector + { + public: + khVector(void); + ~khVector(void); + + public: + private: + type* m_pDB; + + }; + +} -- Gitblit v1.9.3