#include <Basic_Argument_T.h>
Inheritance diagram for TAO::Ret_Basic_Argument_T< S, Insert_Policy >:
Public Member Functions | |
Ret_Basic_Argument_T (void) | |
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) |
S | excp (void) |
S | retn (void) |
Private Attributes | |
S | x_ |
Definition at line 127 of file Basic_Argument_T.h.
|
Definition at line 72 of file Basic_Argument_T.inl.
00073 { 00074 } |
|
Definition at line 80 of file Basic_Argument_T.inl.
00081 { 00082 return this->x_; 00083 } |
|
Demarshal the argument from the given CDR input stream.
Reimplemented from TAO::Argument. Definition at line 114 of file Basic_Argument_T.cpp.
00115 { 00116 return cdr >> this->x_; 00117 } |
|
Definition at line 89 of file Basic_Argument_T.inl.
00090 { 00091 return this->x_; 00092 } |
|
Populate the given CORBA::Any result argument.
Reimplemented from TAO::Argument. Definition at line 124 of file Basic_Argument_T.cpp.
00125 { 00126 Insert_Policy::any_insert (any, this->x_); 00127 } |
|
Definition at line 98 of file Basic_Argument_T.inl.
00099 { 00100 return this->x_; 00101 } |
|
Definition at line 142 of file Basic_Argument_T.h. |