29 lines
576 B
C++
29 lines
576 B
C++
/*********************************************************************
|
|
*
|
|
* 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 <zlib/zoneDef.h>
|
|
namespace baosight
|
|
{
|
|
class CMemVar
|
|
{
|
|
public:
|
|
static GLB_VAR* Variable();
|
|
static GLB_CONST* Const();
|
|
static GLB_TRK* Track();
|
|
private:
|
|
static GLB_VAR* st_ptr;
|
|
};
|
|
}
|
|
#endif
|