#include <Allocator.h>
Public Member Functions | |
virtual void | Delete (void *p) throw () |
Delete of memory allocation. | |
virtual void | DeleteArray (void *p) throw () |
Delete of array memory allocation. | |
virtual void * | New (size_t t) throw (std::bad_alloc) |
Create of memory allocation. | |
virtual void * | NewArray (size_t t) throw (std::bad_alloc) |
Create of array memory allocation. | |
virtual | ~Allocator () |
Destructor. |
Allocator class.
Definition at line 42 of file Allocator.h.
virtual coil::Allocator::~Allocator | ( | ) | [inline, virtual] |
void coil::Allocator::Delete | ( | void * | p | ) | throw () [virtual] |
Delete of memory allocation.
Delete of memory allocation.
p | Pointer to a memory allocation. |
Definition at line 44 of file Allocator.cpp.
void coil::Allocator::DeleteArray | ( | void * | p | ) | throw () [virtual] |
Delete of array memory allocation.
Delete of array memory allocation.
p | Pointer to a memory allocation. |
Definition at line 68 of file Allocator.cpp.
void * coil::Allocator::New | ( | size_t | t | ) | throw (std::bad_alloc) [virtual] |
Create of memory allocation.
Create of memory allocation.
t | Allocation size. |
Definition at line 32 of file Allocator.cpp.
void * coil::Allocator::NewArray | ( | size_t | t | ) | throw (std::bad_alloc) [virtual] |
Create of array memory allocation.
Create of array memory allocation.
t | Allocation size. |
Definition at line 56 of file Allocator.cpp.