/********************************************************************* * * file: MemVar.h * * copyright: Shanghai Baosight Software Co., Ltd. * * Version history * 1.0 2020-02-16 zoufuzhou create * *********************************************************************/ #ifndef _MEM_CONST_CACHE_HPP_ #define _MEM_CONST_CACHE_HPP_ #include namespace baosight { class CMemVar { public: static GLB_VAR* Variable(); static GLB_CONST* Const(); static GLB_TRK* Track(); private: static GLB_VAR* st_ptr; }; } #endif