简体   繁体   中英

Graphviz + Doxygen to generate UML class diagrams

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.

在此处输入图片说明

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.

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. eg, " C:/Program Files (x86)/Graphviz2.32/bin "

Hope it helps, Anit

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.

实现您的结果的可能解决方案是使用plantuml ,但它需要更多的文档工作。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM