fbxsdk/core/base/fbxmemorypool.h Source File
         
    
Go to the documentation of this file.
   13 #ifndef _FBXSDK_CORE_BASE_MEMORY_H_ 
   14 #define _FBXSDK_CORE_BASE_MEMORY_H_ 
   32     FbxMemoryPool(
size_t pBlockSize, 
FbxInt64 pBlockCount=0, 
bool pResizable=
true, 
bool pConcurrent=
true);
 
   47     void Release(
void* pMemBlock);
 
   52 #ifndef DOXYGEN_SHOULD_SKIP_THIS 
   57     FbxAtomic   mFreeBlockCount;
 
   58     void*       mFreeBlocksStack;
 
   61     bool        mSupportConcurrentAccess;
 
FBX SDK environment definition. 
 
Class to create a simple fixed-size-blocks memory pool to allocate memory dynamically. 
 
signed long long FbxInt64