#include <Var_Size_Argument_T.h>
Inheritance diagram for TAO::In_Var_Size_Argument_T< S, Insert_Policy >:
Public Member Functions | |
In_Var_Size_Argument_T (S const &x) | |
virtual CORBA::Boolean | marshal (TAO_OutputCDR &cdr) |
Marshal the argument into the given CDR output stream. | |
virtual void | interceptor_value (CORBA::Any *any) const |
Populate the given CORBA::Any result argument. | |
S const & | arg (void) const |
Protected Attributes | |
const S * | x_ |
Definition at line 36 of file Var_Size_Argument_T.h.
|
Definition at line 10 of file Var_Size_Argument_T.inl.
00011 : x_ (&x) 00012 { 00013 } |
|
Definition at line 19 of file Var_Size_Argument_T.inl.
00020 { 00021 return *this->x_; 00022 } |
|
Populate the given CORBA::Any result argument.
Reimplemented from TAO::Argument. Definition at line 27 of file Var_Size_Argument_T.cpp.
00030 { 00031 Insert_Policy::any_insert (any, *this->x_); 00032 } |
|
Marshal the argument into the given CDR output stream.
Reimplemented from TAO::Argument. Definition at line 17 of file Var_Size_Argument_T.cpp.
00018 { 00019 return cdr << *this->x_; 00020 } |
|
Definition at line 48 of file Var_Size_Argument_T.h. |