#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.
typedef T::_ptr_type TAO_Pseudo_Var_T< T >::_in_type |
Definition at line 74 of file Pseudo_VarOut_T.h.
typedef T::_ptr_type& TAO_Pseudo_Var_T< T >::_inout_type |
Definition at line 75 of file Pseudo_VarOut_T.h.
typedef T::_ptr_type& TAO_Pseudo_Var_T< T >::_out_type |
Definition at line 76 of file Pseudo_VarOut_T.h.
typedef T::_ptr_type TAO_Pseudo_Var_T< T >::_retn_type |
Definition at line 77 of file Pseudo_VarOut_T.h.
TAO_BEGIN_VERSIONED_NAMESPACE_DECL ACE_INLINE TAO_Pseudo_Var_T< T >::TAO_Pseudo_Var_T | ( | void | ) |
ACE_INLINE TAO_Pseudo_Var_T< T >::TAO_Pseudo_Var_T | ( | typename T::_ptr_type | ) |
ACE_INLINE TAO_Pseudo_Var_T< T >::TAO_Pseudo_Var_T | ( | const TAO_Pseudo_Var_T< T > & | ) |
Definition at line 21 of file Pseudo_VarOut_T.inl.
00022 : TAO_Base_var () 00023 , ptr_ (T::_duplicate (p.ptr ())) 00024 {}
ACE_INLINE TAO_Pseudo_Var_T< T >::~TAO_Pseudo_Var_T | ( | void | ) |
Definition at line 28 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Var_T< T >::ptr_, and CORBA::release().
00029 { 00030 ::CORBA::release (this->ptr_); 00031 }
TAO_Pseudo_Var_T< T >::TAO_Pseudo_Var_T | ( | const TAO_Base_var & | ) | [private] |
ACE_INLINE T::_ptr_type TAO_Pseudo_Var_T< T >::_retn | ( | void | ) |
Definition at line 94 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Var_T< T >::ptr_.
Referenced by TAO_ORB_Core::implrepo_service(), TAO_CORBALOC_Parser::make_stub_from_mprofile(), 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 }
ACE_INLINE T::_ptr_type TAO_Pseudo_Var_T< T >::in | ( | void | ) | const |
Definition at line 68 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Var_T< T >::ptr_.
Referenced by TAO_ORB_Core::collocation_strategy(), TAO::LocateRequest_Invocation_Adapter::invoke(), TAO::Invocation_Adapter::invoke_collocated_i(), TAO::Invocation_Adapter::invoke_remote_i(), TAO::Synch_Twoway_Invocation::location_forward(), TAO_CORBALOC_Parser::make_stub_from_mprofile(), TAO::LocateRequest_Invocation_Adapter::object_forwarded(), TAO::Invocation_Adapter::object_forwarded(), operator>>(), TAO_CORBANAME_Parser::parse_string(), TAO_GIOP_Message_Base::process_request(), CORBA::ORB::resolve_initial_references(), TAO::Narrow_Utils< T >::unchecked_narrow(), TAO_GIOP_Message_Generator_Parser_12::write_locate_reply_mesg(), and TAO_GIOP_Message_Generator_Parser_10::write_locate_reply_mesg().
00069 { 00070 return this->ptr_; 00071 }
ACE_INLINE T::_ptr_type & TAO_Pseudo_Var_T< T >::inout | ( | void | ) |
Definition at line 76 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Var_T< T >::ptr_.
Referenced by operator>>().
00077 { 00078 return this->ptr_; 00079 }
ACE_INLINE TAO_Pseudo_Var_T< T >::operator typename T::_ptr_type & | ( | ) |
Definition at line 52 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Var_T< T >::ptr_.
00053 { 00054 return this->ptr_; 00055 }
ACE_INLINE TAO_Pseudo_Var_T< T >::operator typename T::_ptr_type const & | ( | ) | const |
Definition at line 45 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Var_T< T >::ptr_.
00046 { 00047 return this->ptr_; 00048 }
ACE_INLINE T::_ptr_type TAO_Pseudo_Var_T< T >::operator-> | ( | void | ) | const |
Definition at line 60 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Var_T< T >::ptr_.
00061 { 00062 return this->ptr_; 00063 }
void TAO_Pseudo_Var_T< T >::operator= | ( | const TAO_Base_var & | ) | [private] |
Reimplemented from TAO_Base_var.
TAO_BEGIN_VERSIONED_NAMESPACE_DECL TAO_Pseudo_Var_T< T > & TAO_Pseudo_Var_T< T >::operator= | ( | const TAO_Pseudo_Var_T< T > & | ) |
Definition at line 16 of file Pseudo_VarOut_T.cpp.
References TAO_Pseudo_Var_T< T >::ptr(), TAO_Pseudo_Var_T< T >::ptr_, and CORBA::release().
00017 { 00018 if (this != &p) 00019 { 00020 ::CORBA::release (this->ptr_); 00021 this->ptr_ = T::_duplicate (p.ptr ()); 00022 } 00023 00024 return *this; 00025 }
ACE_INLINE TAO_Pseudo_Var_T< T > & TAO_Pseudo_Var_T< T >::operator= | ( | typename T::_ptr_type | ) |
Definition at line 36 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Var_T< T >::ptr_, and CORBA::release().
00037 { 00038 ::CORBA::release (this->ptr_); 00039 this->ptr_ = p; 00040 return *this; 00041 }
ACE_INLINE T::_ptr_type & TAO_Pseudo_Var_T< T >::out | ( | void | ) |
Definition at line 84 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Var_T< T >::ptr_, and CORBA::release().
Referenced by TAO::Collocated_Invocation::invoke().
00085 { 00086 ::CORBA::release (this->ptr_); 00087 this->ptr_ = T::_nil (); 00088 return this->ptr_; 00089 }
ACE_INLINE T::_ptr_type TAO_Pseudo_Var_T< T >::ptr | ( | void | ) | const |
Definition at line 104 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Var_T< T >::ptr_.
Referenced by TAO_Pseudo_Var_T< T >::operator=().
00105 { 00106 return this->ptr_; 00107 }
T::_ptr_type TAO_Pseudo_Var_T< T >::ptr_ [private] |
Definition at line 93 of file Pseudo_VarOut_T.h.
Referenced by TAO_Pseudo_Var_T< T >::_retn(), TAO_Pseudo_Var_T< T >::in(), TAO_Pseudo_Var_T< T >::inout(), TAO_Pseudo_Var_T< T >::operator typename T::_ptr_type &(), TAO_Pseudo_Var_T< T >::operator typename T::_ptr_type const &(), TAO_Pseudo_Var_T< T >::operator->(), TAO_Pseudo_Var_T< T >::operator=(), TAO_Pseudo_Var_T< T >::out(), TAO_Pseudo_Var_T< T >::ptr(), and TAO_Pseudo_Var_T< T >::~TAO_Pseudo_Var_T().