Comment C++ code like C#

  • Thread starter Thread starter Torben Laursen
  • Start date Start date
T

Torben Laursen

Hi,

Is there a way to automatic comment C++ code just as for C# in visual studio

I ask since I would like to use the same syntax and it is very time
consuming to enter the base structor by hand.

Thanks Torben
 
Thanks Ben,

I will be upgrading to VS08 soon, do you know if it includes a method to
document C++ code?

Torben
 
I don't mind if VC2008 has a document tool for C++. Doxygen is powerful,
portable and easy to use. Also doxygen supports most of the xml comments used in
C#. BTW you can add a macro button to call doxygen automatically.

Regards

--
Cholo Lennon
Bs.As.
ARG
 
Cholo Lennon said:
I don't mind if VC2008 has a document tool for C++. Doxygen is powerful,
portable and easy to use. Also doxygen supports most of the xml comments
used in
C#. BTW you can add a macro button to call doxygen automatically.

Or doxycomment can probably be given a template for creating the xml format
comments, if you prefer to lock yourself into a Microsoft-specific format.
 
Back
Top