#include <CentumSharedCode.h>
Inheritance diagram for IMemory:
Public Member Functions | |
virtual void * | Request (unsigned long size)=0 |
The Request function returns a usable block of memory. | |
virtual void | Free (void *ptr)=0 |
The Free function releases a memory block from use. |
|
The Free function releases a memory block from use. Use of a pointer after a Free operation on it is an error.
Implemented in CMemoryTracker, and CDefaultMemoryManager. |
|
The Request function returns a usable block of memory.
Implemented in CMemoryTracker, and CDefaultMemoryManager. |