#include <Basic_Argument_T.h>
Inheritance diagram for TAO::Inout_Basic_Argument_T< S, Insert_Policy >:
Public Member Functions | |
Inout_Basic_Argument_T (S &x) | |
virtual CORBA::Boolean | marshal (TAO_OutputCDR &cdr) |
Marshal the argument into the given CDR output stream. | |
virtual CORBA::Boolean | demarshal (TAO_InputCDR &) |
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 & | arg (void) |
Private Attributes | |
S & | x_ |
Definition at line 80 of file Basic_Argument_T.h.
|
Definition at line 36 of file Basic_Argument_T.inl.
00037 : x_ (x) 00038 {} |
|
Definition at line 44 of file Basic_Argument_T.inl.
00045 { 00046 return this->x_; 00047 } |
|
Demarshal the argument from the given CDR input stream.
Reimplemented from TAO::Argument. Definition at line 70 of file Basic_Argument_T.cpp.
00071 { 00072 return cdr >> this->x_; 00073 } |
|
Populate the given CORBA::Any result argument.
Reimplemented from TAO::Argument. Definition at line 80 of file Basic_Argument_T.cpp.
00081 { 00082 Insert_Policy::any_insert (any, this->x_); 00083 } |
|
Marshal the argument into the given CDR output stream.
Reimplemented from TAO::Argument. Definition at line 62 of file Basic_Argument_T.cpp.
00063 { 00064 return cdr << this->x_; 00065 } |
|
Definition at line 93 of file Basic_Argument_T.h. |