#include <Seq_Var_T.h>
Inheritance diagram for TAO_Seq_Var_Base_T< T >:


Public Types | |
| typedef T::subscript_type | T_elem |
| typedef const T & | _in_type |
| typedef T & | _inout_type |
| typedef T *& | _out_type |
| typedef T * | _retn_type |
Public Member Functions | |
| TAO_Seq_Var_Base_T (void) | |
| TAO_Seq_Var_Base_T (T *) | |
| TAO_Seq_Var_Base_T (const TAO_Seq_Var_Base_T< T > &) | |
| ~TAO_Seq_Var_Base_T (void) | |
| T * | operator-> (void) |
| const T * | operator-> (void) const |
| operator const T & () const | |
| operator T & () | |
| operator T & () const | |
| _in_type | in (void) const |
| _inout_type | inout (void) |
| _out_type | out (void) |
| _retn_type | _retn (void) |
| _retn_type | ptr (void) const |
| TAO extension. | |
Protected Attributes | |
| T * | ptr_ |
Definition at line 33 of file Seq_Var_T.h.
|
|||||
|
Definition at line 51 of file Seq_Var_T.h. |
|
|||||
|
Definition at line 52 of file Seq_Var_T.h. |
|
|||||
|
Definition at line 53 of file Seq_Var_T.h. |
|
|||||
|
Definition at line 54 of file Seq_Var_T.h. |
|
|||||
|
Reimplemented in TAO_FixedSeq_Var_T< T >, TAO_VarSeq_Var_T< T >, TAO_FixedSeq_Var_T< OctetSeq >, and TAO_VarSeq_Var_T< PolicyList >. Definition at line 36 of file Seq_Var_T.h. |
|
||||||||||
|
Definition at line 9 of file Seq_Var_T.inl.
00010 : ptr_ (0) 00011 {} |
|
||||||||||
|
Definition at line 15 of file Seq_Var_T.inl.
00016 : ptr_ (p) 00017 {} |
|
||||||||||
|
Definition at line 17 of file Seq_Var_T.cpp.
|
|
||||||||||
|
Definition at line 21 of file Seq_Var_T.inl.
00022 {
00023 delete this->ptr_;
00024 }
|
|
||||||||||
|
Definition at line 92 of file Seq_Var_T.inl. Referenced by TAO::LocateRequest_Invocation_Adapter::get_inconsistent_policies(), TAO_Policy_Set::get_policy_overrides(), and TAO_ORB_Core::list_initial_references().
00093 {
00094 T * tmp = this->ptr_;
00095 this->ptr_ = 0;
00096 return tmp;
00097 }
|
|
||||||||||
|
Definition at line 66 of file Seq_Var_T.inl.
00067 {
00068 return *this->ptr_;
00069 }
|
|
||||||||||
|
Definition at line 74 of file Seq_Var_T.inl.
00075 {
00076 return *this->ptr_;
00077 }
|
|
|||||||||
|
Definition at line 44 of file Seq_Var_T.inl.
00045 {
00046 return *this->ptr_;
00047 }
|
|
|||||||||
|
Definition at line 58 of file Seq_Var_T.inl.
00059 {
00060 return *this->ptr_;
00061 }
|
|
|||||||||
|
Definition at line 51 of file Seq_Var_T.inl.
00052 {
00053 return *this->ptr_;
00054 }
|
|
||||||||||
|
Definition at line 29 of file Seq_Var_T.inl.
00030 {
00031 return this->ptr_;
00032 }
|
|
||||||||||
|
Definition at line 37 of file Seq_Var_T.inl.
00038 {
00039 return this->ptr_;
00040 }
|
|
||||||||||
|
Definition at line 82 of file Seq_Var_T.inl.
|
|
||||||||||
|
TAO extension.
Definition at line 102 of file Seq_Var_T.inl.
00103 {
00104 return this->ptr_;
00105 }
|
|
|||||
|
Definition at line 65 of file Seq_Var_T.h. Referenced by TAO_VarSeq_Var_T< T >::operator=(), and TAO_FixedSeq_Var_T< T >::operator=(). |
1.3.6