34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
#pragma once
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------
|
|
//s GUILDPOOL의 메모리 풀 관련 코드
|
|
//--------------------------------------------------------------------------------
|
|
#include <MemoryPoolFactory.h>
|
|
|
|
template<class _Ct>
|
|
class GUILDPOOL
|
|
{
|
|
public:
|
|
GUILDPOOL(){ m_Pool.Initialize(20, 20, "GUILDPOOL"); }
|
|
~GUILDPOOL(){ m_Pool.Release(); }
|
|
_Ct * Alloc() { return (_Ct*)m_Pool.Alloc(); }
|
|
BOOL Free( _Ct * p ) { return m_Pool.Free(p); }
|
|
private:
|
|
util::CMemoryPoolFactory<_Ct> m_Pool;
|
|
};
|
|
|
|
|
|
#define __DECL_GUILDPOOL(_ClassType) \
|
|
private: \
|
|
static GUILDPOOL<_ClassType> s_Pool; \
|
|
public: \
|
|
static _ClassType * ALLOC() { return s_Pool.Alloc(); } \
|
|
static VOID FREE( _ClassType * pClass ) { s_Pool.Free( pClass ); }
|
|
|
|
#define __IMPL_GUILDPOOL(_ClassType) \
|
|
GUILDPOOL<_ClassType> _ClassType::s_Pool;
|
|
//--------------------------------------------------------------------------------
|
|
//e GUILDPOOL의 메모리 풀 관련 코드
|
|
//--------------------------------------------------------------------------------
|