Manage memory organized into block lists (allocator) More...
#include <block-allocator.hpp>
Public Member Functions | |
BlockAllocator (A &a) | |
Initialize. | |
~BlockAllocator (void) | |
Free all allocated blocks. | |
A & | allocator (void) |
Return allocator used. | |
T * | operator() (void) |
Return memory of size required by T. | |
size_t | size (void) const |
Return size of memory required by allocator. |
Manage memory organized into block lists (allocator)
The allocation policy is to free all memory allocated when the block allocator is deleted.
Definition at line 45 of file block-allocator.hpp.
|
inline |
Initialize.
Definition at line 98 of file block-allocator.hpp.
|
inline |
Free all allocated blocks.
Definition at line 107 of file block-allocator.hpp.
|
inline |
Return allocator used.
Definition at line 116 of file block-allocator.hpp.
|
inline |
Return memory of size required by T.
Definition at line 122 of file block-allocator.hpp.
|
inline |
Return size of memory required by allocator.
Definition at line 141 of file block-allocator.hpp.