#include <Special_Basic_Argument_T.h>
Inheritance diagram for TAO::Out_Special_Basic_Argument_T< S, to_S, from_S, Insert_Policy >:
Public Member Functions | |
Out_Special_Basic_Argument_T (S &x) | |
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 114 of file Special_Basic_Argument_T.h.
|
Definition at line 72 of file Special_Basic_Argument_T.inl.
00073 : x_ (x) 00074 {} |
|
Definition at line 82 of file Special_Basic_Argument_T.inl.
00083 { 00084 return this->x_; 00085 } |
|
Demarshal the argument from the given CDR input stream.
Reimplemented from TAO::Argument. Definition at line 114 of file Special_Basic_Argument_T.cpp.
00117 {
00118 return cdr >> to_S (this->x_);
00119 }
|
|
Populate the given CORBA::Any result argument.
Reimplemented from TAO::Argument. Definition at line 128 of file Special_Basic_Argument_T.cpp.
00130 { 00131 Insert_Policy::any_insert (any, from_S (this->x_)); 00132 } |
|
Definition at line 126 of file Special_Basic_Argument_T.h. |