#include <Argument.h>
Inheritance diagram for TAO::Argument:
Public Member Functions | |
virtual | ~Argument (void) |
Destructor. | |
virtual CORBA::Boolean | marshal (TAO_OutputCDR &cdr) |
Marshal the argument into the given CDR output stream. | |
virtual CORBA::Boolean | demarshal (TAO_InputCDR &) |
Demarshal the argument from the given CDR input stream. | |
virtual Argument * | clone (void) |
Template method to clone a TAO Argument. | |
Portable Interceptor Related Methods | |
These methods are only used when setting up PortableInterceptor::RequestInfo instances with the appropriate operation-specific parameter list and return value, if either or both exist. | |
virtual void | interceptor_value (CORBA::Any *) const |
Populate the given CORBA::Any result argument. | |
virtual CORBA::ParameterMode | mode (void) const=0 |
Get the parameter mode of this argument. |
Argument
subclasses override the virtual methods appropriately. For example, a stub "IN" argument class template would override the marshal()
method, but wouldn't need to override the demarshal()
method.
Definition at line 52 of file Argument.h.
|
Destructor.
Definition at line 9 of file Argument.cpp.
00010 { 00011 } |
|
|
|
|
|
Get the parameter mode of this argument.
Implemented in TAO::InArgument, TAO::InoutArgument, TAO::OutArgument, and TAO::RetArgument. |