#include <Fixed_Size_SArgument_T.h>
Inheritance diagram for TAO::Inout_Fixed_Size_SArgument_T< S, Insert_Policy >:
Public Member Functions | |
Inout_Fixed_Size_SArgument_T (void) | |
Constructor. | |
S & | arg (void) |
@c TAO::Argument Method Overrides | |
TAO::Argument method overrides specific to the type of operation argument represented by this class.
| |
virtual CORBA::Boolean | marshal (TAO_OutputCDR &cdr) |
virtual CORBA::Boolean | demarshal (TAO_InputCDR &) |
virtual void | interceptor_value (CORBA::Any *any) const |
Private Attributes | |
S | x_ |
Definition at line 79 of file Fixed_Size_SArgument_T.h.
|
Constructor.
Definition at line 22 of file Fixed_Size_SArgument_T.inl.
00023 { 00024 } |
|
Definition at line 30 of file Fixed_Size_SArgument_T.inl.
00031 { 00032 return this->x_; 00033 } |
|
Reimplemented from TAO::Argument. Definition at line 48 of file Fixed_Size_SArgument_T.cpp.
00050 { 00051 return cdr >> this->x_; 00052 } |
|
Reimplemented from TAO::Argument. Definition at line 59 of file Fixed_Size_SArgument_T.cpp.
00061 { 00062 Insert_Policy::any_insert (any, this->x_); 00063 } |
|
Reimplemented from TAO::Argument. Definition at line 40 of file Fixed_Size_SArgument_T.cpp.
00041 { 00042 return cdr << this->x_; 00043 } |
|
Definition at line 106 of file Fixed_Size_SArgument_T.h. |