#include <Pseudo_VarOut_T.h>
Inheritance diagram for TAO_Pseudo_Var_T< T >:
Public Types | |
typedef T::_ptr_type | _in_type |
typedef T::_ptr_type & | _inout_type |
typedef T::_ptr_type & | _out_type |
typedef T::_ptr_type | _retn_type |
Public Member Functions | |
TAO_Pseudo_Var_T (void) | |
TAO_Pseudo_Var_T (typename T::_ptr_type) | |
TAO_Pseudo_Var_T (const TAO_Pseudo_Var_T< T > &) | |
~TAO_Pseudo_Var_T (void) | |
TAO_Pseudo_Var_T< T > & | operator= (typename T::_ptr_type) |
TAO_Pseudo_Var_T< T > & | operator= (const TAO_Pseudo_Var_T< T > &) |
T::_ptr_type | operator-> (void) const |
operator typename T::_ptr_type const & () const | |
operator typename T::_ptr_type & () | |
_in_type | in (void) const |
_inout_type | inout (void) |
_out_type | out (void) |
_retn_type | _retn (void) |
_retn_type | ptr (void) const |
Private Member Functions | |
TAO_Pseudo_Var_T (const TAO_Base_var &) | |
void | operator= (const TAO_Base_var &) |
Private Attributes | |
T::_ptr_type | ptr_ |
Definition at line 57 of file Pseudo_VarOut_T.h.
|
Definition at line 74 of file Pseudo_VarOut_T.h. |
|
Definition at line 75 of file Pseudo_VarOut_T.h. |
|
Definition at line 76 of file Pseudo_VarOut_T.h. |
|
Definition at line 77 of file Pseudo_VarOut_T.h. |
|
Definition at line 9 of file Pseudo_VarOut_T.inl.
00010 : ptr_ (T::_nil ()) 00011 {} |
|
Definition at line 15 of file Pseudo_VarOut_T.inl.
00016 : ptr_ (p) 00017 {} |
|
Definition at line 21 of file Pseudo_VarOut_T.inl.
00022 : TAO_Base_var () 00023 , ptr_ (T::_duplicate (p.ptr ())) 00024 {} |
|
Definition at line 28 of file Pseudo_VarOut_T.inl.
00029 { 00030 ::CORBA::release (this->ptr_); 00031 } |
|
|
|
Definition at line 94 of file Pseudo_VarOut_T.inl. Referenced by TAO_ORB_Core::implrepo_service(), TAO_CORBALOC_Parser::make_stub_from_mprofile(), TAO_MCAST_Parser::multicast_to_service(), TAO_CORBANAME_Parser::parse_string(), TAO_CORBALOC_Parser::parse_string_rir_helper(), CORBA::ORB::resolve_initial_references(), TAO_ORB_Core::resolve_ior_table_i(), and TAO::Invocation_Base::steal_forwarded_reference().
00095 { 00096 typename T::_ptr_type val = this->ptr_; 00097 this->ptr_ = T::_nil (); 00098 return val; 00099 } |
|
|
Definition at line 76 of file Pseudo_VarOut_T.inl. Referenced by operator>>().
00077 { 00078 return this->ptr_; 00079 } |
|
Definition at line 52 of file Pseudo_VarOut_T.inl.
00053 { 00054 return this->ptr_; 00055 } |
|
Definition at line 45 of file Pseudo_VarOut_T.inl.
00046 { 00047 return this->ptr_; 00048 } |
|
Definition at line 60 of file Pseudo_VarOut_T.inl.
00061 { 00062 return this->ptr_; 00063 } |
|
Reimplemented from TAO_Base_var. |
|
Definition at line 16 of file Pseudo_VarOut_T.cpp. References TAO_Pseudo_Var_T< T >::ptr().
|
|
Definition at line 36 of file Pseudo_VarOut_T.inl.
|
|
Definition at line 84 of file Pseudo_VarOut_T.inl. Referenced by TAO::Collocated_Invocation::invoke().
|
|
Definition at line 104 of file Pseudo_VarOut_T.inl. Referenced by TAO_Pseudo_Var_T< T >::operator=().
00105 { 00106 return this->ptr_; 00107 } |
|
Definition at line 93 of file Pseudo_VarOut_T.h. |