Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I come from writing PHP code, and there I was using PHPDoc standards, in order to write comments in the code.

Now I'm trying to learn C/C++ (I'm using Visual Studio 2005), but I also wish to write good comments.

Is any standard to use or/and a tool which will automatize the documentation construction later?

many thx:)

share|improve this question

6 Answers

up vote 7 down vote accepted

Try using Doxygen for C/C++ documentation. I guess there is an add-on for Visual Studio also. Check out http://www.visualstudiogallery.com/ExtensionDetails.aspx?ExtensionID=7912ccf4-60b8-4132-bace-5acaceb7233b

cheers

share|improve this answer

Try reading documenting for Doxygen. It can create documentation according to comments as well as cute little diagrams of your program structure with Graphviz.

share|improve this answer

There is no standard, but there are many tools - take a look at Doxygen. The style of comments you use will be dependent on the tool you select.

share|improve this answer

I don't know about a standard with global acceptance but in most cases google convensions are accepted. It will be useful to you. Google Code Convensions

share|improve this answer
And in lot of cases nor - see this discussion for a lot of disagreement groups.google.com/group/comp.lang.c++.moderated/browse_thread/… – anon May 4 '09 at 7:21

Doxygen is great, or you can use the built in XmlDoc format within Visual Studio. There are a number of good tools you can then use to convert either of these formats into external (e.g. html or pdf) documentation.

Doxygen is covered above, but here's a link about XmlDoc format.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.