RE: [Doxygen-users] inheritance problem
Brought to you by:
dimitri
From: Glenn M. <gle...@vo...> - 2002-01-17 22:28:16
|
I could be way off base, so take this advice with a grain of salt. =20 I would create multiple doxygen projects, at least one for the TP and one for your stuff. Configure the projects so that they create tag files. (Assuming the inheritance is just one way), create a reference to the tag file from TP in the doxygen project for your stuff. =20 It is best to use multiple directories for multiple projects.=20 =20 Coming soon to a download near you are some Perl tools that I developed that will allow you to wrap the output of multiple doxygen projects (in addition to FM/Mif2Go or FM/WWP output) into a single HTML system. =20 Glenn -----Original Message----- From: Stephane Routelous [mailto:ste...@sy...] Sent: Thursday, January 17, 2002 3:16 PM To: dox...@li... Subject: [Doxygen-users] inheritance problem Hi, =20 I'm using a third party library in my code. My code is in E:\MyProject\inc and E:\MyProject\src The third party includes are in E:\ThirdParty\inc =20 In my config file,I have : INPUT =3D E:\MyProject\src E:\MyProject\inc INCLUDE_PATH =3D E:\MyProject\inc E:\ThirdParty\inc=20 =20 I have some classes which inherits from some third party classes =20 I have a Third party class (TP) =20 my code : =20 class A :public TP class B: public A class C : public TP class D : public C =20 I only have : =20 A +B C +D =20 I would like to have=20 TP +A +B +C +D =20 What am I doing wrong ? =20 Thanks, =20 Stephane |