Ark Server API (ASA) - Wiki
|
#include <MemoryBase.h>
Public Member Functions | |
void * | operator new (size_t Size) |
void | operator delete (void *Ptr) |
void * | operator new[] (size_t Size) |
void | operator delete[] (void *Ptr) |
Inherit from FUseSystemMallocForNew if you want your objects to be placed in memory alloced by the system malloc routines, bypassing GMalloc. This is e.g. used by FMalloc itself.
Definition at line 47 of file MemoryBase.h.
Overloaded delete operator using the system allocator
Ptr | Pointer to delete |
Overloaded array delete operator using the system allocator
Ptr | Pointer to delete |
Overloaded new operator using the system allocator.
Size | Amount of memory to allocate (in bytes) |
Overloaded array new operator using the system allocator.
Size | Amount of memory to allocate (in bytes) |