#include <Fixed_Array_SArgument_T.h>
Inheritance diagram for TAO::Inout_Fixed_Array_SArgument_T< S_forany, Insert_Policy >:
Public Member Functions | |
Inout_Fixed_Array_SArgument_T (void) | |
virtual CORBA::Boolean | marshal (TAO_OutputCDR &cdr) |
virtual CORBA::Boolean | demarshal (TAO_InputCDR &cdr) |
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 Fixed_Array_SArgument_T.h.
|
Definition at line 33 of file Fixed_Array_SArgument_T.inl.
00034 { 00035 } |
|
Definition at line 42 of file Fixed_Array_SArgument_T.inl.
00043 {
00044 S_forany tmp (this->x_);
00045 return tmp.inout ();
00046 }
|
|
Reimplemented from TAO::Argument. Definition at line 54 of file Fixed_Array_SArgument_T.cpp.
00055 {
00056 S_forany tmp (this->x_);
00057 return cdr >> tmp;
00058 }
|
|
Reimplemented from TAO::Argument. Definition at line 66 of file Fixed_Array_SArgument_T.cpp.
00068 { 00069 Insert_Policy::any_insert (any, S_forany (this->x_)); 00070 } |
|
Reimplemented from TAO::Argument. Definition at line 44 of file Fixed_Array_SArgument_T.cpp.
00045 {
00046 return cdr << S_forany (this->x_);
00047 }
|
|
Definition at line 73 of file Fixed_Array_SArgument_T.h. |