Skip to content Skip to sidebar Skip to footer

C++ Code Structure Into Html Files

I work on unix. I have my complete source code in unix in the form of building blocks and modules. Like headers,sources files,make files etc. I can copy all the files with the same

Solution 1:

The term you're probably looking for is "documentation generator". You're specifically interested in ones that output HTML files.

Doxygen is popular, but if you want a master comparison list of documentation generators Wikipedia has a summary:

http://en.wikipedia.org/wiki/Comparison_of_documentation_generators

Looking at the output generated by the different programs (on projects that use them) will probably inform your choice of which meets your needs.

Solution 2:

You can use doxygen to generate your documentation. In its basic form it will generate what you need but to add comments that appear in the final html you will need to use special style comments.

Post a Comment for "C++ Code Structure Into Html Files"