#include <Seq_Var_T.h>
Inheritance diagram for TAO_VarSeq_Var_T< T >:
Public Types | |
typedef T::subscript_type | T_elem |
typedef T::const_subscript_type | T_const_elem |
Public Member Functions | |
TAO_VarSeq_Var_T (void) | |
TAO_VarSeq_Var_T (T *) | |
TAO_VarSeq_Var_T (const TAO_VarSeq_Var_T< T > &) | |
TAO_VarSeq_Var_T & | operator= (T *) |
TAO_VarSeq_Var_T & | operator= (const TAO_VarSeq_Var_T< T > &) |
T_elem | operator[] (CORBA::ULong index) |
T_const_elem | operator[] (CORBA::ULong index) const |
operator T *& () | |
Variable-size base types only. |
Definition at line 106 of file Seq_Var_T.h.
|
Definition at line 110 of file Seq_Var_T.h. |
|
Reimplemented from TAO_Seq_Var_Base_T< T >. Definition at line 109 of file Seq_Var_T.h. |
|
Definition at line 169 of file Seq_Var_T.inl.
00170 { 00171 } |
|
Definition at line 175 of file Seq_Var_T.inl.
00176 : TAO_Seq_Var_Base_T<T> (p) 00177 { 00178 } |
|
Definition at line 181 of file Seq_Var_T.inl.
00183 : TAO_Seq_Var_Base_T<T> (p) 00184 { 00185 } |
|
Variable-size base types only.
Definition at line 200 of file Seq_Var_T.inl.
00201 { 00202 return this->ptr_; 00203 } |
|
Definition at line 59 of file Seq_Var_T.cpp. References TAO_Seq_Var_Base_T< T >::ptr_.
00060 { 00061 // Strongly exception safe assignment using copy and non-throwing 00062 // swap technique. 00063 TAO_VarSeq_Var_T<T> tmp (p); 00064 00065 T * old_ptr = this->ptr_; 00066 this->ptr_ = tmp.ptr_; 00067 tmp.ptr_ = old_ptr; 00068 00069 return *this; 00070 } |
|
Definition at line 190 of file Seq_Var_T.inl.
|
|
Definition at line 216 of file Seq_Var_T.inl.
00217 { 00218 return this->ptr_->operator[] (index); 00219 } |
|
Definition at line 208 of file Seq_Var_T.inl.
00209 { 00210 return this->ptr_->operator[] (index); 00211 } |