Files
clang-uml/uml/sequence/main_sequence.yml
2023-10-09 13:53:55 +02:00

25 lines
743 B
YAML

type: sequence
title: main() function sequence diagram
# Group free functions into one participant per file
combine_free_functions_into_file_participants: true
# Do not generate method or function arguments
generate_method_arguments: none
# Parse only 1 translation unit for this diagram
glob:
- src/main.cc
include:
# Only include entities and call expressions from the project directory
paths:
- src
exclude:
# Exclude calls to config options
elements:
- clanguml::config::option<std::string>
# Exclude entities and call expressions from irrelevant files
paths:
- src/util/util.h
using_namespace:
- clanguml
# Use clang-uml main function as entry point for this diagram
from:
- function: main(int,const char **)