#include <Special_Basic_SArgument_T.h>
Inheritance diagram for TAO::Inout_Special_Basic_SArgument_T< S, to_S, from_S, Insert_Policy >:
Public Member Functions | |
Inout_Special_Basic_SArgument_T (void) | |
virtual CORBA::Boolean | marshal (TAO_OutputCDR &cdr) |
virtual CORBA::Boolean | demarshal (TAO_InputCDR &) |
virtual void | interceptor_value (CORBA::Any *any) const |
S & | arg (void) |
Private Attributes | |
S | x_ |
Definition at line 65 of file Special_Basic_SArgument_T.h.
|
Definition at line 36 of file Special_Basic_SArgument_T.inl.
00037 { 00038 } |
|
Definition at line 46 of file Special_Basic_SArgument_T.inl.
00047 { 00048 return this->x_; 00049 } |
|
Reimplemented from TAO::Argument. Definition at line 63 of file Special_Basic_SArgument_T.cpp.
00066 {
00067 return cdr >> to_S (this->x_);
00068 }
|
|
Reimplemented from TAO::Argument. Definition at line 78 of file Special_Basic_SArgument_T.cpp.
00079 { 00080 Insert_Policy::any_insert (any, from_S (this->x_)); 00081 } |
|
Reimplemented from TAO::Argument. Definition at line 51 of file Special_Basic_SArgument_T.cpp.
00054 {
00055 return cdr << from_S (this->x_);
00056 }
|
|
Definition at line 78 of file Special_Basic_SArgument_T.h. |