Overview | Adds an in/out argument to the named value list of a DII request. |
Original class | CORBA::Request |
Intended Usage
The add_inout_arg method is used by a client program to populate the named value list associated with a CORBA::Request, which was created by calling CORBA::Object::_request. When called without a parameter, the add_in_arg method adds an element to the end of a CORBA::NVList by calling CORBA::NVList::add with argument passing mode CORBA::ARG_INOUT. When passed a string, the add_inout_arg method adds an element to the end of a CORBA::NVList by calling CORBA::NVList::add_item with the input argument name and argument passing mode CORBA::ARG_INOUT.
Syntax
CORBA::Any &add_inout_arg(); CORBA::Any &add_inout_arg(const char *name);
Input parameters
Return values