CORBA Programming Reference
|
|
Returns a reference to a nil object.
CORBA::Object_ptr CORBA::Object::_nil();
This member function returns a nil object reference. To test whether a given object is nil, use the appropriate CORBA::is_nil member function (see the section CORBA::release). Calling the CORBA:is_nil routine on any _nil member function always yields CORBA_TRUE.
Returns a nil object reference.
CORBA::Object_ptr op = CORBA::Object::_nil();
|
|
|