Forward referencing problem
   
    Michele Bini
     
    mbini@dada.it
       
    Tue, 17 Feb 1998 10:50:31 +0100
    
    
  
On Mon, 16 Feb 1998 14:07:31 +0100  "Fredrik Jonsson" 
<fredrik.jonsson@sea.ericsson.se> wrote:
> What is the recommended solution to circular reference problems
> in IDL? In c++ I would forward declare and make the inclusion in
> the implementation file but in IDL I dont know of a way to specify
> inclusion for the generated skeleton file
You can forward declare in IDL, too:
  interface foo;
  interface foo {
	  foo getAFoo();
  };
(In IDL the whole issue makes sense with interfaces only)
I don't understand why you should include the generated skeleton file, though.
-- 
                                   Michele Bini: mbini@dada.it