#include <Object_Argument_T.h>
Inheritance diagram for TAO::Inout_Object_Argument_T< S_ptr, S_traits, Insert_Policy >:
Public Member Functions | |
Inout_Object_Argument_T (S_ptr &x) | |
virtual CORBA::Boolean | marshal (TAO_OutputCDR &cdr) |
Marshal the argument into the given CDR output stream. | |
virtual CORBA::Boolean | demarshal (TAO_InputCDR &cdr) |
Demarshal the argument from the given CDR input stream. | |
virtual void | interceptor_value (CORBA::Any *any) const |
Populate the given CORBA::Any result argument. | |
S_ptr & | arg (void) |
Private Attributes | |
S_ptr & | x_ |
Definition at line 89 of file Object_Argument_T.h.
ACE_INLINE TAO::Inout_Object_Argument_T< S_ptr, S_traits, Insert_Policy >::Inout_Object_Argument_T | ( | S_ptr & | x | ) |
ACE_INLINE S_ptr & TAO::Inout_Object_Argument_T< S_ptr, S_traits, Insert_Policy >::arg | ( | void | ) |
Definition at line 48 of file Object_Argument_T.inl.
References TAO::Inout_Object_Argument_T< S_ptr, S_traits, Insert_Policy >::x_.
00049 { 00050 return this->x_; 00051 }
CORBA::Boolean TAO::Inout_Object_Argument_T< S_ptr, S_traits, Insert_Policy >::demarshal | ( | TAO_InputCDR & | cdr | ) | [virtual] |
Demarshal the argument from the given CDR input stream.
true
. Reimplemented from TAO::Argument.
Definition at line 92 of file Object_Argument_T.cpp.
References CORBA::release(), and TAO::Inout_Object_Argument_T< S_ptr, S_traits, Insert_Policy >::x_.
00093 { 00094 S_traits::release (this->x_); 00095 return cdr >> this->x_; 00096 }
void TAO::Inout_Object_Argument_T< S_ptr, S_traits, Insert_Policy >::interceptor_value | ( | CORBA::Any * | any | ) | const [virtual] |
Populate the given CORBA::Any result argument.
Reimplemented from TAO::Argument.
Definition at line 104 of file Object_Argument_T.cpp.
CORBA::Boolean TAO::Inout_Object_Argument_T< S_ptr, S_traits, Insert_Policy >::marshal | ( | TAO_OutputCDR & | cdr | ) | [virtual] |
Marshal the argument into the given CDR output stream.
true
. Reimplemented from TAO::Argument.
Definition at line 83 of file Object_Argument_T.cpp.
References TAO::Inout_Object_Argument_T< S_ptr, S_traits, Insert_Policy >::x_.
00084 { 00085 return cdr << this->x_; 00086 }
S_ptr& TAO::Inout_Object_Argument_T< S_ptr, S_traits, Insert_Policy >::x_ [private] |