IDL Complex Type
object reference

The CORBA::Object indicates that the method returns a remote reference.  It maps to a Delphi class called Org.Omg.CORBA.Object. 

Note : Microsoft .Net also provides a remote object called MarshallByRefObject.  However Compact .Net framework doesn't include this object in standard packages.  MarshallByRefObject is useful only for .Net remoting.  Hence, MarshallByRefObject is not used in our CORBA implementation.

// CORBA IDL
object something();
{ Delphi }

-- TBD --