Files
clang-uml/docs/test_cases/t40003.md
2022-08-07 23:17:44 +02:00

30 lines
900 B
Markdown

# t40003 - Dependants and dependencies include diagram filter test
## Config
```yaml
compilation_database_dir: ..
output_directory: puml
diagrams:
t40003_include:
type: include
# Provide the files to parse in order to look
# for #include directives
glob:
- ../../tests/t40003/include/**/*.h
- ../../tests/t40003/src/**/*.cc
# Render the paths relative to this directory
relative_to: ../../../tests/t40003
include:
# Include only files which depend on t1.h
dependants:
- ../../../tests/t40003/include/dependants/t1.h
# and dependencies of t2.cc
dependencies:
- ../../../tests/t40003/src/dependencies/t2.cc
plantuml:
before:
- "' t40003 test include diagram"
```
## Source code
## Generated UML diagrams
![t40003_include](./t40003_include.svg "Dependants and dependencies include diagram filter test")