Template class for IN stub argument of fixed size IDL types. More...
#include <Fixed_Size_Argument_T.h>


Public Member Functions | |
| In_Fixed_Size_Argument_T (S const &x) | |
| virtual CORBA::Boolean | marshal (TAO_OutputCDR &cdr) |
| Marshal the argument into the given CDR output stream. | |
| S const & | arg (void) const |
Protected Attributes | |
| S const * | x_ |
Template class for IN stub argument of fixed size IDL types.
Definition at line 36 of file Fixed_Size_Argument_T.h.
| TAO::In_Fixed_Size_Argument_T< S, Insert_Policy >::In_Fixed_Size_Argument_T | ( | S const & | x | ) | [inline] |
Definition at line 11 of file Fixed_Size_Argument_T.inl.
00012 : x_ (&x) 00013 {}
| const S & TAO::In_Fixed_Size_Argument_T< S, Insert_Policy >::arg | ( | void | ) | const [inline] |
Definition at line 19 of file Fixed_Size_Argument_T.inl.
00020 { 00021 return *this->x_; 00022 }
| CORBA::Boolean TAO::In_Fixed_Size_Argument_T< S, Insert_Policy >::marshal | ( | TAO_OutputCDR & | cdr | ) | [inline, virtual] |
Marshal the argument into the given CDR output stream.
true. Reimplemented from TAO::Argument.
Definition at line 17 of file Fixed_Size_Argument_T.cpp.
00018 { 00019 return cdr << *this->x_; 00020 }
S const* TAO::In_Fixed_Size_Argument_T< S, Insert_Policy >::x_ [protected] |
Definition at line 48 of file Fixed_Size_Argument_T.h.
1.6.1