[GCC-XML]Nested classes

Christian Szegedy szegedy at or . uni-bonn . de
Wed, 29 May 2002 16:07:41 +0200


After succeding in building the gccxml - thanks Brad! - I have the first 
real problem.
I wanted to extract a class diagramm out of some include files.

The problem I encountered is that gccxml does not seem to extract tags for
not referenced nested classes. E.g. the XML file for

class A
{
   class B
   {
       void f();
   } ;

   enum E
   {
      x
   };
};

contains only tags the root namespace, class A and its constructor.
Do I miss something?

Thanks in advancee, Christian