[Doxygen-users] problem with inheritance and namespaces
Brought to you by:
dimitri
From: Pablo A. <alv...@te...> - 2001-05-30 17:32:21
|
Hi all! I have the following problem, and I think is a bug: -------------------------------------------------- namespace ns { // ##### /** * the parent template class = */ template <class T> class A { }; = /** * alias for A<int> */ typedef A<int> iA; = /** * inherited class */ class B : public iA { }; = } // ##### --------------------------------------------------- If I generate the documentation for this code, the template class B will not be "connected" with the class A = If the lines marked with "// #####" are removed, then everything is fine and the inheritance tree is build correctly: class B inherits from A. Does anyone knows a workaround for this, or can this be fixed? I used the last version in the CVS-repository (the configuration file has a 1.2.7-20010524 label) Regards Pablo -- = Dipl.-Ing. Pablo Alvarado <alv...@te...> Lehrstuhl f=FCr Technische Informatik, RWTH-Aachen Ahornstr.55 Phone : ++49 241 80 3635 D-52074 Aachen Fax : ++49 241 88 88308 Germany |