#include <Fixed_Size_SArgument_T.h>
Inheritance diagram for TAO::In_Fixed_Size_SArgument_T< S, Insert_Policy >:
Public Member Functions | |
S const & | arg (void) const |
Retrieve underlying argument. | |
@c TAO::Argument Method Overrides | |
TAO::Argument method overrides specific to the type of operation argument represented by this class.
| |
virtual CORBA::Boolean | demarshal (TAO_InputCDR &cdr) |
virtual void | interceptor_value (CORBA::Any *any) const |
Private Attributes | |
S | x_ |
Reference to the "IN" argument. |
Skeleton class template for operation "IN" arguments of fixed size IDL types.
Definition at line 40 of file Fixed_Size_SArgument_T.h.
|
Retrieve underlying argument.
Definition at line 11 of file Fixed_Size_SArgument_T.inl.
00012 { 00013 return this->x_; 00014 } |
|
Reimplemented from TAO::Argument. Definition at line 17 of file Fixed_Size_SArgument_T.cpp.
00018 { 00019 return cdr >> this->x_; 00020 } |
|
Reimplemented from TAO::Argument. Definition at line 27 of file Fixed_Size_SArgument_T.cpp.
00029 { 00030 Insert_Policy::any_insert (any, this->x_); 00031 } |
|
Reference to the "IN" argument.
Definition at line 66 of file Fixed_Size_SArgument_T.h. |