C++ Equivalent to Javadocs?

Started by
5 comments, last by MasterViruzprdr 17 years, 9 months ago
Hi, I was wondering if there was a C++ equivalent to Javadocs for the C++ and/or C standard library? Thanks in advance for the help.
Advertisement
Are you asking for documentation for existing standard library functions and classes or are you asking for a mechanism to generate documentation from C and C++ source code? For the former, there's several references you can use such as MSDN, most good C++ programming references such as "The C++ Standard Library" by Nicolai Josuttis or the actual standards themselves ISO/IEC 9899 and ISO/IEC 14882.
Mainly I was asking for documentation of standard library functions.

Thanks for a quick reply :D.
MSDN integration with Visual Studio (windows)
or the 'man' pages (linux)
Quote:Original post by MasterViruzprdr
Hi, I was wondering if there was a C++ equivalent to Javadocs for the C++ and/or C standard library?


You mean something like this ?
http://www.sgi.com/tech/stl/table_of_contents.html
Have you tried Doxygen:

http://www.stack.nl/~dimitri/doxygen/
Yes, guys, these are exactly what I was looking for, Thanks!!

Also, while searching around I found another one www.cpprefrence.com.

This topic is closed to new replies.

Advertisement