#include <Unbounded_Array_Allocation_Traits_T.h>
Public Types | |
| typedef T | value_type |
Static Public Member Functions | |
| static CORBA::ULong | default_maximum () |
| static value_type * | default_buffer_allocation () |
| static value_type * | allocbuf (CORBA::ULong maximum) |
| static value_type * | allocbuf_noinit (CORBA::ULong maximum) |
| static void | freebuf (value_type *buffer) |
Definition at line 24 of file Unbounded_Array_Allocation_Traits_T.h.
| typedef T TAO::details::unbounded_array_allocation_traits< T, dummy >::value_type |
Definition at line 26 of file Unbounded_Array_Allocation_Traits_T.h.
| static value_type* TAO::details::unbounded_array_allocation_traits< T, dummy >::allocbuf | ( | CORBA::ULong | maximum | ) | [inline, static] |
Definition at line 38 of file Unbounded_Array_Allocation_Traits_T.h.
{
return new value_type[maximum];
}
| static value_type* TAO::details::unbounded_array_allocation_traits< T, dummy >::allocbuf_noinit | ( | CORBA::ULong | maximum | ) | [inline, static] |
Definition at line 43 of file Unbounded_Array_Allocation_Traits_T.h.
{
return new value_type[maximum];
}
| static value_type* TAO::details::unbounded_array_allocation_traits< T, dummy >::default_buffer_allocation | ( | ) | [inline, static] |
Definition at line 33 of file Unbounded_Array_Allocation_Traits_T.h.
{
return 0;
}
| static CORBA::ULong TAO::details::unbounded_array_allocation_traits< T, dummy >::default_maximum | ( | ) | [inline, static] |
Definition at line 28 of file Unbounded_Array_Allocation_Traits_T.h.
{
return 0;
}
| static void TAO::details::unbounded_array_allocation_traits< T, dummy >::freebuf | ( | value_type * | buffer | ) | [inline, static] |
Definition at line 48 of file Unbounded_Array_Allocation_Traits_T.h.
{
delete[] buffer;
}
1.7.0