admin管理员组

文章数量:1129200

I want to generate UML class diagram using doxygen from C++ sources, but for some reason some of the fields were added into connecting edge and not into main class box. Source code is simple like this:

class A
{
    float32 a1;
    float32 a2;
    float32 a3;
    float32 a4;
    float32 a5;
    float32 a6;
    float32 a7;
    float32 a8;
    float32 a9;
    float32 a77;
    float32 a88;
    float32 a99;
}

Update: when I asked original question version used was 1.13.1, now I tried earlier one 1.10.0 and behavior is the same

Another update: I think I found what I wanted to do using Doxyfile config, this option make class diagram looks much better:

HIDE_UNDOC_RELATIONS   = YES

本文标签: cHow to make doxygen generate full list of fields in class diagramStack Overflow