[Doxygen-develop] Re: A wish: show only files included from a given start file
Brought to you by:
dimitri
From: Fabian C. <Cen...@in...> - 2003-08-20 09:53:36
|
>I would like to have a new configuration parameter in which I would mention >the main header file. The generated documentation would contain only >constructs from the main header file and all the files transitively >#include-d from it. Other files in the input file set would be left out from >generated documentation. > >Let's discuss the feature: should I (or anyone else) implement it? Or can I >solve it in another way (without having to somehow edit all the files in >directory). I understand that you don't want to edit all the files. But it's already possible to achieve this if you're willing to. You can #ifdef various sections of the code and then switch on or off these sections in the config of doxygen. Like that you can build developer docs, user docs, API docs... It may already be enough if you #ifdef the #includes of other files. Or if you just feed the needed files to doxygen and not all of them. bye Fabi |