#include <Unbounded_Array_Sequence_T.h>
Public Types | |
| typedef T_array * | element_type |
| typedef T_array | value_type |
| typedef T_slice * | T_slice_ptr |
| typedef T_slice * | slice_type |
| typedef T_slice_ptr * | const_value_type |
| typedef value_type & | subscript_type |
| typedef value_type const & | const_subscript_type |
| typedef ::CORBA::ULong | size_type |
| typedef details::unbounded_array_allocation_traits < value_type, true > | allocation_traits |
| typedef TAO_Array_Forany_T < T_array, T_slice, T_tag > | forany |
| typedef details::array_traits < forany > | element_traits |
| typedef details::generic_sequence < value_type, allocation_traits, element_traits > | implementation_type |
Public Member Functions | |
| unbounded_array_sequence () | |
| unbounded_array_sequence (CORBA::ULong maximum) | |
| unbounded_array_sequence (CORBA::ULong maximum, CORBA::ULong length, value_type *data, CORBA::Boolean release=false) | |
| CORBA::ULong | maximum () const |
| CORBA::Boolean | release () const |
| CORBA::ULong | length () const |
| void | length (CORBA::ULong length) |
| value_type const & | operator[] (CORBA::ULong i) const |
| value_type & | operator[] (CORBA::ULong i) |
| void | replace (CORBA::ULong maximum, CORBA::ULong length, value_type *data, CORBA::Boolean release=false) |
| value_type const * | get_buffer () const |
| value_type * | get_buffer (CORBA::Boolean orphan=false) |
| void | swap (unbounded_array_sequence &rhs) throw () |
Static Public Member Functions | |
| static value_type * | allocbuf (CORBA::ULong maximum) |
| static void | freebuf (value_type *buffer) |
Private Attributes | |
| implementation_type | impl_ |
Definition at line 22 of file Unbounded_Array_Sequence_T.h.
| typedef details::unbounded_array_allocation_traits<value_type,true> TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::allocation_traits |
Definition at line 34 of file Unbounded_Array_Sequence_T.h.
| typedef value_type const& TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::const_subscript_type |
Definition at line 31 of file Unbounded_Array_Sequence_T.h.
| typedef T_slice_ptr* TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::const_value_type |
Definition at line 29 of file Unbounded_Array_Sequence_T.h.
| typedef details::array_traits<forany> TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::element_traits |
Definition at line 36 of file Unbounded_Array_Sequence_T.h.
| typedef T_array* TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::element_type |
Definition at line 25 of file Unbounded_Array_Sequence_T.h.
| typedef TAO_Array_Forany_T<T_array, T_slice, T_tag> TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::forany |
Definition at line 35 of file Unbounded_Array_Sequence_T.h.
| typedef details::generic_sequence<value_type, allocation_traits, element_traits> TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::implementation_type |
Definition at line 37 of file Unbounded_Array_Sequence_T.h.
| typedef ::CORBA::ULong TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::size_type |
Definition at line 32 of file Unbounded_Array_Sequence_T.h.
| typedef T_slice* TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::slice_type |
Definition at line 28 of file Unbounded_Array_Sequence_T.h.
| typedef value_type& TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::subscript_type |
Definition at line 30 of file Unbounded_Array_Sequence_T.h.
| typedef T_slice* TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::T_slice_ptr |
Definition at line 27 of file Unbounded_Array_Sequence_T.h.
| typedef T_array TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::value_type |
Definition at line 26 of file Unbounded_Array_Sequence_T.h.
| TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::unbounded_array_sequence | ( | ) | [inline] |
Definition at line 39 of file Unbounded_Array_Sequence_T.h.
: impl_() {}
| TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::unbounded_array_sequence | ( | CORBA::ULong | maximum | ) | [inline, explicit] |
Definition at line 42 of file Unbounded_Array_Sequence_T.h.
: impl_(maximum) {}
| TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::unbounded_array_sequence | ( | CORBA::ULong | maximum, | |
| CORBA::ULong | length, | |||
| value_type * | data, | |||
| CORBA::Boolean | release = false | |||
| ) | [inline] |
Definition at line 45 of file Unbounded_Array_Sequence_T.h.
| static value_type* TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::allocbuf | ( | CORBA::ULong | maximum | ) | [inline, static] |
Definition at line 86 of file Unbounded_Array_Sequence_T.h.
{
return implementation_type::allocbuf(maximum);
}
| static void TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::freebuf | ( | value_type * | buffer | ) | [inline, static] |
Definition at line 89 of file Unbounded_Array_Sequence_T.h.
{
implementation_type::freebuf(buffer);
}
| value_type const* TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::get_buffer | ( | ) | const [inline] |
Definition at line 77 of file Unbounded_Array_Sequence_T.h.
{
return impl_.get_buffer();
}
| value_type* TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::get_buffer | ( | CORBA::Boolean | orphan = false |
) | [inline] |
Definition at line 80 of file Unbounded_Array_Sequence_T.h.
{
return impl_.get_buffer(orphan);
}
| CORBA::ULong TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::length | ( | void | ) | const [inline] |
Definition at line 58 of file Unbounded_Array_Sequence_T.h.
{
return impl_.length();
}
| void TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::length | ( | CORBA::ULong | length | ) | [inline] |
Definition at line 61 of file Unbounded_Array_Sequence_T.h.
{
impl_.length(length);
}
| CORBA::ULong TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::maximum | ( | ) | const [inline] |
Definition at line 52 of file Unbounded_Array_Sequence_T.h.
{
return impl_.maximum();
}
| value_type const& TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::operator[] | ( | CORBA::ULong | i | ) | const [inline] |
Definition at line 64 of file Unbounded_Array_Sequence_T.h.
{
return impl_[i];
}
| value_type& TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::operator[] | ( | CORBA::ULong | i | ) | [inline] |
Definition at line 67 of file Unbounded_Array_Sequence_T.h.
{
return impl_[i];
}
| CORBA::Boolean TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::release | ( | void | ) | const [inline] |
Definition at line 55 of file Unbounded_Array_Sequence_T.h.
{
return impl_.release();
}
| void TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::replace | ( | CORBA::ULong | maximum, | |
| CORBA::ULong | length, | |||
| value_type * | data, | |||
| CORBA::Boolean | release = false | |||
| ) | [inline] |
Definition at line 70 of file Unbounded_Array_Sequence_T.h.
| void TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::swap | ( | unbounded_array_sequence< T_array, T_slice, T_tag > & | rhs | ) | throw () [inline] |
Definition at line 83 of file Unbounded_Array_Sequence_T.h.
{
impl_.swap(rhs.impl_);
}
implementation_type TAO::unbounded_array_sequence< T_array, T_slice, T_tag >::impl_ [private] |
Definition at line 94 of file Unbounded_Array_Sequence_T.h.
1.7.0