#include <Pseudo_VarOut_T.h>
Public Member Functions | |
TAO_Pseudo_Out_T (typename T::_ptr_type &) | |
TAO_Pseudo_Out_T (typename T::_var_type &) | |
TAO_Pseudo_Out_T (const TAO_Pseudo_Out_T< T > &) | |
TAO_Pseudo_Out_T< T > & | operator= (const TAO_Pseudo_Out_T< T > &) |
TAO_Pseudo_Out_T< T > & | operator= (typename T::_ptr_type) |
operator typename T::_ptr_type & () | |
T::_ptr_type & | ptr (void) |
T::_ptr_type | operator-> (void) |
Private Member Functions | |
TAO_Pseudo_Out_T< T > & | operator= (const typename T::_var_type &) |
Assignment from _var not allowed. | |
Private Attributes | |
T::_ptr_type & | ptr_ |
Definition at line 106 of file Pseudo_VarOut_T.h.
ACE_INLINE TAO_Pseudo_Out_T< T >::TAO_Pseudo_Out_T | ( | typename T::_ptr_type & | ) |
ACE_INLINE TAO_Pseudo_Out_T< T >::TAO_Pseudo_Out_T | ( | typename T::_var_type & | ) |
Definition at line 121 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Out_T< T >::ptr_, and CORBA::release().
00122 : ptr_ (p.out ()) 00123 { 00124 ::CORBA::release (this->ptr_); 00125 this->ptr_ = T::_nil (); 00126 }
ACE_INLINE TAO_Pseudo_Out_T< T >::TAO_Pseudo_Out_T | ( | const TAO_Pseudo_Out_T< T > & | ) |
ACE_INLINE TAO_Pseudo_Out_T< T >::operator typename T::_ptr_type & | ( | ) |
Definition at line 164 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Out_T< T >::ptr_.
00165 { 00166 return this->ptr_; 00167 }
ACE_INLINE T::_ptr_type TAO_Pseudo_Out_T< T >::operator-> | ( | void | ) |
Definition at line 172 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Out_T< T >::ptr_.
00173 { 00174 return this->ptr_; 00175 }
TAO_Pseudo_Out_T<T>& TAO_Pseudo_Out_T< T >::operator= | ( | const typename T::_var_type & | ) | [private] |
Assignment from _var not allowed.
ACE_INLINE TAO_Pseudo_Out_T< T > & TAO_Pseudo_Out_T< T >::operator= | ( | typename T::_ptr_type | ) |
Definition at line 148 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Out_T< T >::ptr_.
00149 { 00150 this->ptr_ = p; 00151 return *this; 00152 }
ACE_INLINE TAO_Pseudo_Out_T< T > & TAO_Pseudo_Out_T< T >::operator= | ( | const TAO_Pseudo_Out_T< T > & | ) |
ACE_INLINE T::_ptr_type & TAO_Pseudo_Out_T< T >::ptr | ( | void | ) |
Definition at line 157 of file Pseudo_VarOut_T.inl.
References TAO_Pseudo_Out_T< T >::ptr_.
00158 { 00159 return this->ptr_; 00160 }
T::_ptr_type& TAO_Pseudo_Out_T< T >::ptr_ [private] |
Definition at line 121 of file Pseudo_VarOut_T.h.
Referenced by TAO_Pseudo_Out_T< T >::operator typename T::_ptr_type &(), TAO_Pseudo_Out_T< T >::operator->(), TAO_Pseudo_Out_T< T >::operator=(), TAO_Pseudo_Out_T< T >::ptr(), and TAO_Pseudo_Out_T< T >::TAO_Pseudo_Out_T().