Creating Graphs and Charts with Doxygen

I need to create class diagrams or a graph of a C ++ project using Doxygen, I installed it on Ubntu 12.04 as follows:

sudo apt-get install doxygen sudo apt-get install doxygen-gui 

Now I don’t know how to run gui or how to generate graphs from the verification code, the manual does not help.

+6
source share
1 answer

you need to install graphviz for charts

 sudo apt-get install graphviz sudo apt-get install doxygen-gui 

how to run doxygen gui type in terminal type

 doxywizard 
+8
source

Source: https://habr.com/ru/post/946690/


All Articles