#include <Unbounded_Octet_Sequence_T.h>
Inheritance diagram for TAO::unbounded_value_sequence< CORBA::Octet >:
typedef details::unbounded_value_allocation_traits<value_type,true> TAO::unbounded_value_sequence< CORBA::Octet >::allocation_traits |
typedef value_type const& TAO::unbounded_value_sequence< CORBA::Octet >::const_subscript_type |
typedef CORBA::Octet const TAO::unbounded_value_sequence< CORBA::Octet >::const_value_type |
typedef details::value_traits<value_type,true> TAO::unbounded_value_sequence< CORBA::Octet >::element_traits |
typedef CORBA::Octet TAO::unbounded_value_sequence< CORBA::Octet >::element_type |
typedef details::generic_sequence<value_type, allocation_traits, element_traits> TAO::unbounded_value_sequence< CORBA::Octet >::implementation_type |
typedef details::range_checking<value_type,true> TAO::unbounded_value_sequence< CORBA::Octet >::range |
typedef value_type& TAO::unbounded_value_sequence< CORBA::Octet >::subscript_type |
typedef CORBA::Octet TAO::unbounded_value_sequence< CORBA::Octet >::value_type |
TAO::unbounded_value_sequence< CORBA::Octet >::unbounded_value_sequence | ( | ) | [inline] |
TAO::unbounded_value_sequence< CORBA::Octet >::unbounded_value_sequence | ( | CORBA::ULong | maximum | ) | [inline, explicit] |
TAO::unbounded_value_sequence< CORBA::Octet >::unbounded_value_sequence | ( | CORBA::ULong | maximum, | |
CORBA::ULong | length, | |||
value_type * | data, | |||
CORBA::Boolean | release = false | |||
) | [inline] |
TAO::unbounded_value_sequence< CORBA::Octet >::~unbounded_value_sequence | ( | ) | [inline] |
TAO::unbounded_value_sequence< CORBA::Octet >::unbounded_value_sequence | ( | CORBA::ULong | length, | |
const ACE_Message_Block * | mb | |||
) | [inline] |
Create a sequence of octets from a single message block (i.e. it ignores any chaining in the meesage block).
TAO::unbounded_value_sequence< CORBA::Octet >::unbounded_value_sequence | ( | const unbounded_value_sequence< CORBA::Octet > & | rhs | ) | [inline] |
static value_type* TAO::unbounded_value_sequence< CORBA::Octet >::allocbuf | ( | CORBA::ULong | maximum | ) | [inline, static] |
static void TAO::unbounded_value_sequence< CORBA::Octet >::freebuf | ( | value_type * | buffer | ) | [inline, static] |
value_type* TAO::unbounded_value_sequence< CORBA::Octet >::get_buffer | ( | CORBA::Boolean | orphan = false |
) | [inline] |
value_type const* TAO::unbounded_value_sequence< CORBA::Octet >::get_buffer | ( | ) | const [inline] |
void TAO::unbounded_value_sequence< CORBA::Octet >::length | ( | CORBA::ULong | length | ) | [inline] |
CORBA::ULong TAO::unbounded_value_sequence< CORBA::Octet >::length | ( | ) | const [inline] |
CORBA::ULong TAO::unbounded_value_sequence< CORBA::Octet >::maximum | ( | ) | const [inline] |
ACE_Message_Block* TAO::unbounded_value_sequence< CORBA::Octet >::mb | ( | void | ) | const [inline] |
Returns the underlying message block, the caller must *not* release the copy.
bool TAO::unbounded_value_sequence< CORBA::Octet >::operator!= | ( | const unbounded_value_sequence< CORBA::Octet > & | rhs | ) | const [inline] |
unbounded_value_sequence<CORBA::Octet>& TAO::unbounded_value_sequence< CORBA::Octet >::operator= | ( | const unbounded_value_sequence< CORBA::Octet > & | rhs | ) | [inline] |
bool TAO::unbounded_value_sequence< CORBA::Octet >::operator== | ( | const unbounded_value_sequence< CORBA::Octet > & | rhs | ) | const [inline] |
value_type& TAO::unbounded_value_sequence< CORBA::Octet >::operator[] | ( | CORBA::ULong | i | ) | [inline] |
value_type const& TAO::unbounded_value_sequence< CORBA::Octet >::operator[] | ( | CORBA::ULong | i | ) | const [inline] |
CORBA::Boolean TAO::unbounded_value_sequence< CORBA::Octet >::release | ( | ) | const [inline] |
void TAO::unbounded_value_sequence< CORBA::Octet >::replace | ( | CORBA::ULong | length, | |
const ACE_Message_Block * | mb | |||
) | [inline] |
Replaces the current buffer with <mb>, using only <length> bytes. It takes a duplicate of <mb> so the user still owns it.
void TAO::unbounded_value_sequence< CORBA::Octet >::replace | ( | CORBA::ULong | maximum, | |
CORBA::ULong | length, | |||
value_type * | data, | |||
CORBA::Boolean | release = false | |||
) | [inline] |
void TAO::unbounded_value_sequence< CORBA::Octet >::swap | ( | unbounded_value_sequence< CORBA::Octet > & | rhs | ) | throw () [inline] |
value_type* TAO::unbounded_value_sequence< CORBA::Octet >::buffer_ [mutable, private] |
The buffer with all the elements, casting must be done in derived classes.
CORBA::ULong TAO::unbounded_value_sequence< CORBA::Octet >::length_ [private] |
The current number of elements in the buffer.
CORBA::ULong TAO::unbounded_value_sequence< CORBA::Octet >::maximum_ [private] |
The maximum number of elements the buffer can contain.
ACE_Message_Block* TAO::unbounded_value_sequence< CORBA::Octet >::mb_ [private] |
CORBA::Boolean TAO::unbounded_value_sequence< CORBA::Octet >::release_ [private] |
If true then the sequence should release the buffer when it is destroyed.