#include <Fixed_Size_SArgument_T.h>
Inheritance diagram for TAO::Out_Fixed_Size_SArgument_T< S, Insert_Policy >:
Public Member Functions | |
Out_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 void | interceptor_value (CORBA::Any *any) const |
Private Attributes | |
S | x_ |
Definition at line 118 of file Fixed_Size_SArgument_T.h.
|
Constructor.
Definition at line 42 of file Fixed_Size_SArgument_T.inl.
00043 {} |
|
Definition at line 49 of file Fixed_Size_SArgument_T.inl.
00050 { 00051 return this->x_; 00052 } |
|
Reimplemented from TAO::Argument. Definition at line 82 of file Fixed_Size_SArgument_T.cpp.
00084 { 00085 Insert_Policy::any_insert (any, this->x_); 00086 } |
|
Reimplemented from TAO::Argument. Definition at line 72 of file Fixed_Size_SArgument_T.cpp.
00073 { 00074 return cdr << this->x_; 00075 } |
|
Definition at line 144 of file Fixed_Size_SArgument_T.h. |