C++ documentation system

Started by
3 comments, last by Qw3r7yU10p! 19 years, 4 months ago
Hi, I'd like a form of documentation for my C++ code where I can put lists of parameters of functions and an explanation of each of them, and where I can make lists of variables and functions of classes and add an explanation to each of them. For java there's javadoc, but is there also something like it for C++? I don't even need a converter to convert the comment of the code to html or something, I'm actually looking for a good standard to comment all my code.
Advertisement
Try doxygen http://www.stack.nl/~dimitri/doxygen/
Try NDoc, you can output as Java Documentation, MSDN Documetation, HTML Help Documentation or LateX.

its here
*nods agreement at Doxygen* That's been around for a while.

NDoc does sound cool though.
Anything posted is personal opinion which does not in anyway reflect or represent my employer. Any code and opinion is expressed “as is” and used at your own risk – it does not constitute a legal relationship of any kind.
Quote:Original post by KH
Try doxygen http://www.stack.nl/~dimitri/doxygen/

This topic is closed to new replies.

Advertisement