[omniORB] A question about sequences

DSSol@aol.com DSSol@aol.com
Wed, 4 Aug 1999 07:48:33 EDT


I am attempting to compile the following code and am receiving an error.  Can 
anyone tell me what I am doing wrong or provide me with some example of 
passing a sequence as an out parameter that works with omniORB??

// Prototype
doSomething( MySequence *&parm );

MySequence_var seq;

doSomething( seq.out() );   // This will not compile because the seq.out() 
does not match the prototype

The IDL for this is:

doSomething( out MySequence parm );

Any help would be appreciated.
Thanks.
Tony Thompson