1#ifndef Cpl_Memory_Contigous_Allocator_h_
2#define Cpl_Memory_Contigous_Allocator_h_
38 virtual void reset() noexcept = 0;
47 virtual uint8_t*
getMemoryStart(
size_t& dstAllocatedLenInBytes ) noexcept= 0;
54 void release(
void *ptr ){};
This abstract class defines the interface for a Memory Allocator.
Definition Allocator.h:76
This abstract class is used 'extend' the Memory Allocator to have contiguous semantics.
Definition ContiguousAllocator.h:32
virtual void reset() noexcept=0
Resets the allocator, i.e.
virtual uint8_t * getMemoryStart(size_t &dstAllocatedLenInBytes) noexcept=0
This method returns a pointer to the start of Allocator's contiguous memory AND the total number of b...
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20