documentation generator for C++

  • Thread starter Thread starter Bruno Neves Pires Silva
  • Start date Start date
B

Bruno Neves Pires Silva

Hello, programmers.

Does Anyone know about any documentation generator for C++, like
ghostdoc for c# ?

Thanks in advance.
 
Bruno said:
Hello, programmers.

Does Anyone know about any documentation generator for C++, like
ghostdoc for c# ?

Thanks in advance.

Have you looked at Doxygen?
 
Hendrik said:
HTH,

Schobi


Oh, that's swell. I didn't know that Doxygen could actually generate
comments from comment templates and put them into the C++ source code,
as Ghostdoc does. I'll give it a look.

Regards.
 
Oh, that's swell. I didn't know that Doxygen could actually generate
comments from comment templates and put them into the C++ source code,
as Ghostdoc does. I'll give it a look.

Well, not exactly, but...

It does export a parse tree of your entire codebase (provided you turn on
documentation for uncommented functions) as XML, so you can easily write a
script to plug the function name, arguments, etc into a documentation
skeleton. You could probably automatically inject them into the source code
at the appropriate places too, as doxygen includes the definition line
number for each function and variable definition.
 
Back
Top