#include <Fixed_Array_Argument_T.h>
Inheritance diagram for TAO::Out_Fixed_Array_Argument_T< S_forany, Insert_Policy >:
Public Member Functions | |
Out_Fixed_Array_Argument_T (typename S_forany::_slice_type *&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_forany::_slice_type *& | arg (void) |
Private Attributes | |
S_forany | x_ |
Definition at line 104 of file Fixed_Array_Argument_T.h.
|
Definition at line 75 of file Fixed_Array_Argument_T.inl.
00076 : x_ (x) 00077 {} |
|
Definition at line 83 of file Fixed_Array_Argument_T.inl.
00084 { 00085 return this->x_.out (); 00086 } |
|
Demarshal the argument from the given CDR input stream.
Reimplemented from TAO::Argument. Definition at line 108 of file Fixed_Array_Argument_T.cpp.
00110 { 00111 return cdr >> this->x_; 00112 } |
|
Populate the given CORBA::Any result argument.
Reimplemented from TAO::Argument. Definition at line 120 of file Fixed_Array_Argument_T.cpp.
00121 { 00122 Insert_Policy::any_insert (any, this->x_); 00123 } |
|
Definition at line 116 of file Fixed_Array_Argument_T.h. |