#include <Fixed_Size_SArgument_T.h>
Inheritance diagram for TAO::Ret_Fixed_Size_SArgument_T< S, Insert_Policy >:
Public Member Functions | |
Ret_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 157 of file Fixed_Size_SArgument_T.h.
|
Constructor.
Definition at line 59 of file Fixed_Size_SArgument_T.inl.
00060 {} |
|
Definition at line 66 of file Fixed_Size_SArgument_T.inl.
00067 { 00068 return this->x_; 00069 } |
|
Reimplemented from TAO::Argument. Definition at line 105 of file Fixed_Size_SArgument_T.cpp.
00107 { 00108 Insert_Policy::any_insert (any, this->x_); 00109 } |
|
Reimplemented from TAO::Argument. Definition at line 95 of file Fixed_Size_SArgument_T.cpp.
00096 { 00097 return cdr << this->x_; 00098 } |
|
Definition at line 183 of file Fixed_Size_SArgument_T.h. |