Allocator template class using new/delete. More...
#include "Handle.hpp"
Classes | |
struct | rebind |
Public Types | |
typedef T * | pointer |
typedef T & | reference |
typedef T | value_type |
typedef std::size_t | size_type |
typedef std::ptrdiff_t | difference_type |
Public Member Functions | |
bool | operator== (const Default_allocator &) const |
bool | operator!= (const Default_allocator &) const |
template<typename U > | |
Default_allocator (const Default_allocator< U > &) | |
Public Attributes | |
const typedef T * | const_pointer |
const typedef T & | const_reference |
Allocator template class using new/delete.
The allocator class can be used in PH_List, PH_listOld, PH_vector and its super classes as memory manager. The class uses new and delete for managing the memory. The code is based on the Boost Library http://www.boost.org/