[Enterprise Extensions only]

Any::_nil

Overview Returns a nil CORBA::Any reference.
Original class CORBA::Any


Intended Usage

This method is intended to be used by client and server applications to create a nil Any reference.

IDL Syntax

static CORBA::Any_ptr _nil ();

Return value

CORBA::Any_ptr
A nil Any reference.

Example

  #include "corba.h"
  ...
  CORBA::Any* any_ptr;
  any_ptr = CORBA::Any::_nil();
  ...