Graphviz + Doxygen to generate UML class diagrams

僤鯓⒐⒋嵵緔 提交于 2019-12-17 07:11:11

问题


I want to use Graphviz + Doxygen to generate a class diagram based on C++ code. This works already as Doxygen comes with a native DOT support; but is it possible, to produce a UML-like output with the corresponding access modificators (public, private etc.), return and parameter types of the class methods, similar to the diagram below?

I'm aware of thread How to use doxygen to create UML class diagrams from C++ source, but it doesn't answer the question, though.


回答1:


Create the following source file example.cpp:

class Animal
{
  public:
    void die();
    string name;
    int age;
};

class Dog : public Animal
{
  public:
    void bark();
};

class Cat : public Animal
{
  public:
    void meow();
};

run doxygen -g and change the following options of the generated Doxyfile:

EXTRACT_ALL            = YES
HAVE_DOT               = YES
UML_LOOK               = YES

run doxygen and look at the output for the Animal class, it should be the similar as the above picture, although doxygen will not show the return types of the methods and fields.




回答2:


I had similar problem its successfully solved now.

Following are the steps(assuming that you are using GUI version of Doxygen-Doxywizard)

  1. Click on Expert button

  2. Go to Dot tab and select the DOT_PATH. Browse the folder where you have installed the program. e.g., " C:/Program Files (x86)/Graphviz2.32/bin "

Hope it helps, Anit




回答3:


Try Doxygraph!

Doxygraph is a collection of tools to automate reverse engineering UML class diagrams from your project's source code, and present them as interactive web apps.

It relies on Doxygen to parse your source code and create an intermediate XML representation of the information it collects, so it supports all the same programming languages that Doxygen supports: C, C++, C#, Objective C, Java, Python, PHP, Tcl, D, IDL, VHDL, and Fortran.

You need to read the README from the cloned Project.




回答4:


A possible solution to achieve your result is to use plantuml, but it requires more work on documentation.



来源:https://stackoverflow.com/questions/9484879/graphviz-doxygen-to-generate-uml-class-diagrams

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!