Allocator class.
More...
#include <Allocator.h>
|
| virtual void | Delete (void *p) throw () |
| | Delete of memory allocation. More...
|
| |
| virtual void | DeleteArray (void *p) throw () |
| | Delete of array memory allocation. More...
|
| |
| virtual void * | New (size_t t) throw (std::bad_alloc) |
| | Create of memory allocation. More...
|
| |
| virtual void * | NewArray (size_t t) throw (std::bad_alloc) |
| | Create of array memory allocation. More...
|
| |
| virtual | ~Allocator () |
| | Destructor. More...
|
| |
Allocator class.
Definition at line 42 of file Allocator.h.
◆ ~Allocator()
| virtual coil::Allocator::~Allocator |
( |
| ) |
|
|
inlinevirtual |
Destructor.
Destructor
Definition at line 61 of file Allocator.h.
◆ Delete()
| void coil::Allocator::Delete |
( |
void * |
p | ) |
|
| throw | ( | |
| ) | | |
|
virtual |
Delete of memory allocation.
Delete of memory allocation.
- Parameters
-
| p | Pointer to a memory allocation. |
Definition at line 44 of file Allocator.cpp.
◆ DeleteArray()
| void coil::Allocator::DeleteArray |
( |
void * |
p | ) |
|
| throw | ( | |
| ) | | |
|
virtual |
Delete of array memory allocation.
Delete of array memory allocation.
- Parameters
-
| p | Pointer to a memory allocation. |
Definition at line 68 of file Allocator.cpp.
◆ New()
| void * coil::Allocator::New |
( |
size_t |
t | ) |
|
| throw | ( | std::bad_alloc |
| ) | | |
|
virtual |
Create of memory allocation.
Create of memory allocation.
- Parameters
-
- Returns
- Pointer to a memory allocation.
Definition at line 32 of file Allocator.cpp.
◆ NewArray()
| void * coil::Allocator::NewArray |
( |
size_t |
t | ) |
|
| throw | ( | std::bad_alloc |
| ) | | |
|
virtual |
Create of array memory allocation.
Create of array memory allocation.
- Parameters
-
- Returns
- Pointer to a memory allocation.
Definition at line 56 of file Allocator.cpp.
The documentation for this class was generated from the following files: