boost doxygen documentation
I have been trying to generate doxygen documentation for boost, as a way to browse source tree 开发者_如何学Cand have man documentation.
However, doxygen has been running for past week or so on IBM power5, and I have no idea how much longer (right now I am on boost_1_43_0/boost/mpl/
).
Is there prebuilt doxygen documentation, if not, is there any way to speed up documentation generation without losing cross-referencing in code browser?
I have been using older documentation located on tena-sda, but that is quite old.
thank you
I agree with you. However, doxygen cannot parse the complexity of C++ that Boost utilizes. Best bet is for you to grock (search) the source with a powerful IDE.
Even if it was working using doxygen
to browse a source code is not really relevant. Here are two alternatives that I use daily :
grep
is your friend ! It is very efficient and fast to find what you want in a source code, even if this one is large- Make development with an IDE that support live parsing like NetBeans, then you will have cross-references inside your whole code, even across libraries (like Boost) that it uses, inside the editor itself.
精彩评论