#include <Var_Size_Argument_T.h>
Inheritance diagram for TAO::Out_Var_Size_Argument_T< S, Insert_Policy >:
Public Member Functions | |
Out_Var_Size_Argument_T (typename S::_out_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 *& | arg (void) |
Private Attributes | |
S *& | x_ |
Definition at line 104 of file Var_Size_Argument_T.h.
ACE_INLINE TAO::Out_Var_Size_Argument_T< S, Insert_Policy >::Out_Var_Size_Argument_T | ( | typename S::_out_type | x | ) |
ACE_INLINE S *& TAO::Out_Var_Size_Argument_T< S, Insert_Policy >::arg | ( | void | ) |
Definition at line 66 of file Var_Size_Argument_T.inl.
References TAO::Out_Var_Size_Argument_T< S, Insert_Policy >::x_.
00067 { 00068 return this->x_; 00069 }
CORBA::Boolean TAO::Out_Var_Size_Argument_T< S, Insert_Policy >::demarshal | ( | TAO_InputCDR & | ) | [virtual] |
Demarshal the argument from the given CDR input stream.
true
. Reimplemented from TAO::Argument.
Definition at line 100 of file Var_Size_Argument_T.cpp.
References TAO::Out_Var_Size_Argument_T< S, Insert_Policy >::x_.
00103 { 00104 #if defined (ACE_HAS_NEW_NOTHROW) 00105 this->x_ = new (ACE_nothrow) S; 00106 #else 00107 this->x_ = new S; 00108 #endif /* ACE_HAS_NEW_NOTHROW */ 00109 return cdr >> *this->x_; 00110 }
void TAO::Out_Var_Size_Argument_T< S, Insert_Policy >::interceptor_value | ( | CORBA::Any * | any | ) | const [virtual] |
Populate the given CORBA::Any result argument.
Reimplemented from TAO::Argument.
Definition at line 117 of file Var_Size_Argument_T.cpp.
S*& TAO::Out_Var_Size_Argument_T< S, Insert_Policy >::x_ [private] |
Definition at line 116 of file Var_Size_Argument_T.h.
Referenced by TAO::Out_Var_Size_Argument_T< S, Insert_Policy >::arg(), and TAO::Out_Var_Size_Argument_T< S, Insert_Policy >::demarshal().