1#ifndef Cpl_Memory_Allocator_h_
2#define Cpl_Memory_Allocator_h_
121 return ((nbytes + ws - 1) / ws) * ws;
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
This abstract class defines the interface for a Memory Allocator.
Definition Allocator.h:76
virtual void * allocate(size_t numbytes)=0
Allocate and returns a pointer to at least numBytes of storage.
size_t allocatedSizeForNBytes(size_t nbytes) const noexcept
Convenience method that determines the actual amount of memory that actually allocated for a successf...
Definition Allocator.h:118
virtual void release(void *ptr)=0
Frees memory that was allocated via the allocate() method.
virtual size_t wordSize() const noexcept=0
Returns the 'word' size of the allocator, i.e.
virtual ~Allocator()
Provide a virtual destructor.
Definition Allocator.h:126
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20