#include <Special_Basic_Argument_T.h>
Inheritance diagram for TAO::Ret_Special_Basic_Argument_T< S, to_S, from_S, Insert_Policy >:
Public Member Functions | |
Ret_Special_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 95 of file Special_Basic_Argument_T.inl.
00096 { 00097 } |
|
Definition at line 105 of file Special_Basic_Argument_T.inl.
00106 { 00107 return this->x_; 00108 } |
|
Demarshal the argument from the given CDR input stream.
Reimplemented from TAO::Argument. Definition at line 143 of file Special_Basic_Argument_T.cpp.
00146 {
00147 return cdr >> to_S (this->x_);
00148 }
|
|
Definition at line 116 of file Special_Basic_Argument_T.inl.
00117 { 00118 return this->x_; 00119 } |
|
Populate the given CORBA::Any result argument.
Reimplemented from TAO::Argument. Definition at line 157 of file Special_Basic_Argument_T.cpp.
00159 { 00160 Insert_Policy::any_insert (any, from_S (this->x_)); 00161 } |
|
Definition at line 127 of file Special_Basic_Argument_T.inl.
00128 { 00129 return this->x_; 00130 } |
|
Definition at line 154 of file Special_Basic_Argument_T.h. |