CACAO
|
Custom new/delete handler mixin. More...
Static Public Member Functions | |
static void * | operator new (std::size_t size) throw (std::bad_alloc) |
normal new More... | |
static void | operator delete (void *pMemory) throw () |
normal delete More... | |
static void * | operator new (std::size_t size, void *ptr) throw () |
placement new More... | |
static void | operator delete (void *pMemory, void *ptr) throw () |
placement delete More... | |
static void * | operator new (std::size_t size, const std::nothrow_t &nt) throw () |
nothrow new More... | |
static void | operator delete (void *pMemory, const std::nothrow_t &) throw () |
nothrow delete More... | |
static void * | operator new[] (std::size_t size) throw (std::bad_alloc) |
normal new[] More... | |
static void | operator delete[] (void *pMemory) throw () |
normal delete[] More... | |
static void * | operator new[] (std::size_t size, void *ptr) throw () |
placement new[] More... | |
static void | operator delete[] (void *pMemory, void *ptr) throw () |
placement delete[] More... | |
static void * | operator new[] (std::size_t size, const std::nothrow_t &nt) throw () |
nothrow new[] More... | |
static void | operator delete[] (void *pMemory, const std::nothrow_t &) throw () |
nothrow delete[] More... | |
Custom new/delete handler mixin.
Definition at line 43 of file Manager.hpp.
|
inlinestatic |
normal delete
Definition at line 52 of file Manager.hpp.
|
inlinestatic |
placement delete
Definition at line 64 of file Manager.hpp.
|
inlinestatic |
nothrow delete
Definition at line 76 of file Manager.hpp.
|
inlinestatic |
normal delete[]
Definition at line 92 of file Manager.hpp.
|
inlinestatic |
placement delete[]
Definition at line 104 of file Manager.hpp.
|
inlinestatic |
nothrow delete[]
Definition at line 116 of file Manager.hpp.
|
inlinestatic |
normal new
Definition at line 46 of file Manager.hpp.
|
inlinestatic |
placement new
Definition at line 58 of file Manager.hpp.
|
inlinestatic |
nothrow new
Definition at line 70 of file Manager.hpp.
|
inlinestatic |
normal new[]
Definition at line 86 of file Manager.hpp.
|
inlinestatic |
placement new[]
Definition at line 98 of file Manager.hpp.
|
inlinestatic |
nothrow new[]
Definition at line 110 of file Manager.hpp.