1#ifndef Cpl_Memory_HPool_h_
2#define Cpl_Memory_HPool_h_
66 HPool(
size_t maxNumBlocks,
bool fatalErrors =
false )
This abstract class defines the interface for a Memory Allocator.
Definition Allocator.h:76
This template class defines a concrete Allocator that allocates its block memory from the HEAP.
Definition HPool.h:50
Pool_::BlockInfo_ * m_infoBlocks
Allocate memory for BlockInfo_ instances.
Definition HPool.h:53
void * allocate(size_t numbytes)
See Cpl::Memory::Allocator.
Definition HPool.h:85
AlignedClass< T > * m_blocks
Allocate blocks.
Definition HPool.h:56
void release(void *ptr)
See Cpl::Memory::Allocator.
Definition HPool.h:88
HPool(size_t maxNumBlocks, bool fatalErrors=false)
Constructor.
Definition HPool.h:66
size_t wordSize() const noexcept
See Cpl::Memory::Allocator.
Definition HPool.h:91
Pool_ * m_poolPtr
My Pool work object.
Definition HPool.h:59
~HPool()
Destructor.
Definition HPool.h:75
Helper class so I can put my blocks into to my standard containers.
Definition Pool_.h:35
This private concrete class implements a Memory Allocator using a pool of fixed size blocks.
Definition Pool_.h:31
size_t wordSize() const noexcept
See Cpl::Memory::Allocator.
void * allocate(size_t numbytes)
See Cpl::Memory::Allocator.
void release(void *ptr)
See Cpl::Memory::Allocator.
This type is used to create a memory block that is large enough to hold the memory footprint of ONE i...
Definition Aligned.h:47
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20