#include <Var_Array_SArgument_T.h>
Inheritance diagram for TAO::Inout_Var_Array_SArgument_T< S_forany, Insert_Policy >:
Public Member Functions | |
Inout_Var_Array_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_forany::_slice_type * | arg (void) |
Private Attributes | |
S_forany::_array_type | x_ |
Definition at line 60 of file Var_Array_SArgument_T.h.
|
Definition at line 32 of file Var_Array_SArgument_T.inl.
00033 { 00034 } |
|
Definition at line 40 of file Var_Array_SArgument_T.inl.
00041 {
00042 S_forany tmp (this->x_);
00043 return tmp.inout ();
00044 }
|
|
Reimplemented from TAO::Argument. Definition at line 53 of file Var_Array_SArgument_T.cpp.
00054 {
00055 S_forany tmp (this->x_);
00056 return cdr >> tmp;
00057 }
|
|
Reimplemented from TAO::Argument. Definition at line 65 of file Var_Array_SArgument_T.cpp.
00067 { 00068 typedef typename S_forany::_slice_type slice_type; 00069 Insert_Policy::any_insert ( 00070 any, 00071 S_forany (const_cast <slice_type *>(this->x_)) 00072 ); 00073 } |
|
Reimplemented from TAO::Argument. Definition at line 44 of file Var_Array_SArgument_T.cpp.
00045 {
00046 return cdr << S_forany (this->x_);
00047 }
|
|
Definition at line 73 of file Var_Array_SArgument_T.h. |