#include <Bounded_Array_Sequence_T.h>
Public Types | |
| typedef T_array * | element_type |
| typedef T_array | value_type |
| typedef T_array * | T_slice_ptr |
| 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::bounded_array_allocation_traits < value_type, MAX, 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 | |
| bounded_array_sequence () | |
| bounded_array_sequence (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 length, value_type *data, CORBA::Boolean release=false) |
| value_type const * | get_buffer () const |
| value_type * | get_buffer (CORBA::Boolean orphan=false) |
| void | swap (bounded_array_sequence &rhs) throw () |
Static Public Member Functions | |
| static value_type * | allocbuf (CORBA::ULong maximum) |
| static value_type * | allocbuf () |
| static void | freebuf (value_type *buffer) |
Private Attributes | |
| implementation_type | impl_ |
Definition at line 22 of file Bounded_Array_Sequence_T.h.
| typedef details::bounded_array_allocation_traits<value_type,MAX,true> TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::allocation_traits |
Definition at line 33 of file Bounded_Array_Sequence_T.h.
| typedef value_type const& TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::const_subscript_type |
Definition at line 30 of file Bounded_Array_Sequence_T.h.
| typedef T_slice_ptr* TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::const_value_type |
Definition at line 28 of file Bounded_Array_Sequence_T.h.
| typedef details::array_traits<forany> TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::element_traits |
Definition at line 35 of file Bounded_Array_Sequence_T.h.
| typedef T_array* TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::element_type |
Definition at line 25 of file Bounded_Array_Sequence_T.h.
| typedef TAO_Array_Forany_T<T_array, T_slice, T_tag> TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::forany |
Definition at line 34 of file Bounded_Array_Sequence_T.h.
| typedef details::generic_sequence<value_type, allocation_traits, element_traits> TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::implementation_type |
Definition at line 36 of file Bounded_Array_Sequence_T.h.
| typedef ::CORBA::ULong TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::size_type |
Definition at line 31 of file Bounded_Array_Sequence_T.h.
| typedef value_type& TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::subscript_type |
Definition at line 29 of file Bounded_Array_Sequence_T.h.
| typedef T_array* TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::T_slice_ptr |
Definition at line 27 of file Bounded_Array_Sequence_T.h.
| typedef T_array TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::value_type |
Definition at line 26 of file Bounded_Array_Sequence_T.h.
| TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::bounded_array_sequence | ( | ) | [inline] |
Definition at line 38 of file Bounded_Array_Sequence_T.h.
: impl_() {}
| TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::bounded_array_sequence | ( | CORBA::ULong | length, | |
| value_type * | data, | |||
| CORBA::Boolean | release = false | |||
| ) | [inline] |
Definition at line 41 of file Bounded_Array_Sequence_T.h.
| static value_type* TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::allocbuf | ( | CORBA::ULong | maximum | ) | [inline, static] |
Definition at line 81 of file Bounded_Array_Sequence_T.h.
{
return implementation_type::allocbuf(maximum);
}
| static value_type* TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::allocbuf | ( | ) | [inline, static] |
Definition at line 84 of file Bounded_Array_Sequence_T.h.
{
return implementation_type::allocbuf(MAX);
}
| static void TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::freebuf | ( | value_type * | buffer | ) | [inline, static] |
Definition at line 87 of file Bounded_Array_Sequence_T.h.
{
implementation_type::freebuf(buffer);
}
| value_type const* TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::get_buffer | ( | ) | const [inline] |
Definition at line 72 of file Bounded_Array_Sequence_T.h.
{
return impl_.get_buffer();
}
| value_type* TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::get_buffer | ( | CORBA::Boolean | orphan = false |
) | [inline] |
Definition at line 75 of file Bounded_Array_Sequence_T.h.
{
return impl_.get_buffer(orphan);
}
| CORBA::ULong TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::length | ( | void | ) | const [inline] |
Definition at line 53 of file Bounded_Array_Sequence_T.h.
{
return impl_.length();
}
| void TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::length | ( | CORBA::ULong | length | ) | [inline] |
Definition at line 56 of file Bounded_Array_Sequence_T.h.
{
implementation_type::range::check_length(length, MAX);
impl_.length(length);
}
| CORBA::ULong TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::maximum | ( | ) | const [inline] |
Definition at line 47 of file Bounded_Array_Sequence_T.h.
{
return impl_.maximum();
}
| value_type const& TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::operator[] | ( | CORBA::ULong | i | ) | const [inline] |
Definition at line 60 of file Bounded_Array_Sequence_T.h.
{
return impl_[i];
}
| value_type& TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::operator[] | ( | CORBA::ULong | i | ) | [inline] |
Definition at line 63 of file Bounded_Array_Sequence_T.h.
{
return impl_[i];
}
| CORBA::Boolean TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::release | ( | void | ) | const [inline] |
Definition at line 50 of file Bounded_Array_Sequence_T.h.
{
return impl_.release();
}
| void TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::replace | ( | CORBA::ULong | length, | |
| value_type * | data, | |||
| CORBA::Boolean | release = false | |||
| ) | [inline] |
Definition at line 66 of file Bounded_Array_Sequence_T.h.
| void TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::swap | ( | bounded_array_sequence< T_array, T_slice, T_tag, MAX > & | rhs | ) | throw () [inline] |
Definition at line 78 of file Bounded_Array_Sequence_T.h.
{
impl_.swap(rhs.impl_);
}
implementation_type TAO::bounded_array_sequence< T_array, T_slice, T_tag, MAX >::impl_ [private] |
Definition at line 92 of file Bounded_Array_Sequence_T.h.
1.7.0