Flan
|
The default base class for objects created on heap. More...
#include <r8bbase.h>
Public Member Functions | |
void * | operator new (size_t, void *p) |
void * | operator new (size_t n) |
void * | operator new[] (size_t n) |
void | operator delete (void *p) |
Operator frees a previously allocated memory block for the object. More... | |
void | operator delete[] (void *p) |
Operator frees a previously allocated memory block for the object. More... | |
The default base class for objects created on heap.
Class that implements "new" and "delete" operators that use standard malloc() and free() functions.
|
inline |
Operator frees a previously allocated memory block for the object.
p | Pointer to the allocated memory block for the object. |
|
inline |
Operator frees a previously allocated memory block for the object.
p | Pointer to the allocated memory block for the object. |
|
inline |
n | The size of the object, in bytes. |
p | Pointer to object's pre-allocated memory block. |
|
inline |
n | The size of the object, in bytes. |
|
inline |
n | The size of the object, in bytes. |