#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 >, and TAO_VarSeq_Var_T< T >. Definition at line 36 of file Seq_Var_T.h. |
|
||||||||||
|
Definition at line 11 of file Seq_Var_T.inl.
00012 : ptr_ (0) 00013 {} |
|
||||||||||
|
Definition at line 17 of file Seq_Var_T.inl.
00018 : ptr_ (p) 00019 {} |
|
||||||||||
|
Definition at line 15 of file Seq_Var_T.cpp.
|
|
||||||||||
|
Definition at line 23 of file Seq_Var_T.inl.
00024 {
00025 delete this->ptr_;
00026 }
|
|
||||||||||
|
Definition at line 94 of file Seq_Var_T.inl. Referenced by TAO_ORB_Core::list_initial_references().
00095 {
00096 T * tmp = this->ptr_;
00097 this->ptr_ = 0;
00098 return tmp;
00099 }
|
|
||||||||||
|
Definition at line 68 of file Seq_Var_T.inl.
00069 {
00070 return *this->ptr_;
00071 }
|
|
||||||||||
|
Definition at line 76 of file Seq_Var_T.inl.
00077 {
00078 return *this->ptr_;
00079 }
|
|
|||||||||
|
Definition at line 46 of file Seq_Var_T.inl.
00047 {
00048 return *this->ptr_;
00049 }
|
|
|||||||||
|
Definition at line 60 of file Seq_Var_T.inl.
00061 {
00062 return *this->ptr_;
00063 }
|
|
|||||||||
|
Definition at line 53 of file Seq_Var_T.inl.
00054 {
00055 return *this->ptr_;
00056 }
|
|
||||||||||
|
Definition at line 31 of file Seq_Var_T.inl.
00032 {
00033 return this->ptr_;
00034 }
|
|
||||||||||
|
Definition at line 39 of file Seq_Var_T.inl.
00040 {
00041 return this->ptr_;
00042 }
|
|
||||||||||
|
Definition at line 84 of file Seq_Var_T.inl.
|
|
||||||||||
|
TAO extension.
Definition at line 104 of file Seq_Var_T.inl.
00105 {
00106 return this->ptr_;
00107 }
|
|
|||||
|
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