14.6 NamedValue Member Functions
NamedValue is used only as an element of NVList, especially in the DII. NamedValue maintains an (optional) name, an any
value, and labeling flags. Legal flag values are CORBA::ARG_IN
, CORBA::ARG_OUT
, and CORBA::ARG_INOUT
.
The value in a NamedValue may be manipulated via standard
operations on any
.
The mapping of these member functions to C++ is as follows:
// C++
class NamedValue
{
public:
Flags flags() const;
const char * name() const;
Any * value() const;
};
Parent topic: CORBA API