Changed default config file name to .clang-uml

This commit is contained in:
Bartek Kryza
2021-07-25 23:02:18 +02:00
parent 734b82eb09
commit e7f9674433
29 changed files with 420 additions and 0 deletions

20
tests/t90000/.clang-uml Normal file
View File

@@ -0,0 +1,20 @@
compilation_database_dir: ..
output_directory: puml
diagrams:
t90000_class:
type: class
plantuml:
before:
- 'class "Foo" as C_001'
- 'class C_001 {'
- ' +int value'
- '}'
- 'C_001 <|-- ArrayList'
- 'note top of C_001: This is a very important class.'
- 'note "This is a\nfloating note" as N1'
- 'note "This note is connected\nto several objects." as N2'
- 'C_001 .. N2'
- 'N2 .. ArrayList'
- 'class "Boo" as C_002'
- 'class C_002 {'
- '}'