Javadoc-like documentation for C/C++ libraries?
Is there such a thing a开发者_运维技巧s Javadoc-type documentation available for C/C++ libraries?
Yes, doxygen for documenting your code.
If you mean documentation of existing libraries :
For the STL, check out the sgi site.
For a general c/ c++ reference see here.
For a specific library, check its site.
You can generate the chm book for your code by combining the doxygen with htmlhelp.exe. I use codeblocks, this has the easy wizard to produce the diagrams as well as the chmbook.
精彩评论