#include <Fixed_Array_Argument_T.h>
Inheritance diagram for TAO::Ret_Fixed_Array_Argument_T< S_var, S_forany, Insert_Policy >:


Public Member Functions | |
| Ret_Fixed_Array_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_forany::_slice_type *& | arg (void) |
| S_forany::_slice_type * | excp (void) |
| S_forany::_slice_type * | retn (void) |
Private Attributes | |
| S_var | x_ |
Definition at line 107 of file Fixed_Array_Argument_T.h.
|
||||||||||
|
Definition at line 84 of file Fixed_Array_Argument_T.inl.
00085 {}
|
|
||||||||||
|
Definition at line 92 of file Fixed_Array_Argument_T.inl.
00093 {
00094 return this->x_._retn_arg ();
00095 }
|
|
||||||||||
|
Demarshal the argument from the given CDR input stream.
Reimplemented from TAO::Argument. Definition at line 103 of file Fixed_Array_Argument_T.cpp. References ACE_ALLOCATOR_RETURN.
00104 {
00105 typedef TAO::Array_Traits<S_forany> ARRAY_TRAITS;
00106 typename S_forany::_slice_type * tmp_ptr = 0;
00107 ACE_ALLOCATOR_RETURN (tmp_ptr,
00108 ARRAY_TRAITS::alloc (),
00109 false);
00110 this->x_ = tmp_ptr;
00111 S_forany tmp (this->x_.ptr ());
00112 return cdr >> tmp;
00113 }
|
|
||||||||||
|
Definition at line 102 of file Fixed_Array_Argument_T.inl.
00103 {
00104 return this->x_.ptr ();
00105 }
|
|
||||||||||
|
Populate the given CORBA::Any result argument.
Reimplemented from TAO::Argument. Definition at line 122 of file Fixed_Array_Argument_T.cpp.
00123 {
00124 Insert_Policy::any_insert (any, S_forany (this->x_.ptr ()));
00125 }
|
|
||||||||||
|
Definition at line 112 of file Fixed_Array_Argument_T.inl.
00113 {
00114 return this->x_._retn ();
00115 }
|
|
|||||
|
Definition at line 122 of file Fixed_Array_Argument_T.h. |
1.3.6