#include <Allocator.h>
Public Member Functions | |
| virtual | ~Allocator () |
| Destructor. | |
| virtual void * | New (size_t t) throw (std::bad_alloc) |
| Create of memory allocation. | |
| virtual void | Delete (void *p) throw () |
| Delete of memory allocation. | |
| virtual void * | NewArray (size_t t) throw (std::bad_alloc) |
| Create of array memory allocation. | |
| virtual void | DeleteArray (void *p) throw () |
| Delete of array memory allocation. | |
Allocator class.
| virtual coil::Allocator::~Allocator | ( | ) | [inline, virtual] |
Destructor.
Destructor
| virtual void coil::Allocator::Delete | ( | void * | p | ) | throw () [virtual] |
Delete of memory allocation.
Delete of memory allocation.
| p | Pointer to a memory allocation. |
| virtual void coil::Allocator::DeleteArray | ( | void * | p | ) | throw () [virtual] |
Delete of array memory allocation.
Delete of array memory allocation.
| p | Pointer to a memory allocation. |
| virtual void* coil::Allocator::New | ( | size_t | t | ) | throw (std::bad_alloc) [virtual] |
Create of memory allocation.
Create of memory allocation.
| t | Allocation size. |
| virtual 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. |
1.6.3