clang-uml

clang-uml

init

1
2
3
4
5
# init .clang-uml file
clang-uml --init

# use specify config file
clang-uml -c /path/to/configFile

generate PlantUML

1
2
3
4
5
# generate xxx.puml base on default config
clang-uml # --progress

# draw svg picture base on above puml file
plantuml -tsvg xxx.puml

generate mermaid

1
2
3
4
5
6
7
8
9
10
11
12
13
# genrate xxx.mmd
clang-uml -g mermaid

# draw svg
mmdc -i xxx.mmd # -o <name>.svg

# draw big svg
vim config.json
{
"maxTextSize": 1000000
}

mmdc -i diagram.mmd -c config.json

other

1
2
# To find the exact function signature
clang-uml --print-from -n client_class_diagram -c .clang-uml-sequence | grep main