Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javadoc-like documentation for C/C++ libraries?

Tags:

c

javadoc

Is there such a thing as Javadoc-type documentation available for C/C++ libraries?

like image 579
James Raitsev Avatar asked Sep 05 '10 21:09

James Raitsev


People also ask

Does C++ have a Javadoc?

Does C++ have anything similar to javadoc? Yes. Here are a few (listed alphabetically by tool name): ccdoc supports javadoc-like syntax with various extensions.

Is Javadoc still used?

Javadoc is pretty much the accepted standard for documenting java code.


1 Answers

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.

like image 164
Tom Avatar answered Sep 21 '22 03:09

Tom