[omniORB] returning the Interface.
Rajshekhar Kishtaiah Chintapalli
rajshekhar.chintapalli@wipro.com
Mon, 25 Jun 2001 09:21:43 +0530
Hi,
I have an IDL file that has the following .
interface IAface
{
};
interface IBFace
{
unsigned long Createfaces();
unsigned long PutFaces(in IAface afacein);
unsigned long GetFace(in long objID,out IAface afaceout);
};
On compilation of this ,i have to implement the follwing functions
virtual CORBA::ULong Createfaces();
virtual CORBA::ULong PutFaces(IAface_ptr afacein);
virtual CORBA::ULong GetFace(CORBA::Long objID, _CORBA_ObjRef_OUT_arg<
_objref_IAface, IAface_Helper > afaceout);
With first two its OK, but how to go about implementing the GetFace()
function.
Thanks,
Raj