#include <Special_Basic_Argument_T.h>
Inheritance diagram for TAO::In_Special_Basic_Argument_T< S, to_S, from_S, Insert_Policy >:
Public Member Functions | |
In_Special_Basic_Argument_T (S const &) | |
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 const & | arg (void) const |
Protected Attributes | |
S const & | x_ |
Definition at line 40 of file Special_Basic_Argument_T.h.
|
Definition at line 12 of file Special_Basic_Argument_T.inl.
00015 : x_ (x) 00016 {} |
|
Definition at line 24 of file Special_Basic_Argument_T.inl.
00025 { 00026 return this->x_; 00027 } |
|
Populate the given CORBA::Any result argument.
Reimplemented from TAO::Argument. Definition at line 32 of file Special_Basic_Argument_T.cpp.
00034 { 00035 Insert_Policy::any_insert (any, from_S (this->x_)); 00036 } |
|
Marshal the argument into the given CDR output stream.
Reimplemented from TAO::Argument. Definition at line 20 of file Special_Basic_Argument_T.cpp.
00021 {
00022 return cdr << from_S (this->x_);
00023 }
|
|
Definition at line 52 of file Special_Basic_Argument_T.h. |