Generic buffer allocator for TAO. More...
#include <Buffer_Allocator_T.h>
Public Types | |
typedef handler_type | HANDLER_TYPE |
typedef alloc_type | ALLOC_TYPE |
Public Member Functions | |
TAO_Buffer_Allocator (alloc_type *allocator) | |
virtual handler_type * | allocate (void) |
virtual void | release (handler_type *ptr) |
Private Attributes | |
alloc_type * | allocator_ |
Generic buffer allocator for TAO.
handler_type is the type of object to allocator, alloc_type is the type of allocator to be used to allocate the object.
Definition at line 37 of file Buffer_Allocator_T.h.
typedef alloc_type TAO::TAO_Buffer_Allocator< handler_type, alloc_type >::ALLOC_TYPE |
Definition at line 41 of file Buffer_Allocator_T.h.
typedef handler_type TAO::TAO_Buffer_Allocator< handler_type, alloc_type >::HANDLER_TYPE |
Definition at line 40 of file Buffer_Allocator_T.h.
TAO::TAO_Buffer_Allocator< handler_type, alloc_type >::TAO_Buffer_Allocator | ( | alloc_type * | allocator | ) |
Definition at line 9 of file Buffer_Allocator_T.cpp.
{
handler_type * TAO::TAO_Buffer_Allocator< handler_type, alloc_type >::allocate | ( | void | ) | [virtual] |
Implements TAO::TAO_Allocator< handler_type >.
Definition at line 16 of file Buffer_Allocator_T.cpp.
{ } template <typename handler_type, typename alloc_type> handler_type* TAO_Buffer_Allocator<handler_type, alloc_type>::allocate (void) { handler_type* myvalue = 0; ACE_NEW_MALLOC_RETURN (myvalue,
void TAO::TAO_Buffer_Allocator< handler_type, alloc_type >::release | ( | handler_type * | ptr | ) | [virtual] |
Implements TAO::TAO_Allocator< handler_type >.
Definition at line 29 of file Buffer_Allocator_T.cpp.
alloc_type* TAO::TAO_Buffer_Allocator< handler_type, alloc_type >::allocator_ [private] |
Definition at line 47 of file Buffer_Allocator_T.h.