Template class for return skeleton value of object. More...
#include <Object_SArgument_T.h>
Public Member Functions | |
Ret_Object_SArgument_T (void) | |
virtual CORBA::Boolean | marshal (TAO_OutputCDR &cdr) |
Marshal the argument into the given CDR output stream. | |
virtual void | interceptor_value (CORBA::Any *any) const |
Populate the given CORBA::Any result argument. | |
S_ptr & | arg (void) |
Private Attributes | |
S_var | x_ |
Template class for return skeleton value of object.
Definition at line 116 of file Object_SArgument_T.h.
TAO::Ret_Object_SArgument_T< S_ptr, S_var, Insert_Policy >::Ret_Object_SArgument_T | ( | void | ) |
Definition at line 69 of file Object_SArgument_T.inl.
{ }
S_ptr & TAO::Ret_Object_SArgument_T< S_ptr, S_var, Insert_Policy >::arg | ( | void | ) |
Definition at line 78 of file Object_SArgument_T.inl.
{ return this->x_.out (); }
void TAO::Ret_Object_SArgument_T< S_ptr, S_var, Insert_Policy >::interceptor_value | ( | CORBA::Any * | ) | const [virtual] |
Populate the given CORBA::Any result argument.
Reimplemented from TAO::Argument.
Definition at line 115 of file Object_SArgument_T.cpp.
{ Insert_Policy<S_ptr>::any_insert (any, this->x_.in ()); }
CORBA::Boolean TAO::Ret_Object_SArgument_T< S_ptr, S_var, Insert_Policy >::marshal | ( | TAO_OutputCDR & | cdr | ) | [virtual] |
Marshal the argument into the given CDR output stream.
true
. Reimplemented from TAO::Argument.
Definition at line 104 of file Object_SArgument_T.cpp.
{ return cdr << this->x_.in (); }
S_var TAO::Ret_Object_SArgument_T< S_ptr, S_var, Insert_Policy >::x_ [private] |
Definition at line 128 of file Object_SArgument_T.h.