Search code examples
c++classmodeling

Software for browsing classes in a C/C++ project


I have seen that some developers have a graphical representation of all their classes in an image file which comes with their project. How can I myself create these graphics?

Basically they show what classes exist in a file and how these files relate to each other.

Thanks


Solution

  • Doxygen allows you to generate interactive class diagrams. Check out this page: http://www.doxygen.nl/manual/diagrams.html how to set it up.