[Doxygen-users] templated hierarchy in 1.2.9.1
Brought to you by:
dimitri
From: Kris T. <kri...@cs...> - 2001-08-09 15:50:04
|
Hi I've downloaded 1.2.9.1. Indeed the template crash I experienced with 1.2.9 disappeared. Thanks Dimitri! However, my documented templated hierarchies are still not complete. I didn't try the HAVE_DOT=YES yet, but from the email I gathered that this should now give the same hierarchy as with HAVE_DOT=NO). Examples: Using this input: ----------------- //! B template <int n, class A> class B {}; //! B2 template <class A> class B2 : public B<2,A> {}; //! C template <class A> class C {}; //! C2 template <class A> class C2 : public C<A>{}; //! D class D {}; //! E template <class Base> class E: public Base{}; //! F class F : E<D> {}; //! fromD template <class A> class fromD : D {}; ----------------- doxygen generate now the following hierarchy ----------------- B< n, A > B2< A > C< A > C2< A > D fromD< A > E< Base > F ----------------- doxygen does not show that B2 is derived from B, neither that F is derived from E<D> (both of which 1.2.8.1 *did* show), nor that F is derived from D ((which 1.2.8.1 did not show either). Kris |