diff --git a/CHANGELOG.md b/CHANGELOG.md index 6070581b..6480310c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +### 0.3.8 + * Added option to display block conditional statements in sequence diagrams (#162) + * Added Doxygen documentation (#161) + * Added diagram generation progress indicators options (#158) * Extended source_location with column and translation unit info ### 0.3.7 diff --git a/Doxyfile b/Doxyfile index 34e66a3a..c5c37146 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "clang-uml" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.3.7 +PROJECT_NUMBER = 0.3.8 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/README.md b/README.md index 275e821c..92684c78 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Build status](https://github.com/bkryza/clang-uml/actions/workflows/build.yml/badge.svg)](https://github.com/bkryza/clang-uml/actions) [![Coverage](https://codecov.io/gh/bkryza/clang-uml/branch/master/graph/badge.svg)](https://codecov.io/gh/bkryza/clang-uml) -[![Version](https://img.shields.io/badge/version-0.3.7-blue)](https://github.com/bkryza/clang-uml/releases) +[![Version](https://img.shields.io/badge/version-0.3.8-blue)](https://github.com/bkryza/clang-uml/releases) [![Version](https://img.shields.io/badge/LLVM-12,13,14,15,16-orange)](https://github.com/bkryza/clang-uml/releases) [![Doxygen](https://img.shields.io/badge/Docs-Doxygen-gainsboro)](https://clang-uml.github.io) @@ -114,8 +114,7 @@ diagrams: type: class glob: - src/*.cc - using_namespace: - - myproject + using_namespace: myproject include: namespaces: - myproject diff --git a/docs/class_diagrams.md b/docs/class_diagrams.md index 2a98a4a9..f23faf46 100644 --- a/docs/class_diagrams.md +++ b/docs/class_diagrams.md @@ -29,8 +29,7 @@ diagrams: glob: - src/*.cc # Render all names in the diagram relative to specific namespace - using_namespace: - - ns1 + using_namespace: ns1 # Include only classes from specific namespace include: namespaces: @@ -109,7 +108,7 @@ public: }; ``` -generates the following diagram: +results in the following diagram: ![extension](test_cases/t00007_class.svg) diff --git a/docs/comment_decorators.md b/docs/comment_decorators.md index 059ff692..de21b411 100644 --- a/docs/comment_decorators.md +++ b/docs/comment_decorators.md @@ -87,7 +87,7 @@ class R { }; ``` -generates the following class diagram: +results in the following class diagram: ![note](./test_cases/t00028_class.svg) @@ -141,7 +141,7 @@ struct R { }; ``` -generates the following diagram: +results in the following diagram: ![skip](./test_cases/t00029_class.svg) @@ -185,7 +185,7 @@ struct R { }; ``` -generates the following diagram: +results in the following diagram: ![skip](./test_cases/t00030_class.svg) @@ -226,6 +226,6 @@ struct R { }; ``` -generates the following diagram: +results in the following diagram: ![skip](./test_cases/t00031_class.svg) diff --git a/docs/common_options.md b/docs/common_options.md index 70a3e9f4..d8f77ac8 100644 --- a/docs/common_options.md +++ b/docs/common_options.md @@ -57,7 +57,7 @@ The syntax is simple and based on glob patterns, which can be added to the confi The glob patterns only need to match the translation units, which are also in the `compile_commands.json` file, i.e. any files that match the glob patterns but are not in `compile_commands.json` will be ignored. In case the `glob` -pattern set does not much any translation units an error will be printed on the standard output. +pattern set does not match any translation units an error will be printed on the standard output. For small projects, the `glob` property can be omitted, which will result in `clang-uml` parsing all translation units from `compile_commands.json` for the diagram. However for large projects, constraining the number of translation units @@ -96,13 +96,14 @@ specific diagram element. ## Resolving include path and compiler flags issues Due to the fact, that your project can be compiled with different compilers -and toolchains than the Clang version, which `clang-uml` uses on your platform, -include paths specified in the generated `compile_commands.json` can be incorrect. +and toolchains, the system paths and compilation flags detected by the Clang +version linked to your `clang-uml` installation might differ from the ones +actually used to compile your project. > This is often an issue on macOS, when `clang-uml` uses Homebrew version of LLVM > and your project was built using system Apple Clang -Typically, this results in ugly error messages on the screen during diagram +Typically, this results in error messages on the console during diagram generation, such as: ``` @@ -154,15 +155,15 @@ already as `argv[0]` in your `compile_commands.json`, you can simply invoke clang-uml --query-driver . ``` -however please make sure that the `compile_commands.json` contain a command, +however please make sure that the `compile_commands.json` contains a command, which is safe to execute. ### Manually add and remove compile flags from the compilation database If the system paths extracted from the compiler are not sufficient to resolve include paths issues, it is possible to manually adjust the compilation -flags providing `add_compile_flags` and `remove_compile_flags` in the +flags by providing `add_compile_flags` and `remove_compile_flags` in the configuration file, or providing `--add-compile-flag` and `--remove-compile-flag` -in the `clang-uml` command line. +on the `clang-uml` command line. For instance: diff --git a/docs/diagram_filters.md b/docs/diagram_filters.md index 9768af01..6a61a5b7 100644 --- a/docs/diagram_filters.md +++ b/docs/diagram_filters.md @@ -194,8 +194,10 @@ are included based on access scope (e.g. `public`). ## callee_types -This filter is specific for `sequence diagrams` and allows to control which types calls should be included/excluded from the diagram. -In a sequence diagram, a `callee` is the receiver of a message, and this filter specifies which types of receivers should match. +This filter is specific for `sequence diagrams` and allows to control, which +types of callees should be included/excluded from the diagram. In a sequence diagram, +a `callee` is the receiver of a message, and this filter specifies which types +of receivers should match. The following callee types are supported: * constructor @@ -210,8 +212,9 @@ The following callee types are supported: ## dependants and dependencies -These filters allow to specify that only dependants or dependencies of a given class should be included in the diagram. -This can be useful for analyzing what classes in your project depend on some other class, which could have impact for +These filters allow to specify that only dependants or dependencies of a given +class should be included in the diagram. This can be useful for analyzing what +classes in your project depend on some other class, which could have impact for instance on refactoring. For instance the following code: @@ -283,6 +286,6 @@ and the following filter: - dependency ``` -generates the following diagram: +results in the following diagram: ![t00043_class](./test_cases/t00043_class.svg) diff --git a/docs/diagram_templates.md b/docs/diagram_templates.md index ebb4ac72..e114103c 100644 --- a/docs/diagram_templates.md +++ b/docs/diagram_templates.md @@ -54,7 +54,7 @@ diagram_templates: ## Adding templates to the configuration file Diagram templates can be added directly to the `.clang-uml` configuration file, -under a `diagram_templates:` key. However, for practical reasons its better +under a `diagram_templates:` key. However, for practical reasons it is better to keep diagram template definitions in a separate Yaml file, and reference it in the configuration file using `include!` directive, e.g.: diff --git a/docs/generator_types.md b/docs/generator_types.md index de2961c8..9d8de7ea 100644 --- a/docs/generator_types.md +++ b/docs/generator_types.md @@ -46,45 +46,45 @@ An example PlantUML diagram is presented below: ```plantuml @startuml class "A" as C_0001371951663534295727 -class C_0001371951663534295727 [[https://github.com/bkryza/clang-uml/blob/a39af67987036732468c95087191562780a518de/tests/t00003/t00003.cc#L7{A}]] { -+A() = default : void -+A(int i) : void -+A(A &&) = default : void -+A(const A &) = deleted : void +class C_0001371951663534295727 [[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L7{A}]] { ++A() = default : void [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L9{A}]]] ++A(int i) : void [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L10{A}]]] ++A(A &&) = default : void [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L21{A}]]] ++A(const A &) = deleted : void [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L22{A}]]] +A(T t) : void -+~A() = default : void ++~A() = default : void [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L23{~A}]]] .. -+operator=(A && other) noexcept : A & -+operator=(A & other) noexcept : A & ++operator=(A && other) noexcept : A & [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L36{operator=}]]] ++operator=(A & other) noexcept : A & [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L37{operator=}]]] .. -+operator++() : A & ++operator++() : A & [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L30{operator++}]]] .. -+auto_method() : int -+basic_method() : void -+const_method() const : void -{static} +create_from_int(int i) : A -+default_int(int i = 12) : int -+default_string(int i, std::string s = "abc") : std::string -+double_int(const int i) : int --private_method() : void -#protected_method() : void -+size() constexpr const : std::size_t -{static} +static_method() : int -+sum(const double a, const double b) : int ++auto_method() : int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L28{auto_method}]]] ++basic_method() : void [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L25{basic_method}]]] ++const_method() const : void [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L27{const_method}]]] +{static} +create_from_int(int i) : A [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L50{create_from_int}]]] ++default_int(int i = 12) : int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L44{default_int}]]] ++default_string(int i, std::string s = "abc") : std::string [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L45{default_string}]]] ++double_int(const int i) : int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L41{double_int}]]] +-private_method() : void [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L67{private_method}]]] +#protected_method() : void [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L58{protected_method}]]] ++size() constexpr const : std::size_t [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L39{size}]]] +{static} +static_method() : int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L26{static_method}]]] ++sum(const double a, const double b) : int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L42{sum}]]] __ --a_ : int [[[https://github.com/bkryza/clang-uml/blob/a39af67987036732468c95087191562780a518de/tests/t00003/t00003.cc#L70{a_}]]] -{static} +auto_member : const unsigned long [[[https://github.com/bkryza/clang-uml/blob/a39af67987036732468c95087191562780a518de/tests/t00003/t00003.cc#L55{auto_member}]]] --b_ : int [[[https://github.com/bkryza/clang-uml/blob/a39af67987036732468c95087191562780a518de/tests/t00003/t00003.cc#L70{b_}]]] --c_ : int [[[https://github.com/bkryza/clang-uml/blob/a39af67987036732468c95087191562780a518de/tests/t00003/t00003.cc#L70{c_}]]] -#compare : std::function [[[https://github.com/bkryza/clang-uml/blob/a39af67987036732468c95087191562780a518de/tests/t00003/t00003.cc#L62{compare}]]] --private_member : int [[[https://github.com/bkryza/clang-uml/blob/a39af67987036732468c95087191562780a518de/tests/t00003/t00003.cc#L69{private_member}]]] -#protected_member : int [[[https://github.com/bkryza/clang-uml/blob/a39af67987036732468c95087191562780a518de/tests/t00003/t00003.cc#L60{protected_member}]]] -+public_member : int [[[https://github.com/bkryza/clang-uml/blob/a39af67987036732468c95087191562780a518de/tests/t00003/t00003.cc#L52{public_member}]]] -{static} +static_const_int : const int [[[https://github.com/bkryza/clang-uml/blob/a39af67987036732468c95087191562780a518de/tests/t00003/t00003.cc#L54{static_const_int}]]] -{static} +static_int : int [[[https://github.com/bkryza/clang-uml/blob/a39af67987036732468c95087191562780a518de/tests/t00003/t00003.cc#L53{static_int}]]] +-a_ : int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L70{a_}]]] +{static} +auto_member : const unsigned long [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L55{auto_member}]]] +-b_ : int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L70{b_}]]] +-c_ : int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L70{c_}]]] +#compare : std::function [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L62{compare}]]] +-private_member : int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L69{private_member}]]] +#protected_member : int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L60{protected_member}]]] ++public_member : int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L52{public_member}]]] +{static} +static_const_int : const int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L54{static_const_int}]]] +{static} +static_int : int [[[https://github.com/bkryza/clang-uml/blob/59d6fd5c7f14e028d1817274d80da29c338c2b53/tests/t00003/t00003.cc#L53{static_int}]]] } -'Generated with clang-uml, version 0.3.7-20-ga39af67 +'Generated with clang-uml, version 0.3.8 'LLVM version Ubuntu clang version 15.0.6 @enduml ``` @@ -253,6 +253,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "is_virtual": false, "name": "A", "parameters": [], + "source_location": { + "column": 5, + "file": "../../tests/t00003/t00003.cc", + "line": 9, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "void" }, { @@ -277,6 +283,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "type": "int" } ], + "source_location": { + "column": 5, + "file": "../../tests/t00003/t00003.cc", + "line": 10, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "void" }, { @@ -301,6 +313,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "type": "clanguml::t00003::A &&" } ], + "source_location": { + "column": 5, + "file": "../../tests/t00003/t00003.cc", + "line": 21, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "void" }, { @@ -325,6 +343,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "type": "const clanguml::t00003::A &" } ], + "source_location": { + "column": 5, + "file": "../../tests/t00003/t00003.cc", + "line": 22, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "void" }, { @@ -344,6 +368,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "is_virtual": true, "name": "~A", "parameters": [], + "source_location": { + "column": 13, + "file": "../../tests/t00003/t00003.cc", + "line": 23, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "void" }, { @@ -363,6 +393,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "is_virtual": false, "name": "basic_method", "parameters": [], + "source_location": { + "column": 10, + "file": "../../tests/t00003/t00003.cc", + "line": 25, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "void" }, { @@ -382,6 +418,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "is_virtual": false, "name": "static_method", "parameters": [], + "source_location": { + "column": 16, + "file": "../../tests/t00003/t00003.cc", + "line": 26, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "int" }, { @@ -401,6 +443,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "is_virtual": false, "name": "const_method", "parameters": [], + "source_location": { + "column": 10, + "file": "../../tests/t00003/t00003.cc", + "line": 27, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "void" }, { @@ -420,6 +468,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "is_virtual": false, "name": "auto_method", "parameters": [], + "source_location": { + "column": 10, + "file": "../../tests/t00003/t00003.cc", + "line": 28, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "int" }, { @@ -439,6 +493,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "is_virtual": false, "name": "operator++", "parameters": [], + "source_location": { + "column": 8, + "file": "../../tests/t00003/t00003.cc", + "line": 30, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "clanguml::t00003::A &" }, { @@ -463,6 +523,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "type": "clanguml::t00003::A &&" } ], + "source_location": { + "column": 8, + "file": "../../tests/t00003/t00003.cc", + "line": 36, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "clanguml::t00003::A &" }, { @@ -487,6 +553,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "type": "clanguml::t00003::A &" } ], + "source_location": { + "column": 8, + "file": "../../tests/t00003/t00003.cc", + "line": 37, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "clanguml::t00003::A &" }, { @@ -506,6 +578,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "is_virtual": false, "name": "size", "parameters": [], + "source_location": { + "column": 27, + "file": "../../tests/t00003/t00003.cc", + "line": 39, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "std::size_t" }, { @@ -530,6 +608,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "type": "const int" } ], + "source_location": { + "column": 10, + "file": "../../tests/t00003/t00003.cc", + "line": 41, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "int" }, { @@ -558,6 +642,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "type": "const double" } ], + "source_location": { + "column": 10, + "file": "../../tests/t00003/t00003.cc", + "line": 42, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "int" }, { @@ -583,6 +673,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "type": "int" } ], + "source_location": { + "column": 10, + "file": "../../tests/t00003/t00003.cc", + "line": 44, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "int" }, { @@ -612,6 +708,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "type": "std::string" } ], + "source_location": { + "column": 17, + "file": "../../tests/t00003/t00003.cc", + "line": 45, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "std::string" }, { @@ -636,6 +738,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "type": "int" } ], + "source_location": { + "column": 14, + "file": "../../tests/t00003/t00003.cc", + "line": 50, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "clanguml::t00003::A" }, { @@ -655,6 +763,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "is_virtual": false, "name": "protected_method", "parameters": [], + "source_location": { + "column": 10, + "file": "../../tests/t00003/t00003.cc", + "line": 58, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "void" }, { @@ -674,6 +788,12 @@ An equivalent of the above PlantUML diagram in JSON is presented below: "is_virtual": false, "name": "private_method", "parameters": [], + "source_location": { + "column": 10, + "file": "../../tests/t00003/t00003.cc", + "line": 67, + "translation_unit": "../../tests/t00003/t00003.cc" + }, "type": "void" }, { @@ -714,7 +834,7 @@ An equivalent of the above PlantUML diagram in JSON is presented below: } ], "metadata": { - "clang_uml_version": "0.3.7-20-ga39af67", + "clang_uml_version": "0.3.8", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/installation.md b/docs/installation.md index cbb59888..20b05aa1 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -30,16 +30,16 @@ sudo apt install clang-uml ```bash # Fedora 36 -wget https://github.com/bkryza/clang-uml/releases/download/0.3.7/clang-uml-0.3.7-1.fc36.x86_64.rpm -sudo dnf install ./clang-uml-0.3.7-1.fc36.x86_64.rpm +wget https://github.com/bkryza/clang-uml/releases/download/0.3.8/clang-uml-0.3.8-1.fc36.x86_64.rpm +sudo dnf install ./clang-uml-0.3.8-1.fc36.x86_64.rpm # Fedora 37 -wget https://github.com/bkryza/clang-uml/releases/download/0.3.7/clang-uml-0.3.7-1.fc37.x86_64.rpm -sudo dnf install ./clang-uml-0.3.7-1.fc37.x86_64.rpm +wget https://github.com/bkryza/clang-uml/releases/download/0.3.8/clang-uml-0.3.8-1.fc37.x86_64.rpm +sudo dnf install ./clang-uml-0.3.8-1.fc37.x86_64.rpm # Fedora 38 -wget https://github.com/bkryza/clang-uml/releases/download/0.3.7/clang-uml-0.3.7-1.fc38.x86_64.rpm -sudo dnf install ./clang-uml-0.3.7-1.fc38.x86_64.rpm +wget https://github.com/bkryza/clang-uml/releases/download/0.3.8/clang-uml-0.3.8-1.fc38.x86_64.rpm +sudo dnf install ./clang-uml-0.3.8-1.fc38.x86_64.rpm ``` #### Conda @@ -159,7 +159,7 @@ bin\clang-uml.exe --version ``` It should produce something like: ```bash -clang-uml 0.3.1 +clang-uml 0.3.8 Copyright (C) 2021-2023 Bartek Kryza Built against LLVM/Clang libraries version: 15.0.6 Using LLVM/Clang libraries version: clang version 15.0.6 (https://github.com/llvm/llvm-project.git 088f33605d8a61ff519c580a71b1dd57d16a03f8) diff --git a/docs/package_diagrams.md b/docs/package_diagrams.md index 364dfbb6..58543cad 100644 --- a/docs/package_diagrams.md +++ b/docs/package_diagrams.md @@ -6,8 +6,9 @@ -Package diagrams are simple diagrams which can be useful to determine the high level structure of a C++ project, -by rendering all projects namespaces as UML packages and their interdependencies. +Package diagrams are simple diagrams, which can be useful to visualize a high +level structure of a C++ project, by rendering all projects namespaces or +subdirectories as UML packages and their interdependencies. The minimal config required to generate a package diagram is presented below: ```yaml @@ -156,7 +157,7 @@ results the following diagram: ![package_deps](./test_cases/t30002_package.svg) -By default, packages are generated from C++ namespaces in the code. However +By default, packages are generated from C++ namespaces in the code. However, they can also be generated from the subdirectories in the filesystem tree by adding the following option to the configuration file: diff --git a/docs/quick_start.md b/docs/quick_start.md index 6e70a9f0..5240f7c6 100644 --- a/docs/quick_start.md +++ b/docs/quick_start.md @@ -26,8 +26,7 @@ To add an initial class diagram to your project, follow these steps: glob: - src/*.cc # Render all names relative to `myproject` namespace - using_namespace: - - myproject + using_namespace: myproject include: # Include only elements in `myproject` namespace namespaces: diff --git a/docs/sequence_diagrams.md b/docs/sequence_diagrams.md index 8b111501..057957c3 100644 --- a/docs/sequence_diagrams.md +++ b/docs/sequence_diagrams.md @@ -105,8 +105,8 @@ following rules: * If lambda expression is called within the scope of the diagram, the calls from the lambda will be placed at the lambda invocation and not declaration * If lambda expression is passed to some function or method, which is outside the scope of the diagram - (e.g. used in `std::transform` call) the call will be generated at the point where lambda is passed as parameter - * If the lambda is passed as template parameter in instantiation it will not be generated at the moment at all + (e.g. used in `std::transform` call) the call will not be generated + * If the lambda is passed as template parameter in instantiation it will not be generated Another issue is the naming of lambda participants. Currently, each lambda is rendered in the diagram as a separate class whose name is composed of the lambda location in the code (the only unique way of identifying lambdas I was able @@ -211,7 +211,7 @@ void tmain() } ``` -generates the following diagram: +results in the following diagram: ![extension](test_cases/t20012_sequence.svg) @@ -235,16 +235,15 @@ diagrams: exclude: access: - private - using_namespace: - - clanguml::t20029 + using_namespace: clanguml::t20029 start_from: - function: clanguml::t20029::tmain() participants_order: - - clanguml::t20029::tmain() - - clanguml::t20029::Encoder> - - clanguml::t20029::Retrier - - clanguml::t20029::ConnectionPool - - clanguml::t20029::encode_b64(std::string &&) + - "clanguml::t20029::tmain()" + - "clanguml::t20029::Encoder>" + - "clanguml::t20029::Retrier" + - "clanguml::t20029::ConnectionPool" + - "clanguml::t20029::encode_b64(std::string &&)" ``` ## Generating return types @@ -262,6 +261,9 @@ generate_return_types: true This option only affects the `plantuml` generation, in `json` generator `return_type` property is always present in the message nodes. +The diagram below presents what it looks like in a PlantUML generated diagram: +![extension](test_cases/t20032_sequence.svg) + ## Generating condition statements Sometimes, it is useful to include actual condition statements (for instance @@ -274,3 +276,6 @@ This can be enabled using the following option: generate_condition_statements: true ``` +An example of a diagram with this feature enabled is presented below: +![extension](test_cases/t20033_sequence.svg) + diff --git a/docs/test_cases/t00002.md b/docs/test_cases/t00002.md index b0c4793d..e0c63f92 100644 --- a/docs/test_cases/t00002.md +++ b/docs/test_cases/t00002.md @@ -618,7 +618,7 @@ private: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00002_class.svg b/docs/test_cases/t00002_class.svg index da66a9ce..9422f2f3 100644 --- a/docs/test_cases/t00002_class.svg +++ b/docs/test_cases/t00002_class.svg @@ -1,6 +1,6 @@ - + @@ -9,123 +9,123 @@ - - + + A - + - + foo_a() = 0 : void - + - + foo_c() = 0 : void - - + + B - + - + foo_a() : void - - + + C - + - + foo_c() : void - - + + D - + - + foo_a() : void - + - + foo_c() : void - + - + as : std::vector<A *> - - + + E - + - + foo_a() : void - + - + foo_c() : void - + - + as : std::vector<A *> - + This is class A - + This is class B - + This is class D diff --git a/docs/test_cases/t00003.md b/docs/test_cases/t00003.md index 44ee8aec..5030a685 100644 --- a/docs/test_cases/t00003.md +++ b/docs/test_cases/t00003.md @@ -8,8 +8,7 @@ diagrams: type: class glob: - ../../tests/t00003/t00003.cc - using_namespace: - - clanguml::t00003 + using_namespace: clanguml::t00003 include: namespaces: - clanguml::t00003 @@ -832,7 +831,7 @@ int A::static_int = 1; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00003_class.svg b/docs/test_cases/t00003_class.svg index e21ae100..3fdf5b4b 100644 --- a/docs/test_cases/t00003_class.svg +++ b/docs/test_cases/t00003_class.svg @@ -1,6 +1,6 @@ - + @@ -9,227 +9,227 @@ - - + + A - + - + A() = default : void - + - + A(int i) : void - + - + A(A &&) = default : void - + - + A(const A &) = deleted : void A<T>(T t) : void - + - + ~A() = default : void - + - + operator=(A && other) noexcept : A & - + - + operator=(A & other) noexcept : A & - + - + operator++() : A & - + - + auto_method() : int - + - + basic_method() : void - + - + const_method() const : void - + - + create_from_int(int i) : A - + - + default_int(int i = 12) : int - + - + default_string(int i, std::string s = "abc") : std::string - + - + double_int(const int i) : int - + - + private_method() : void - + - + protected_method() : void - + - + size() constexpr const : std::size_t - + - + static_method() : int - + - + sum(const double a, const double b) : int - + - + a_ : int - + - + auto_member : const unsigned long - + - + b_ : int - + - + c_ : int - + - + compare : std::function<bool (const int)> - + - + private_member : int - + - + protected_member : int - + - + public_member : int - + - + static_const_int : const int - + - + static_int : int diff --git a/docs/test_cases/t00004.md b/docs/test_cases/t00004.md index 7182bbeb..f370685c 100644 --- a/docs/test_cases/t00004.md +++ b/docs/test_cases/t00004.md @@ -528,7 +528,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00004_class.svg b/docs/test_cases/t00004_class.svg index 002dc25d..ea3118fa 100644 --- a/docs/test_cases/t00004_class.svg +++ b/docs/test_cases/t00004_class.svg @@ -1,6 +1,6 @@ - + @@ -9,16 +9,16 @@ - - + + B - - + + B::AA @@ -28,38 +28,38 @@ AA_3 - - + + A - + - + foo() const : void - + - + foo2() const : void - - + + A::AA - - + + A::AA::Lights @@ -69,16 +69,16 @@ Red - - + + A::AA::AAA - - + + C::B @@ -87,8 +87,8 @@ - - + + C @@ -97,38 +97,38 @@ - + - + b_int : B<int> - + - + t : T - - + + C::AA - - + + C::AA::AAA - - + + C::AA::CCC @@ -137,8 +137,8 @@ CCC_2 - - + + C::B @@ -147,15 +147,15 @@ - + - + b : V - - + + C::CC @@ -164,16 +164,16 @@ CC_2 - - + + detail::D - - + + detail::D::AA @@ -183,8 +183,8 @@ AA_3 - - + + detail::D::DD diff --git a/docs/test_cases/t00005.md b/docs/test_cases/t00005.md index ae44abc0..029b673f 100644 --- a/docs/test_cases/t00005.md +++ b/docs/test_cases/t00005.md @@ -518,7 +518,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00005_class.svg b/docs/test_cases/t00005_class.svg index 148e9ca3..544f807b 100644 --- a/docs/test_cases/t00005_class.svg +++ b/docs/test_cases/t00005_class.svg @@ -1,6 +1,6 @@ - + @@ -9,205 +9,205 @@ - - + + A - - + + B - - + + C - - + + D - - + + E - - + + F - - + + G - - + + H - - + + I - - + + J - - + + K - - + + R - + - + a : A - + - + b : B * - + - + c : C & - + - + d : const D * - + - + e : const E & - + - + f : F && - + - + g : G ** - + - + h : H *** - + - + i : I *& - + - + j : volatile J * - + - + k : K * - + - + some_int : int - + - + some_int_pointer : int * - + - + some_int_pointer_pointer : int ** - + - + some_int_reference : int & diff --git a/docs/test_cases/t00006.md b/docs/test_cases/t00006.md index e8994152..bf3d4bfd 100644 --- a/docs/test_cases/t00006.md +++ b/docs/test_cases/t00006.md @@ -699,7 +699,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00006_class.svg b/docs/test_cases/t00006_class.svg index 56247961..fd20bd29 100644 --- a/docs/test_cases/t00006_class.svg +++ b/docs/test_cases/t00006_class.svg @@ -1,6 +1,6 @@ - + @@ -9,136 +9,136 @@ - - + + A - - + + B - - + + C - - + + D - - + + E - - + + F - - + + G - - + + H - - + + I - - + + J - - + + K - - + + L - - + + M - - + + N - - + + NN - - + + NNN - - + + custom_container @@ -147,15 +147,15 @@ - + - + data : std::vector<T> - - + + custom_container @@ -164,103 +164,103 @@ - - + + R - + - + a : std::vector<A> - + - + b : std::vector<B *> - + - + c : std::map<int,C> - + - + d : std::map<int,D *> - + - + e : custom_container<E> - + - + f : std::vector<std::vector<F>> - + - + g : std::map<int,std::vector<G *>> - + - + h : std::array<H,10> - + - + i : std::array<I *,5> - + - + j : J[10] - + - + k : K *[20] - + - + lm : std::vector<std::pair<L,M>> - + - + ns : std::tuple<N,NN,NNN> diff --git a/docs/test_cases/t00007.md b/docs/test_cases/t00007.md index 8dd4192a..dfee3f44 100644 --- a/docs/test_cases/t00007.md +++ b/docs/test_cases/t00007.md @@ -172,7 +172,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00007_class.svg b/docs/test_cases/t00007_class.svg index f9ee5189..8e6a0445 100644 --- a/docs/test_cases/t00007_class.svg +++ b/docs/test_cases/t00007_class.svg @@ -1,6 +1,6 @@ - + @@ -9,57 +9,57 @@ - - + + A - - + + B - - + + C - - + + R - + - + a : std::unique_ptr<A> - + - + b : std::shared_ptr<B> - + - + c : std::weak_ptr<C> diff --git a/docs/test_cases/t00008.md b/docs/test_cases/t00008.md index e8517a14..f9d823cb 100644 --- a/docs/test_cases/t00008.md +++ b/docs/test_cases/t00008.md @@ -561,7 +561,7 @@ template <> struct E::nested_template { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00008_class.svg b/docs/test_cases/t00008_class.svg index aa267c9b..e774e866 100644 --- a/docs/test_cases/t00008_class.svg +++ b/docs/test_cases/t00008_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + A @@ -19,50 +19,50 @@ - + - + comparator : CMP - + - + ints : std::array<int,N> - + - + pointer : T * - + - + reference : T & - + - + value : T - + - + values : std::vector<P> - - + + Vector @@ -71,15 +71,15 @@ - + - + values : std::vector<T> - - + + B @@ -88,15 +88,15 @@ - + - + template_template : C<T> - - + + B @@ -105,8 +105,8 @@ - - + + D @@ -115,31 +115,31 @@ D<Items...>(std::tuple<Items...> *) : void - + - + add(int i) : void - + - + ints : B<int,Vector> - - + + E - - + + E::nested_template @@ -147,16 +147,16 @@ ET - + - + get(ET * d) : E::nested_template::DT * - - + + E::nested_template @@ -164,11 +164,11 @@ char - + - + getDecl(char * c) : E::nested_template<char>::DeclType * diff --git a/docs/test_cases/t00009.md b/docs/test_cases/t00009.md index 9c9dcdc8..473dc46b 100644 --- a/docs/test_cases/t00009.md +++ b/docs/test_cases/t00009.md @@ -243,7 +243,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00009_class.svg b/docs/test_cases/t00009_class.svg index c08f9058..7e2c2918 100644 --- a/docs/test_cases/t00009_class.svg +++ b/docs/test_cases/t00009_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + A @@ -19,15 +19,15 @@ - + - + value : T - - + + A @@ -36,8 +36,8 @@ - - + + A @@ -46,8 +46,8 @@ - - + + A @@ -56,33 +56,33 @@ - - + + B - + - + aint : A<int> - + - + astring : A<std::string> * - + - + avector : A<std::vector<std::string>> & diff --git a/docs/test_cases/t00010.md b/docs/test_cases/t00010.md index 19c3cd5e..3014f116 100644 --- a/docs/test_cases/t00010.md +++ b/docs/test_cases/t00010.md @@ -253,7 +253,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00010_class.svg b/docs/test_cases/t00010_class.svg index cc14262a..d8aea354 100644 --- a/docs/test_cases/t00010_class.svg +++ b/docs/test_cases/t00010_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + A @@ -19,22 +19,22 @@ - + - + first : T - + - + second : P - - + + A @@ -43,8 +43,8 @@ - - + + B @@ -53,15 +53,15 @@ - + - + astring : A<T,std::string> - - + + B @@ -70,19 +70,19 @@ - - + + C - + - + aintstring : B<int> diff --git a/docs/test_cases/t00011.md b/docs/test_cases/t00011.md index cc6e41b0..d7393204 100644 --- a/docs/test_cases/t00011.md +++ b/docs/test_cases/t00011.md @@ -212,7 +212,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00011_class.svg b/docs/test_cases/t00011_class.svg index 55ab44b7..7d0287e4 100644 --- a/docs/test_cases/t00011_class.svg +++ b/docs/test_cases/t00011_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + D @@ -19,48 +19,48 @@ - + - + value : T - - + + A - + - + foo() : void - - + + B - + - + foo() : void - + - + m_a : A * diff --git a/docs/test_cases/t00012.md b/docs/test_cases/t00012.md index 49ad0d3f..1342ad39 100644 --- a/docs/test_cases/t00012.md +++ b/docs/test_cases/t00012.md @@ -554,7 +554,7 @@ class R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00012_class.svg b/docs/test_cases/t00012_class.svg index a64387d5..8e774e28 100644 --- a/docs/test_cases/t00012_class.svg +++ b/docs/test_cases/t00012_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + A @@ -19,22 +19,22 @@ - + - + value : T - + - + values : std::variant<Ts...> - - + + B @@ -43,15 +43,15 @@ - + - + ints : std::array<int,sizeof...(Is)> - - + + C @@ -60,15 +60,15 @@ - + - + ints : std::array<T,sizeof...(Is)> - - + + A @@ -77,8 +77,8 @@ - - + + A @@ -87,8 +87,8 @@ - - + + B @@ -97,8 +97,8 @@ - - + + B @@ -107,8 +107,8 @@ - - + + C @@ -117,50 +117,50 @@ - - + + R - + - + a1 : A<int,std::string,float> - + - + a2 : A<int,std::string,bool> - + - + b1 : B<3,2,1> - + - + b2 : B<1,1,1,1> - + - + c1 : C<std::map<int,std::vector<std::vector<std::vector<std::string>>>>,3,3,3> - + Long template annotation diff --git a/docs/test_cases/t00013.md b/docs/test_cases/t00013.md index ccbb81b7..862a292e 100644 --- a/docs/test_cases/t00013.md +++ b/docs/test_cases/t00013.md @@ -905,7 +905,7 @@ private: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00013_class.svg b/docs/test_cases/t00013_class.svg index e616ed5f..6eae9588 100644 --- a/docs/test_cases/t00013_class.svg +++ b/docs/test_cases/t00013_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + ABCD::F @@ -19,15 +19,15 @@ - + - + f : T - - + + ABCD::F @@ -36,75 +36,75 @@ - - + + A - + - + a : int - - + + B - + - + b : int - - + + C - + - + c : int - - + + D - + - + print(R * r) : void - + - + d : int - - + + E @@ -113,15 +113,15 @@ - + - + e : T - - + + G @@ -130,22 +130,22 @@ - + - + args : std::tuple<Args...> - + - + g : T - - + + E @@ -154,8 +154,8 @@ - - + + G @@ -164,8 +164,8 @@ - - + + E @@ -174,93 +174,93 @@ - - + + R - + - + get_a(A * a) : int - + - + get_b(B & b) : int - + - + get_c(C c) : int - + - + get_const_b(const B & b) : int - + - + get_d(D && d) : int - + - + get_d2(D && d) : int get_e<T>(E<T> e) : T get_f<T>(const F<T> & f) : T - + - + get_int_e(const E<int> & e) : int - + - + get_int_e2(E<int> & e) : int - + - + get_int_f(const ABCD::F<int> & f) : int - + - + estring : E<std::string> - + - + gintstring : G<int,float,std::string> diff --git a/docs/test_cases/t00014.md b/docs/test_cases/t00014.md index d98d7392..919eec66 100644 --- a/docs/test_cases/t00014.md +++ b/docs/test_cases/t00014.md @@ -969,7 +969,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00014_class.svg b/docs/test_cases/t00014_class.svg index 4cb7a5f0..3db8fdcc 100644 --- a/docs/test_cases/t00014_class.svg +++ b/docs/test_cases/t00014_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + A @@ -19,37 +19,37 @@ - + - + p : P - + - + t : T - - + + B - + - + value : std::string - - + + A @@ -58,8 +58,8 @@ - - + + A @@ -68,8 +68,8 @@ - - + + A @@ -78,8 +78,8 @@ - - + + A @@ -88,8 +88,8 @@ - - + + A @@ -98,8 +98,8 @@ - - + + A @@ -108,8 +108,8 @@ - - + + A @@ -118,8 +118,8 @@ - - + + A @@ -128,8 +128,8 @@ - - + + A @@ -138,8 +138,8 @@ - - + + A @@ -148,8 +148,8 @@ - - + + A @@ -158,8 +158,8 @@ - - + + A @@ -168,8 +168,8 @@ - - + + A @@ -178,8 +178,8 @@ - - + + A @@ -188,8 +188,8 @@ - - + + A @@ -198,8 +198,8 @@ - - + + R @@ -208,116 +208,116 @@ - + - + abool : APtr<bool> - + - + aboolfloat : AAPtr<bool,float> - + - + afloat : ASharedPtr<float> - + - + atfloat : AAPtr<T,float> - + - + bapair : PairPairBA<bool> - + - + boolstring : A<bool,std::string> - + - + bs : BVector - + - + bs2 : BVector2 - + - + bstringstring : BStringString - + - + cb : SimpleCallback<ACharString> - + - + floatstring : AStringPtr<float> - + - + gcb : GenericCallback<R::AWCharString> - + - + intstring : AIntString - + - + stringstring : AStringString - + - + vcb : VoidCallback - + - + vps : VectorPtr<B> diff --git a/docs/test_cases/t00015.md b/docs/test_cases/t00015.md index 651c7507..84f476be 100644 --- a/docs/test_cases/t00015.md +++ b/docs/test_cases/t00015.md @@ -187,7 +187,7 @@ class B : public ns1::ns2::Anon { }; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00015_class.svg b/docs/test_cases/t00015_class.svg index bc84064a..9ad262de 100644 --- a/docs/test_cases/t00015_class.svg +++ b/docs/test_cases/t00015_class.svg @@ -1,6 +1,6 @@ - + @@ -9,40 +9,40 @@ - - + + ns1::A - - + + ns1::ns2_v0_9_0::A - - + + ns1::Anon - - + + ns3::ns1::ns2::Anon - - + + ns3::B diff --git a/docs/test_cases/t00016.md b/docs/test_cases/t00016.md index 18c2e22a..bb02ec85 100644 --- a/docs/test_cases/t00016.md +++ b/docs/test_cases/t00016.md @@ -273,7 +273,7 @@ template <> struct is_numeric { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00016_class.svg b/docs/test_cases/t00016_class.svg index 0c438b7d..2c003dea 100644 --- a/docs/test_cases/t00016_class.svg +++ b/docs/test_cases/t00016_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + is_numeric @@ -21,8 +21,8 @@ value : enum - - + + is_numeric @@ -33,8 +33,8 @@ value : enum - - + + is_numeric @@ -45,8 +45,8 @@ value : enum - - + + is_numeric @@ -57,8 +57,8 @@ value : enum - - + + is_numeric @@ -69,8 +69,8 @@ value : enum - - + + is_numeric diff --git a/docs/test_cases/t00017.md b/docs/test_cases/t00017.md index a2094b9e..9793cce1 100644 --- a/docs/test_cases/t00017.md +++ b/docs/test_cases/t00017.md @@ -577,7 +577,7 @@ private: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00017_class.svg b/docs/test_cases/t00017_class.svg index aa6a79f3..8836c64c 100644 --- a/docs/test_cases/t00017_class.svg +++ b/docs/test_cases/t00017_class.svg @@ -1,6 +1,6 @@ - + @@ -9,135 +9,135 @@ - - + + A - - + + B - - + + C - - + + D - - + + E - - + + F - - + + G - - + + H - - + + I - - + + J - - + + K - - + + R - + - + R(int & some_int, C & cc, const E & ee, F && ff, I *& ii) : void - + - + some_int : int - + - + some_int_pointer : int * - + - + some_int_pointer_pointer : int ** - + - + some_int_reference : int & diff --git a/docs/test_cases/t00018.md b/docs/test_cases/t00018.md index 11d7c21d..df39fb14 100644 --- a/docs/test_cases/t00018.md +++ b/docs/test_cases/t00018.md @@ -554,7 +554,7 @@ void widget::draw(const clanguml::t00018::widget &w) } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00018_class.svg b/docs/test_cases/t00018_class.svg index cd58075b..d876ee26 100644 --- a/docs/test_cases/t00018_class.svg +++ b/docs/test_cases/t00018_class.svg @@ -1,6 +1,6 @@ - + @@ -9,121 +9,121 @@ - - + + impl::widget - + - + widget(int n) : void - + - + draw(const widget & w) const : void - + - + draw(const widget & w) : void - + - + n : int - - + + widget - + - + widget(int) : void - + - + widget(widget &&) : void - + - + widget(const widget &) = deleted : void - + - + ~widget() : void - + - + operator=(widget &&) : widget & - + - + operator=(const widget &) = deleted : widget & - + - + draw() const : void - + - + draw() : void - + - + shown() const : bool - + - + pImpl : std::unique_ptr<impl::widget> diff --git a/docs/test_cases/t00019.md b/docs/test_cases/t00019.md index 1873f57b..3adfa8af 100644 --- a/docs/test_cases/t00019.md +++ b/docs/test_cases/t00019.md @@ -736,7 +736,7 @@ class Base { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00019_class.svg b/docs/test_cases/t00019_class.svg index 7f5753ee..6107b8a8 100644 --- a/docs/test_cases/t00019_class.svg +++ b/docs/test_cases/t00019_class.svg @@ -1,6 +1,6 @@ - + @@ -9,45 +9,45 @@ - - + + Base - + - + Base() = default : void - + - + ~Base() constexpr = default : void - + - + m1() : int - + - + m2() : std::string - - + + Layer1 @@ -55,23 +55,23 @@ LowerLayer - + - + m1() : int - + - + m2() : std::string - - + + Layer2 @@ -79,16 +79,16 @@ LowerLayer - + - + all_calls_count() const : int - - + + Layer3 @@ -96,51 +96,51 @@ LowerLayer - + - + m1() : int - + - + m1_calls() const : int - + - + m2() : std::string - + - + m2_calls() const : int - + - + m_m1_calls : int - + - + m_m2_calls : int - - + + Layer3 @@ -149,8 +149,8 @@ - - + + Layer2 @@ -159,8 +159,8 @@ - - + + Layer1 @@ -169,19 +169,19 @@ - - + + A - + - + layers : std::unique_ptr<Layer1<Layer2<Layer3<Base>>>> diff --git a/docs/test_cases/t00020.md b/docs/test_cases/t00020.md index aa2731b9..0c3bbabd 100644 --- a/docs/test_cases/t00020.md +++ b/docs/test_cases/t00020.md @@ -734,7 +734,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00020_class.svg b/docs/test_cases/t00020_class.svg index a8aa285a..6ee5ed8b 100644 --- a/docs/test_cases/t00020_class.svg +++ b/docs/test_cases/t00020_class.svg @@ -1,6 +1,6 @@ - + @@ -9,175 +9,175 @@ - - + + ProductA - + - + ~ProductA() constexpr = default : void - + - + sell(int price) const = 0 : bool - - + + ProductA1 - + - + sell(int price) const : bool - - + + ProductA2 - + - + sell(int price) const : bool - - + + ProductB - + - + ~ProductB() constexpr = default : void - + - + buy(int price) const = 0 : bool - - + + ProductB1 - + - + buy(int price) const : bool - - + + ProductB2 - + - + buy(int price) const : bool - - + + AbstractFactory - + - + make_a() const = 0 : std::unique_ptr<ProductA> - + - + make_b() const = 0 : std::unique_ptr<ProductB> - - + + Factory1 - + - + make_a() const : std::unique_ptr<ProductA> - + - + make_b() const : std::unique_ptr<ProductB> - - + + Factory2 - + - + make_a() const : std::unique_ptr<ProductA> - + - + make_b() const : std::unique_ptr<ProductB> diff --git a/docs/test_cases/t00021.md b/docs/test_cases/t00021.md index 7b22b644..4659c9a3 100644 --- a/docs/test_cases/t00021.md +++ b/docs/test_cases/t00021.md @@ -655,7 +655,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00021_class.svg b/docs/test_cases/t00021_class.svg index 17822b1f..7721cd0a 100644 --- a/docs/test_cases/t00021_class.svg +++ b/docs/test_cases/t00021_class.svg @@ -1,6 +1,6 @@ - + @@ -9,152 +9,152 @@ - - + + Visitor - + - + ~Visitor() constexpr = default : void - + - + visit_A(const A & item) const = 0 : void - + - + visit_B(const B & item) const = 0 : void - - + + Visitor1 - + - + visit_A(const A & item) const : void - + - + visit_B(const B & item) const : void - - + + Visitor2 - + - + visit_A(const A & item) const : void - + - + visit_B(const B & item) const : void - - + + Visitor3 - + - + visit_A(const A & item) const : void - + - + visit_B(const B & item) const : void - - + + Item - + - + ~Item() constexpr = default : void - + - + accept(const Visitor & visitor) const = 0 : void - - + + A - + - + accept(const Visitor & visitor) const : void - - + + B - + - + accept(const Visitor & visitor) const : void diff --git a/docs/test_cases/t00022.md b/docs/test_cases/t00022.md index 45b15f6c..550ae552 100644 --- a/docs/test_cases/t00022.md +++ b/docs/test_cases/t00022.md @@ -318,7 +318,7 @@ protected: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00022_class.svg b/docs/test_cases/t00022_class.svg index a19fe30a..b661c612 100644 --- a/docs/test_cases/t00022_class.svg +++ b/docs/test_cases/t00022_class.svg @@ -1,6 +1,6 @@ - + @@ -9,76 +9,76 @@ - - + + A - + - + method1() = 0 : void - + - + method2() = 0 : void - + - + template_method() : void - - + + A1 - + - + method1() : void - + - + method2() : void - - + + A2 - + - + method1() : void - + - + method2() : void diff --git a/docs/test_cases/t00023.md b/docs/test_cases/t00023.md index dbd10c1f..9b9cb585 100644 --- a/docs/test_cases/t00023.md +++ b/docs/test_cases/t00023.md @@ -398,7 +398,7 @@ private: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00023_class.svg b/docs/test_cases/t00023_class.svg index b9d8c2f8..e7160430 100644 --- a/docs/test_cases/t00023_class.svg +++ b/docs/test_cases/t00023_class.svg @@ -1,6 +1,6 @@ - + @@ -9,102 +9,102 @@ - - + + Strategy - + - + ~Strategy() constexpr = default : void - + - + algorithm() = 0 : void - - + + StrategyA - + - + algorithm() : void - - + + StrategyB - + - + algorithm() : void - - + + StrategyC - + - + algorithm() : void - - + + Context - + - + Context(std::unique_ptr<Strategy> strategy) : void - + - + apply() : void - + - + m_strategy : std::unique_ptr<Strategy> diff --git a/docs/test_cases/t00024.md b/docs/test_cases/t00024.md index 1db196be..aeba5133 100644 --- a/docs/test_cases/t00024.md +++ b/docs/test_cases/t00024.md @@ -449,7 +449,7 @@ private: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00024_class.svg b/docs/test_cases/t00024_class.svg index 715ae179..4dc6eeda 100644 --- a/docs/test_cases/t00024_class.svg +++ b/docs/test_cases/t00024_class.svg @@ -1,6 +1,6 @@ - + @@ -9,115 +9,115 @@ - - + + Target - + - + ~Target() = 0 : void - + - + m1() = 0 : void - + - + m2() = 0 : void - - + + Target1 - + - + m1() : void - + - + m2() : void - - + + Target2 - + - + m1() : void - + - + m2() : void - - + + Proxy - + - + Proxy(std::shared_ptr<Target> target) : void - + - + m1() : void - + - + m2() : void - + - + m_target : std::shared_ptr<Target> diff --git a/docs/test_cases/t00025.md b/docs/test_cases/t00025.md index c3ae9bd9..9e371521 100644 --- a/docs/test_cases/t00025.md +++ b/docs/test_cases/t00025.md @@ -440,7 +440,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00025_class.svg b/docs/test_cases/t00025_class.svg index 2d26a92c..3d6cab19 100644 --- a/docs/test_cases/t00025_class.svg +++ b/docs/test_cases/t00025_class.svg @@ -1,6 +1,6 @@ - + @@ -9,52 +9,52 @@ - - + + Target1 - + - + m1() : void - + - + m2() : void - - + + Target2 - + - + m1() : void - + - + m2() : void - - + + Proxy @@ -62,38 +62,38 @@ T - + - + Proxy(std::shared_ptr<T> target) : void - + - + m1() : void - + - + m2() : void - + - + m_target : std::shared_ptr<T> - - + + Proxy @@ -102,8 +102,8 @@ - - + + Proxy @@ -112,26 +112,26 @@ - - + + ProxyHolder - + - + proxy1 : Proxy<Target1> - + - + proxy2 : Proxy<Target2> diff --git a/docs/test_cases/t00026.md b/docs/test_cases/t00026.md index c1a36063..1beae1bf 100644 --- a/docs/test_cases/t00026.md +++ b/docs/test_cases/t00026.md @@ -580,7 +580,7 @@ struct StringMemento { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00026_class.svg b/docs/test_cases/t00026_class.svg index c934a597..5f139b55 100644 --- a/docs/test_cases/t00026_class.svg +++ b/docs/test_cases/t00026_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + Memento @@ -18,31 +18,31 @@ T - + - + Memento(T && v) : void - + - + value() const : T - + - + m_value : T - - + + Originator @@ -50,52 +50,52 @@ T - + - + Originator(T && v) : void - + - + load(const Memento<T> & m) : void - + - + memoize_value() const : Memento<T> - + - + print() const : void - + - + set(T && v) : void - + - + m_value : T - - + + Caretaker @@ -103,30 +103,30 @@ T - + - + set_state(const std::string & s, Memento<T> && m) : void - + - + state(const std::string & n) : Memento<T> & - + - + m_mementos : std::unordered_map<std::string,Memento<T>> - - + + Caretaker @@ -135,8 +135,8 @@ - - + + Originator @@ -145,26 +145,26 @@ - - + + StringMemento - + - + caretaker : Caretaker<std::string> - + - + originator : Originator<std::string> diff --git a/docs/test_cases/t00027.md b/docs/test_cases/t00027.md index 0d5f9da2..34f372ef 100644 --- a/docs/test_cases/t00027.md +++ b/docs/test_cases/t00027.md @@ -708,7 +708,7 @@ struct Window { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00027_class.svg b/docs/test_cases/t00027_class.svg index e60c7f97..69e65533 100644 --- a/docs/test_cases/t00027_class.svg +++ b/docs/test_cases/t00027_class.svg @@ -1,6 +1,6 @@ - + @@ -9,39 +9,39 @@ - - + + Shape - + - + ~Shape() constexpr = default : void - + - + display() = 0 : void - - + + Line - - + + Line @@ -49,24 +49,24 @@ T<>... - + - + display() : void - - + + Text - - + + Text @@ -74,31 +74,31 @@ T<>... - + - + display() : void - - + + ShapeDecorator - + - + display() = 0 : void - - + + Color @@ -106,16 +106,16 @@ T - + - + display() : void - - + + Weight @@ -123,16 +123,16 @@ T - + - + display() : void - - + + Line @@ -141,8 +141,8 @@ - - + + Line @@ -151,8 +151,8 @@ - - + + Text @@ -161,8 +161,8 @@ - - + + Text @@ -171,40 +171,40 @@ - - + + Window - + - + border : Line<Color,Weight> - + - + description : Text<Color> - + - + divider : Line<Color> - + - + title : Text<Color,Weight> diff --git a/docs/test_cases/t00028.md b/docs/test_cases/t00028.md index 477eab40..779d125a 100644 --- a/docs/test_cases/t00028.md +++ b/docs/test_cases/t00028.md @@ -459,7 +459,7 @@ class R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00028_class.svg b/docs/test_cases/t00028_class.svg index dbf12d6e..9df6ce2d 100644 --- a/docs/test_cases/t00028_class.svg +++ b/docs/test_cases/t00028_class.svg @@ -1,6 +1,6 @@ - + @@ -9,54 +9,54 @@ - - + + A - + A class note. - - + + B - + B class note. - - + + C - + C class note. - - + + D - + D class note. - - + + E @@ -65,26 +65,26 @@ - + - + param : T - + E template class note. - - + + G - - + + F @@ -94,11 +94,11 @@ three - + F enum note. - - + + E @@ -107,70 +107,70 @@ - - + + R - + - + R(C & c) : void - + - + aaa : A - + - + bbb : B * - + - + ccc : C & - + - + ddd : std::vector<std::shared_ptr<D>> - + - + eee : E<int> - + - + ggg : G ** - + R class note. - + R contains an instance of A. - + Reference to C. diff --git a/docs/test_cases/t00029.md b/docs/test_cases/t00029.md index adb38512..fdce8108 100644 --- a/docs/test_cases/t00029.md +++ b/docs/test_cases/t00029.md @@ -310,7 +310,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00029_class.svg b/docs/test_cases/t00029_class.svg index f5f886ea..69cf87eb 100644 --- a/docs/test_cases/t00029_class.svg +++ b/docs/test_cases/t00029_class.svg @@ -1,6 +1,6 @@ - + @@ -9,16 +9,16 @@ - - + + A - - + + C @@ -27,15 +27,15 @@ - + - + param : T - - + + E @@ -45,65 +45,65 @@ three - - + + G1 - - + + G2 - - + + G3 - - + + G4 - - + + R - + - + g1 : G1 - + - + g3 : G3 & - + - + g4 : std::shared_ptr<G4> diff --git a/docs/test_cases/t00030.md b/docs/test_cases/t00030.md index 730d3c62..daa1ead8 100644 --- a/docs/test_cases/t00030.md +++ b/docs/test_cases/t00030.md @@ -277,7 +277,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00030_class.svg b/docs/test_cases/t00030_class.svg index 76f98538..76212ec9 100644 --- a/docs/test_cases/t00030_class.svg +++ b/docs/test_cases/t00030_class.svg @@ -1,6 +1,6 @@ - + @@ -9,87 +9,87 @@ - - + + A - - + + B - - + + C - - + + D - - + + E - - + + R - + - + aaa : A - + - + bbb : std::vector<B> - + - + ccc : std::vector<C> - + - + ddd : D - + - + eee : E * diff --git a/docs/test_cases/t00031.md b/docs/test_cases/t00031.md index 751c033d..0dce4ff8 100644 --- a/docs/test_cases/t00031.md +++ b/docs/test_cases/t00031.md @@ -298,7 +298,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00031_class.svg b/docs/test_cases/t00031_class.svg index cf696549..d9883e10 100644 --- a/docs/test_cases/t00031_class.svg +++ b/docs/test_cases/t00031_class.svg @@ -1,33 +1,33 @@ - + - + - + - - - + + + A - - + + B @@ -37,8 +37,8 @@ three - - + + @@ -48,23 +48,23 @@ - + - + ttt : T - - + + D - - + + C @@ -73,40 +73,40 @@ - - + + R - + - + aaa : A * - + - + bbb : std::vector<B> - + - + ccc : C<int> - + - + ddd : D * diff --git a/docs/test_cases/t00032.md b/docs/test_cases/t00032.md index 5b3125ce..03ae9923 100644 --- a/docs/test_cases/t00032.md +++ b/docs/test_cases/t00032.md @@ -427,7 +427,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00032_class.svg b/docs/test_cases/t00032_class.svg index 75878576..cd7125e5 100644 --- a/docs/test_cases/t00032_class.svg +++ b/docs/test_cases/t00032_class.svg @@ -1,6 +1,6 @@ - + @@ -9,69 +9,69 @@ - - + + Base - - + + TBase - - + + A - + - + operator()() : void - - + + B - + - + operator()() : void - - + + C - + - + operator()() : void - - + + Overload @@ -80,15 +80,15 @@ - + - + counter : L - - + + Overload @@ -97,19 +97,19 @@ - - + + R - + - + overload : Overload<TBase,int,A,B,C> diff --git a/docs/test_cases/t00033.md b/docs/test_cases/t00033.md index ec4fa595..30daa5f1 100644 --- a/docs/test_cases/t00033.md +++ b/docs/test_cases/t00033.md @@ -375,7 +375,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00033_class.svg b/docs/test_cases/t00033_class.svg index 9ff91578..ac84c264 100644 --- a/docs/test_cases/t00033_class.svg +++ b/docs/test_cases/t00033_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + A @@ -19,15 +19,15 @@ - + - + aaa : T - - + + B @@ -36,15 +36,15 @@ - + - + bbb : T - - + + C @@ -53,30 +53,30 @@ - + - + ccc : T - - + + D - + - + ddd : int - - + + C @@ -85,8 +85,8 @@ - - + + B @@ -95,8 +95,8 @@ - - + + A @@ -105,19 +105,19 @@ - - + + R - + - + abc : A<B<std::unique_ptr<C<D>>>> diff --git a/docs/test_cases/t00034.md b/docs/test_cases/t00034.md index 6f05ee2b..046689e9 100644 --- a/docs/test_cases/t00034.md +++ b/docs/test_cases/t00034.md @@ -351,7 +351,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00034_class.svg b/docs/test_cases/t00034_class.svg index c42d9c45..3e6f7419 100644 --- a/docs/test_cases/t00034_class.svg +++ b/docs/test_cases/t00034_class.svg @@ -1,6 +1,6 @@ - + @@ -9,30 +9,30 @@ - - + + Void - + - + operator!=(const Void &) constexpr const : bool - + - + operator==(const Void &) constexpr const : bool - - + + lift_void @@ -41,8 +41,8 @@ - - + + lift_void @@ -51,8 +51,8 @@ - - + + drop_void @@ -61,8 +61,8 @@ - - + + drop_void @@ -71,34 +71,34 @@ - - + + A - - + + R - + - + la : lift_void_t<A> * - + - + lv : lift_void_t<void> * diff --git a/docs/test_cases/t00035.md b/docs/test_cases/t00035.md index 83a0d0d8..79e0167e 100644 --- a/docs/test_cases/t00035.md +++ b/docs/test_cases/t00035.md @@ -160,7 +160,7 @@ struct Right { }; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00035_class.svg b/docs/test_cases/t00035_class.svg index 1b61cc4d..3ab2c2ee 100644 --- a/docs/test_cases/t00035_class.svg +++ b/docs/test_cases/t00035_class.svg @@ -1,6 +1,6 @@ - + @@ -9,40 +9,40 @@ - - + + Top - - + + Left - - + + Center - - + + Bottom - - + + Right diff --git a/docs/test_cases/t00036.md b/docs/test_cases/t00036.md index 94a0c711..ba6c5fa0 100644 --- a/docs/test_cases/t00036.md +++ b/docs/test_cases/t00036.md @@ -276,7 +276,7 @@ struct DImpl : public ns2::ns22::D { }; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00036_class.svg b/docs/test_cases/t00036_class.svg index 18f2e7a9..67592aab 100644 --- a/docs/test_cases/t00036_class.svg +++ b/docs/test_cases/t00036_class.svg @@ -1,6 +1,6 @@ - + @@ -9,23 +9,23 @@ - + ns1 - + ns11 - + ns111 - + ns2 - + ns22 - - + + E @@ -34,8 +34,8 @@ yellow - - + + A @@ -44,15 +44,15 @@ - + - + a : T - - + + A @@ -61,23 +61,23 @@ - - + + B - + - + a_int : A<int> - - + + C diff --git a/docs/test_cases/t00037.md b/docs/test_cases/t00037.md index 7c91eb55..16276eff 100644 --- a/docs/test_cases/t00037.md +++ b/docs/test_cases/t00037.md @@ -288,7 +288,7 @@ struct A { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00037_class.svg b/docs/test_cases/t00037_class.svg index 246521a4..4b283cc8 100644 --- a/docs/test_cases/t00037_class.svg +++ b/docs/test_cases/t00037_class.svg @@ -1,6 +1,6 @@ - + @@ -9,106 +9,106 @@ - - + + ST - + - + dimensions : ST::(anonymous_662) - + - + units : ST::(anonymous_792) - - + + ST::(dimensions) - + - + t : double - + - + x : double - + - + y : double - + - + z : double - - + + ST::(units) - + - + c : double - + - + h : double - - + + A - + - + A() : void - + - + st : ST diff --git a/docs/test_cases/t00038.md b/docs/test_cases/t00038.md index 1517ec65..327a7778 100644 --- a/docs/test_cases/t00038.md +++ b/docs/test_cases/t00038.md @@ -494,7 +494,7 @@ struct map - + @@ -9,8 +9,8 @@ - - + + thirdparty::ns1::color_t @@ -20,16 +20,16 @@ blue - - + + thirdparty::ns1::E - - + + property_t @@ -39,47 +39,47 @@ property_c - - + + A - - + + B - - + + C - - + + key_t - + - + key : std::string - - + + map @@ -88,8 +88,8 @@ - - + + map @@ -98,8 +98,8 @@ - - + + map @@ -108,8 +108,8 @@ - - + + map @@ -118,8 +118,8 @@ - - + + map diff --git a/docs/test_cases/t00039.md b/docs/test_cases/t00039.md index 4e64f0dd..ab59a222 100644 --- a/docs/test_cases/t00039.md +++ b/docs/test_cases/t00039.md @@ -608,7 +608,7 @@ template struct FFF : public FF { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00039_class.svg b/docs/test_cases/t00039_class.svg index f1a195a3..79f5e5a0 100644 --- a/docs/test_cases/t00039_class.svg +++ b/docs/test_cases/t00039_class.svg @@ -1,6 +1,6 @@ - + @@ -9,95 +9,95 @@ - - + + C - - + + D - - + + E - - + + CD - - + + DE - - + + CDE - - + + A - - + + AA - - + + AAA - + - + b : B * - - + + ns2::AAAA - - + + ns3::F @@ -106,15 +106,15 @@ - + - + t : T * - - + + ns3::FF @@ -123,15 +123,15 @@ - + - + m : M * - - + + ns3::FE @@ -140,15 +140,15 @@ - + - + m : M * - - + + ns3::FFF @@ -157,11 +157,11 @@ - + - + n : N * diff --git a/docs/test_cases/t00040.md b/docs/test_cases/t00040.md index 4061ccc1..b480293c 100644 --- a/docs/test_cases/t00040.md +++ b/docs/test_cases/t00040.md @@ -307,7 +307,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00040_class.svg b/docs/test_cases/t00040_class.svg index 149bc197..862ab8d8 100644 --- a/docs/test_cases/t00040_class.svg +++ b/docs/test_cases/t00040_class.svg @@ -1,6 +1,6 @@ - + @@ -9,70 +9,70 @@ - - + + A - + - + get_a() : int - + - + ii_ : int - - + + AA - - + + AAA - + - + get_aaa() : int - + - + b : B * - - + + R - + - + foo(A * a) : void diff --git a/docs/test_cases/t00041.md b/docs/test_cases/t00041.md index fb025ee3..2a2324f2 100644 --- a/docs/test_cases/t00041.md +++ b/docs/test_cases/t00041.md @@ -390,7 +390,7 @@ struct NM : public N { }; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00041_class.svg b/docs/test_cases/t00041_class.svg index ce64fdc6..78fd76c5 100644 --- a/docs/test_cases/t00041_class.svg +++ b/docs/test_cases/t00041_class.svg @@ -1,6 +1,6 @@ - + @@ -9,107 +9,107 @@ - - + + R - - + + D - + - + rr : RR * - - + + E - - + + F - - + + RR - + - + foo(H * h) : void - + - + e : E * - + - + f : F * - + - + g : detail::G * - - + + RRR - - + + ns1::N - - + + ns1::NN - - + + ns1::NM diff --git a/docs/test_cases/t00042.md b/docs/test_cases/t00042.md index bbe7ccfe..2424e598 100644 --- a/docs/test_cases/t00042.md +++ b/docs/test_cases/t00042.md @@ -305,7 +305,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00042_class.svg b/docs/test_cases/t00042_class.svg index ea905402..5d677c1c 100644 --- a/docs/test_cases/t00042_class.svg +++ b/docs/test_cases/t00042_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + A @@ -19,15 +19,15 @@ - + - + a : T - - + + A @@ -36,15 +36,15 @@ - + - + a : void * - - + + B @@ -53,22 +53,22 @@ - + - + b : T - + - + bb : K - - + + A @@ -77,8 +77,8 @@ - - + + A @@ -87,8 +87,8 @@ - - + + B diff --git a/docs/test_cases/t00043.md b/docs/test_cases/t00043.md index 5e02a9e3..09de89eb 100644 --- a/docs/test_cases/t00043.md +++ b/docs/test_cases/t00043.md @@ -651,7 +651,7 @@ struct J { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00043_class.svg b/docs/test_cases/t00043_class.svg index 0d4a40d2..8535bd7a 100644 --- a/docs/test_cases/t00043_class.svg +++ b/docs/test_cases/t00043_class.svg @@ -1,6 +1,6 @@ - + @@ -9,167 +9,167 @@ - + dependants - + dependencies - - + + A - - + + B - + - + b(dependants::A * a) : void - - + + BB - + - + bb(dependants::A * a) : void - - + + C - + - + c(dependants::B * b) : void - - + + D - + - + d(dependants::C * c) : void - + - + dd(dependants::BB * bb) : void - - + + E - + - + e(dependants::D * d) : void - - + + G - - + + GG - - + + H - + - + h(dependencies::G * g) : void - + - + hh(dependencies::GG * gg) : void - - + + I - + - + i(dependencies::H * h) : void - - + + J - + - + i(dependencies::I * i) : void diff --git a/docs/test_cases/t00044.md b/docs/test_cases/t00044.md index d653d249..567e6814 100644 --- a/docs/test_cases/t00044.md +++ b/docs/test_cases/t00044.md @@ -430,7 +430,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00044_class.svg b/docs/test_cases/t00044_class.svg index 5dfc3ac5..53eb345e 100644 --- a/docs/test_cases/t00044_class.svg +++ b/docs/test_cases/t00044_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + signal_handler @@ -19,8 +19,8 @@ - - + + sink @@ -28,26 +28,26 @@ signal_handler<Ret(Args...),A> - + - + sink(signal_t & sh) : void get_signal<CastTo>() : CastTo * - + - + signal : signal_t * - - + + signal_handler @@ -56,8 +56,8 @@ - - + + sink @@ -66,23 +66,23 @@ - - + + R - + - + sink1 : sink<signal_handler<void (int),bool>> - - + + signal_handler @@ -91,8 +91,8 @@ - - + + sink diff --git a/docs/test_cases/t00045.md b/docs/test_cases/t00045.md index 9abd27c5..0d2e0412 100644 --- a/docs/test_cases/t00045.md +++ b/docs/test_cases/t00045.md @@ -461,7 +461,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00045_class.svg b/docs/test_cases/t00045_class.svg index 6700cd3a..437fed6e 100644 --- a/docs/test_cases/t00045_class.svg +++ b/docs/test_cases/t00045_class.svg @@ -1,6 +1,6 @@ - + @@ -9,32 +9,32 @@ - - + + A - - + + AA - - + + AAA - - + + AAAA @@ -43,110 +43,110 @@ - + - + t : T - - + + ns1::A - - + + ns1::ns2::A - - + + ns1::ns2::B - - + + ns1::ns2::C - - + + ns1::ns2::D - - + + ns1::ns2::E - - + + ns1::ns2::AAA - - + + ns1::ns2::R - + - + foo(AA & aa) : void - + - + a : ns1::ns2::A * - + - + ns1_a : ns1::A * - + - + ns1_ns2_a : ns1::ns2::A * - + - + root_a : ::A * diff --git a/docs/test_cases/t00046.md b/docs/test_cases/t00046.md index 94bb9c67..e1fec148 100644 --- a/docs/test_cases/t00046.md +++ b/docs/test_cases/t00046.md @@ -394,7 +394,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00046_class.svg b/docs/test_cases/t00046_class.svg index bcdb0fcb..c40ae0bd 100644 --- a/docs/test_cases/t00046_class.svg +++ b/docs/test_cases/t00046_class.svg @@ -1,6 +1,6 @@ - + @@ -9,120 +9,120 @@ - + ns1 - + ns2 - - + + A - - + + A - - + + B - - + + C - - + + D - - + + E - - + + R - + - + foo(AA & aa) : void - + - + a : ns1::ns2::A * - + - + i : std::vector<std::uint8_t> - + - + ns1_a : ns1::A * - + - + ns1_ns2_a : ns1::ns2::A * - + - + root_a : ::A * - - + + A - - + + AA diff --git a/docs/test_cases/t00047.md b/docs/test_cases/t00047.md index 2655d739..def3fdb8 100644 --- a/docs/test_cases/t00047.md +++ b/docs/test_cases/t00047.md @@ -192,7 +192,7 @@ using conditional = typename conditional_t::type; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00047_class.svg b/docs/test_cases/t00047_class.svg index 6bf65b71..4900c197 100644 --- a/docs/test_cases/t00047_class.svg +++ b/docs/test_cases/t00047_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + conditional_t @@ -19,8 +19,8 @@ - - + + conditional_t @@ -29,8 +29,8 @@ - - + + conditional_t @@ -39,8 +39,8 @@ - - + + conditional_t diff --git a/docs/test_cases/t00048.md b/docs/test_cases/t00048.md index b4eb8c0a..1ddcb1ed 100644 --- a/docs/test_cases/t00048.md +++ b/docs/test_cases/t00048.md @@ -544,7 +544,7 @@ template struct BaseTemplate { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00048_class.svg b/docs/test_cases/t00048_class.svg index e47e766a..cf0b5762 100644 --- a/docs/test_cases/t00048_class.svg +++ b/docs/test_cases/t00048_class.svg @@ -1,6 +1,6 @@ - + @@ -9,30 +9,30 @@ - - + + Base - + - + foo() = 0 : void - + - + base : int - - + + BaseTemplate @@ -40,45 +40,45 @@ T - + - + foo() = 0 : void - + - + base : T - - + + B - + - + foo() : void - + - + b : int - - + + BTemplate @@ -86,45 +86,45 @@ T - + - + foo() : void - + - + b : T - - + + A - + - + foo() : void - + - + a : int - - + + ATemplate @@ -132,19 +132,19 @@ T - + - + foo() : void - + - + a : T diff --git a/docs/test_cases/t00049.md b/docs/test_cases/t00049.md index 12dfebf1..14682fe5 100644 --- a/docs/test_cases/t00049.md +++ b/docs/test_cases/t00049.md @@ -325,7 +325,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00049_class.svg b/docs/test_cases/t00049_class.svg index e11ab081..336c6f00 100644 --- a/docs/test_cases/t00049_class.svg +++ b/docs/test_cases/t00049_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + A @@ -18,23 +18,23 @@ T - + - + get_a() : T & - + - + a : T - - + + A @@ -43,8 +43,8 @@ - - + + A @@ -53,8 +53,8 @@ - - + + A @@ -63,47 +63,47 @@ - - + + R - + - + get_int_map() : A<intmap> - + - + set_int_map(A<intmap> && int_map) : void - + - + a_int_map : A<intmap> - + - + a_string : A<thestring> - + - + a_vector_string : A<string_vector> diff --git a/docs/test_cases/t00050.md b/docs/test_cases/t00050.md index 4ef8f6f3..3f9894d2 100644 --- a/docs/test_cases/t00050.md +++ b/docs/test_cases/t00050.md @@ -504,7 +504,7 @@ class NoComment { }; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00050_class.svg b/docs/test_cases/t00050_class.svg index 19823991..4ac92121 100644 --- a/docs/test_cases/t00050_class.svg +++ b/docs/test_cases/t00050_class.svg @@ -1,6 +1,6 @@ - + @@ -9,40 +9,40 @@ - - + + A - - + + B - - + + C - - + + utils::D - - + + E @@ -52,8 +52,8 @@ E3 - - + + F @@ -62,43 +62,43 @@ - + - + t : T[N] - + - + v : V - - + + G - - + + NoComment - + Lorem ipsum dolor sit - + Lorem ipsum dolor sit - + Lorem ipsum dolor sit amet consectetur adipiscing elit, urna consequat felis vehicula class ultricies mollis dictumst, aenean non a in donec nulla. @@ -125,50 +125,50 @@ imperdiet praesent magnis ridiculus congue gravida curabitur dictum sagittis, enim et magna sit inceptos sodales parturient pharetra mollis, aenean vel nostra tellus commodo pretium sapien sociosqu. - + This is a short description of class G. - + This is an intermediate description of class G. - + This is a long description of class G. - + Lorem ipsum - + TODO 1. Write meaningful comment - + TODO 2. Write tests - + TODO 3. Implement - + Long comment example - + TODO Implement... - + Simple array wrapper. - + Template parameters diff --git a/docs/test_cases/t00051.md b/docs/test_cases/t00051.md index 5756c8eb..38ce5955 100644 --- a/docs/test_cases/t00051.md +++ b/docs/test_cases/t00051.md @@ -637,7 +637,7 @@ A::custom_thread2 A::start_thread2() } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00051_class.svg b/docs/test_cases/t00051_class.svg index 3e68de21..4255ac9c 100644 --- a/docs/test_cases/t00051_class.svg +++ b/docs/test_cases/t00051_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + B @@ -18,125 +18,125 @@ F,FF=F - + - + B(F && f, FF && ff) : void - + - + f() : void - + - + ff() : void - + - + f_ : F - + - + ff_ : FF - - + + B<(lambda at ../../tests/t00051/t00051.cc:43:18),(lambda at ../../tests/t00051/t00051.cc:43:27)> - + - + B((lambda at ../../tests/t00051/t00051.cc:43:18) && f, (lambda at ../../tests/t00051/t00051.cc:43:27) && ff) : void - + - + f() : void - + - + ff() : void - + - + f_ : (lambda at ../../tests/t00051/t00051.cc:43:18) - + - + ff_ : (lambda at ../../tests/t00051/t00051.cc:43:27) - - + + A - + - + get_function() : (lambda at ../../tests/t00051/t00051.cc:48:16) - + - + start_thread1() : A::custom_thread1 - + - + start_thread2() : A::custom_thread2 - + - + start_thread3() : B<(lambda at ../../tests/t00051/t00051.cc:43:18),(lambda at ../../tests/t00051/t00051.cc:43:27)> - - + + A::custom_thread1 @@ -145,18 +145,18 @@ custom_thread1<Function,Args...>(Function && f, Args &&... args) : void - - + + A::custom_thread2 - + - + thread((lambda at ../../tests/t00051/t00051.cc:59:27) &&) : void diff --git a/docs/test_cases/t00052.md b/docs/test_cases/t00052.md index 22cb0db2..6a11f3c1 100644 --- a/docs/test_cases/t00052.md +++ b/docs/test_cases/t00052.md @@ -396,7 +396,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00052_class.svg b/docs/test_cases/t00052_class.svg index be427216..3fdad583 100644 --- a/docs/test_cases/t00052_class.svg +++ b/docs/test_cases/t00052_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + A @@ -21,8 +21,8 @@ aa<F,Q>(F && f, Q q) : void - - + + B @@ -30,18 +30,18 @@ T - + - + b(T t) : T bb<F>(F && f, T t) : T - - + + C @@ -52,8 +52,8 @@ c<P>(P p) : T - - + + B @@ -62,8 +62,8 @@ - - + + C @@ -72,33 +72,33 @@ - - + + R - + - + a : A - + - + b : B<int> - + - + c : C<int> diff --git a/docs/test_cases/t00053.md b/docs/test_cases/t00053.md index d31d0154..5c49a4d8 100644 --- a/docs/test_cases/t00053.md +++ b/docs/test_cases/t00053.md @@ -418,7 +418,7 @@ enum class j { jjj }; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00053_class.svg b/docs/test_cases/t00053_class.svg index 3e50405f..75d438ed 100644 --- a/docs/test_cases/t00053_class.svg +++ b/docs/test_cases/t00053_class.svg @@ -1,6 +1,6 @@ - + @@ -9,72 +9,72 @@ - - + + A - - + + C - - + + E - - + + F - - + + a - - + + c - - + + e - - + + f - - + + h @@ -82,8 +82,8 @@ hhh - - + + j @@ -91,56 +91,56 @@ jjj - - + + b - - + + d - - + + g - - + + B - - + + D - - + + G - - + + i diff --git a/docs/test_cases/t00054.md b/docs/test_cases/t00054.md index c1237b8e..b6a22071 100644 --- a/docs/test_cases/t00054.md +++ b/docs/test_cases/t00054.md @@ -460,7 +460,7 @@ enum class j { jjj }; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00054_class.svg b/docs/test_cases/t00054_class.svg index 2a1c41d7..3896c1df 100644 --- a/docs/test_cases/t00054_class.svg +++ b/docs/test_cases/t00054_class.svg @@ -1,6 +1,6 @@ - + @@ -9,28 +9,28 @@ - + detail - + detail2 - + detail3 - + detail4 - - + + d - - + + a @@ -40,8 +40,8 @@ - - + + c @@ -51,8 +51,8 @@ - - + + e @@ -62,40 +62,40 @@ - - + + C - - + + F - - + + D - - + + E - - + + A @@ -104,8 +104,8 @@ - - + + B @@ -114,8 +114,8 @@ - - + + f @@ -124,8 +124,8 @@ - - + + G @@ -133,8 +133,8 @@ - - + + h @@ -143,8 +143,8 @@ hhh - - + + i @@ -153,8 +153,8 @@ iii - - + + j @@ -163,16 +163,16 @@ jjj - - + + b - - + + g diff --git a/docs/test_cases/t00055.md b/docs/test_cases/t00055.md index 0bcef37b..16668129 100644 --- a/docs/test_cases/t00055.md +++ b/docs/test_cases/t00055.md @@ -266,7 +266,7 @@ struct J { }; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00055_class.svg b/docs/test_cases/t00055_class.svg index 38e9aa4a..6fd25370 100644 --- a/docs/test_cases/t00055_class.svg +++ b/docs/test_cases/t00055_class.svg @@ -1,6 +1,6 @@ - + @@ -9,80 +9,80 @@ - - + + A - - + + B - - + + C - - + + D - - + + E - - + + F - - + + G - - + + H - - + + I - - + + J diff --git a/docs/test_cases/t00056.md b/docs/test_cases/t00056.md index 8486945d..aa311c87 100644 --- a/docs/test_cases/t00056.md +++ b/docs/test_cases/t00056.md @@ -605,7 +605,7 @@ struct F { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00056_class.svg b/docs/test_cases/t00056_class.svg index 09a2b6e3..547208d9 100644 --- a/docs/test_cases/t00056_class.svg +++ b/docs/test_cases/t00056_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + «concept» @@ -20,8 +20,8 @@ - - + + «concept» @@ -33,8 +33,8 @@ sizeof (l) > sizeof (r) - - + + «concept» @@ -44,8 +44,8 @@ - - + + «concept» @@ -58,8 +58,8 @@ container.begin() container.end() - - + + «concept» @@ -71,8 +71,8 @@ typename T::value_type - - + + «concept» @@ -86,8 +86,8 @@ {std::to_string(s)} noexcept {std::to_string(s)} -> std::same_as<std::string> - - + + «concept» @@ -97,8 +97,8 @@ - - + + «concept» @@ -108,8 +108,8 @@ - - + + A @@ -118,15 +118,15 @@ - + - + a : T - - + + B @@ -135,15 +135,15 @@ - + - + b : T - - + + C @@ -152,15 +152,15 @@ - + - + c : T - - + + D @@ -169,8 +169,8 @@ - - + + E @@ -179,29 +179,29 @@ - + - + e1 : T1 - + - + e2 : T2 - + - + e3 : T3 - - + + F @@ -210,25 +210,25 @@ - + - + f1 : T1 - + - + f2 : T2 - + - + f3 : T3 diff --git a/docs/test_cases/t00057.md b/docs/test_cases/t00057.md index 99eb8f25..bbc5512e 100644 --- a/docs/test_cases/t00057.md +++ b/docs/test_cases/t00057.md @@ -550,7 +550,7 @@ struct t00057_R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00057_class.svg b/docs/test_cases/t00057_class.svg index 452ab425..a3f228f2 100644 --- a/docs/test_cases/t00057_class.svg +++ b/docs/test_cases/t00057_class.svg @@ -1,6 +1,6 @@ - + @@ -9,53 +9,53 @@ - - + + t00057_A - + - + a1 : int - - + + t00057_B - + - + b1 : int - - + + t00057_C - + - + c1 : int - - + + «union» @@ -63,73 +63,73 @@ - + - + d1 : int - + - + d2 : float - - + + t00057_E - + - + coordinates : t00057_E::(anonymous_739) - + - + e : int - + - + height : t00057_E::(anonymous_807) - - + + t00057_E::(coordinates) - + - + x : int - + - + y : int - - + + «union» @@ -137,105 +137,105 @@ - + - + t : double - + - + z : int - - + + t00057_G - + - + g1 : int - - + + t00057_R - + - + a : struct t00057_A - + - + b : t00057_B - + - + c : struct t00057_C * - + - + d : union t00057_D - + - + e : struct t00057_E * - + - + f : struct t00057_F * - + - + g : struct t00057_G * - - + + t00057_F - + - + f1 : int diff --git a/docs/test_cases/t00058.md b/docs/test_cases/t00058.md index 56b627f6..89580614 100644 --- a/docs/test_cases/t00058.md +++ b/docs/test_cases/t00058.md @@ -433,7 +433,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00058_class.svg b/docs/test_cases/t00058_class.svg index 1a425ad6..8824028b 100644 --- a/docs/test_cases/t00058_class.svg +++ b/docs/test_cases/t00058_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + first_type @@ -19,8 +19,8 @@ - - + + «concept» @@ -30,8 +30,8 @@ - - + + A @@ -40,15 +40,15 @@ - + - + a : std::vector<T> - - + + B @@ -57,22 +57,22 @@ - + - + b : std::vector<T> - + - + bb : P - - + + A @@ -81,8 +81,8 @@ - - + + A @@ -91,8 +91,8 @@ - - + + B @@ -101,26 +101,26 @@ - - + + R - + - + aa : A<int,int,double,std::string> - + - + bb : B<int,std::string,int,double,A<int,int>> diff --git a/docs/test_cases/t00059.md b/docs/test_cases/t00059.md index de0018fe..6188ba1e 100644 --- a/docs/test_cases/t00059.md +++ b/docs/test_cases/t00059.md @@ -645,7 +645,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00059_class.svg b/docs/test_cases/t00059_class.svg index 07b1fbac..065c31e8 100644 --- a/docs/test_cases/t00059_class.svg +++ b/docs/test_cases/t00059_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + «concept» @@ -23,8 +23,8 @@ T{} t.get_name() - - + + «concept» @@ -36,8 +36,8 @@ t.get_sweetness() - - + + «concept» @@ -49,96 +49,96 @@ t.get_bitterness() - - + + gala_apple - + - + get_name() const : std::string - + - + get_sweetness() const : float - - + + empire_apple - + - + get_name() const : std::string - + - + get_sweetness() const : float - - + + lima_orange - + - + get_bitterness() const : float - + - + get_name() const : std::string - - + + valencia_orange - + - + get_bitterness() const : float - + - + get_name() const : std::string - - + + fruit_factory @@ -146,23 +146,23 @@ apple_c TA,orange_c TO - + - + create_apple() const : TA - + - + create_orange() const : TO - - + + fruit_factory @@ -171,8 +171,8 @@ - - + + fruit_factory @@ -181,26 +181,26 @@ - - + + R - + - + factory_1 : fruit_factory_1 - + - + factory_2 : fruit_factory_2 diff --git a/docs/test_cases/t00060.md b/docs/test_cases/t00060.md index 8b14c0a1..21a212ad 100644 --- a/docs/test_cases/t00060.md +++ b/docs/test_cases/t00060.md @@ -274,7 +274,7 @@ template struct H : public G { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00060_class.svg b/docs/test_cases/t00060_class.svg index 812f8ec5..e13fead8 100644 --- a/docs/test_cases/t00060_class.svg +++ b/docs/test_cases/t00060_class.svg @@ -1,6 +1,6 @@ - + @@ -9,40 +9,40 @@ - - + + A - - + + B - - + + C - - + + D - - + + G @@ -51,15 +51,15 @@ - + - + g : T - - + + H @@ -68,18 +68,18 @@ - + - + h : G<T> - + - + hh : P diff --git a/docs/test_cases/t00061.md b/docs/test_cases/t00061.md index 1e9f56d9..90c86043 100644 --- a/docs/test_cases/t00061.md +++ b/docs/test_cases/t00061.md @@ -63,7 +63,7 @@ struct C { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00061_class.svg b/docs/test_cases/t00061_class.svg index ec45a69d..923ace0d 100644 --- a/docs/test_cases/t00061_class.svg +++ b/docs/test_cases/t00061_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + A diff --git a/docs/test_cases/t00062.md b/docs/test_cases/t00062.md index 9ea825e9..c1662670 100644 --- a/docs/test_cases/t00062.md +++ b/docs/test_cases/t00062.md @@ -1370,7 +1370,7 @@ struct A> { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00062_class.svg b/docs/test_cases/t00062_class.svg index 27976454..6de2b49f 100644 --- a/docs/test_cases/t00062_class.svg +++ b/docs/test_cases/t00062_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + A @@ -19,15 +19,15 @@ - + - + u : U & - - + + A @@ -36,15 +36,15 @@ - + - + u : U & - - + + A @@ -53,8 +53,8 @@ - - + + A @@ -63,15 +63,15 @@ - + - + u : U ** - - + + A @@ -80,15 +80,15 @@ - + - + u : U *** - - + + A @@ -97,15 +97,15 @@ - + - + u : U *** - - + + A @@ -114,15 +114,15 @@ - + - + u : U && - - + + A @@ -131,15 +131,15 @@ - + - + u : const U & - - + + A @@ -148,22 +148,22 @@ - + - + c : C & - + - + m : M C::* - - + + A @@ -172,22 +172,22 @@ - + - + c : C && - + - + m : M C::* - - + + A @@ -196,22 +196,22 @@ - + - + c : C & - + - + m : M C::* - - + + A @@ -220,15 +220,15 @@ - + - + c : C & - - + + A @@ -237,22 +237,22 @@ - + - + c : C && - + - + m : M C::* - - + + A @@ -261,22 +261,22 @@ - + - + c : C && - + - + mf : float C::* - - + + A @@ -285,22 +285,22 @@ - + - + c : C & - + - + m : M C::* - - + + A @@ -309,15 +309,15 @@ - + - + n : char[N] - - + + A @@ -326,15 +326,15 @@ - + - + n : std::vector<char> - - + + A @@ -343,15 +343,15 @@ - + - + klm : char[K][L][M] - - + + A @@ -360,15 +360,15 @@ - + - + u : bool - - + + A @@ -377,15 +377,15 @@ - + - + c : C<T> - - + + A @@ -394,22 +394,22 @@ - + - + args : std::tuple<Args...> - + - + c : C<T> - - + + A diff --git a/docs/test_cases/t00063.md b/docs/test_cases/t00063.md index 7e552340..f6afc0fd 100644 --- a/docs/test_cases/t00063.md +++ b/docs/test_cases/t00063.md @@ -61,7 +61,7 @@ enum class C { c1, c2, c3 }; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00063_class.svg b/docs/test_cases/t00063_class.svg index 41896bd9..60ca0725 100644 --- a/docs/test_cases/t00063_class.svg +++ b/docs/test_cases/t00063_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + A diff --git a/docs/test_cases/t00064.md b/docs/test_cases/t00064.md index 34c232b5..d113f9cc 100644 --- a/docs/test_cases/t00064.md +++ b/docs/test_cases/t00064.md @@ -1034,7 +1034,7 @@ public: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00064_class.svg b/docs/test_cases/t00064_class.svg index 63ac8192..016350e1 100644 --- a/docs/test_cases/t00064_class.svg +++ b/docs/test_cases/t00064_class.svg @@ -1,6 +1,6 @@ - + @@ -9,8 +9,8 @@ - - + + type_list @@ -19,8 +19,8 @@ - - + + type_list @@ -29,8 +29,8 @@ - - + + type_list @@ -39,8 +39,8 @@ - - + + type_list @@ -49,8 +49,8 @@ - - + + head @@ -59,8 +59,8 @@ - - + + type_list @@ -69,8 +69,8 @@ - - + + type_list @@ -79,8 +79,8 @@ - - + + type_list @@ -89,8 +89,8 @@ - - + + type_group_pair @@ -99,15 +99,15 @@ - + - + size : const size_t - - + + optional_ref @@ -116,8 +116,8 @@ - - + + optional_ref @@ -126,8 +126,8 @@ - - + + type_group_pair_it @@ -135,54 +135,54 @@ It,type_list<First...>,type_list<Second...> - + - + find(value_type const& v) constexpr : unsigned int - + - + get(unsigned int i) : ref_t - + - + getp(unsigned int i) : value_type const* - - + + A - - + + B - - + + C - - + + type_list @@ -191,8 +191,8 @@ - - + + type_list @@ -201,8 +201,8 @@ - - + + type_list @@ -211,8 +211,8 @@ - - + + type_group_pair @@ -221,30 +221,30 @@ - - + + R - + - + abc : type_group_pair<type_list<float,double>,type_list<A,B,C>> - + - + aboolint : type_list<A,bool,int> - - + + type_group_pair @@ -253,8 +253,8 @@ - - + + type_group_pair_it @@ -263,8 +263,8 @@ - - + + head diff --git a/docs/test_cases/t00065.md b/docs/test_cases/t00065.md index f88b819d..34523305 100644 --- a/docs/test_cases/t00065.md +++ b/docs/test_cases/t00065.md @@ -527,7 +527,7 @@ struct R { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00065_class.svg b/docs/test_cases/t00065_class.svg index 2f69439f..b78bbc7a 100644 --- a/docs/test_cases/t00065_class.svg +++ b/docs/test_cases/t00065_class.svg @@ -1,6 +1,6 @@ - + @@ -9,20 +9,20 @@ - + module1 - + submodule1a - + module2 - + concepts - - + + ABC @@ -32,8 +32,8 @@ c - - + + XYZ @@ -43,68 +43,68 @@ z - - + + A - + - + abc : ABC - + - + pimpl : detail::AImpl * - + - + xyz : XYZ - - + + AImpl - - + + B - + - + B() = default : void - + - + b() : void - - + + C @@ -113,15 +113,15 @@ - + - + t : T * - - + + C @@ -130,8 +130,8 @@ - - + + D @@ -140,22 +140,22 @@ - + - + c : C<int> - + - + t : T - - + + C @@ -164,8 +164,8 @@ - - + + D @@ -174,8 +174,8 @@ - - + + «concept» @@ -186,33 +186,33 @@ T{} t.b() - - + + R - + - + a : A * - + - + c : C<B> - + - + d : D<B> diff --git a/docs/test_cases/t00066.md b/docs/test_cases/t00066.md index b9a95412..24882aef 100644 --- a/docs/test_cases/t00066.md +++ b/docs/test_cases/t00066.md @@ -802,7 +802,7 @@ int A::static_int = 1; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00066_class.svg b/docs/test_cases/t00066_class.svg index e1cd1c27..76eb497d 100644 --- a/docs/test_cases/t00066_class.svg +++ b/docs/test_cases/t00066_class.svg @@ -1,6 +1,6 @@ - + @@ -9,222 +9,222 @@ - - + + A - + - + a_ : int - + - + auto_member : const unsigned long - + - + b_ : int - + - + c_ : int - + - + private_member : int - + - + protected_member : int - + - + public_member : int - + - + static_const_int : const int - + - + static_int : int - + - + A(int i) : void - + - + A(A &&) = default : void - + - + A(const A &) = deleted : void - + - + A() = default : void - + - + auto_method() : int - + - + basic_method() : void - + - + const_method() const : void - + - + create_from_int(int i) : A - + - + default_int(int i = 12) : int - + - + default_string(int i, std::string s = "abc") : std::string - + - + double_int(const int i) : int - + - + operator++() : A & - + - + operator=(A && other) noexcept : A & - + - + operator=(A & other) noexcept : A & - + - + private_method() : void - + - + protected_method() : void - + - + size() const : std::size_t - + - + static_method() : int - + - + sum(const double a, const double b) : int - + - + ~A() = default : void - + - + compare : std::function<bool (const int)> diff --git a/docs/test_cases/t00067.md b/docs/test_cases/t00067.md index a0f1bd1d..cb58dde0 100644 --- a/docs/test_cases/t00067.md +++ b/docs/test_cases/t00067.md @@ -525,7 +525,7 @@ int A::static_int = 1; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t00067_class.svg b/docs/test_cases/t00067_class.svg index 0e9e4e14..87183bdf 100644 --- a/docs/test_cases/t00067_class.svg +++ b/docs/test_cases/t00067_class.svg @@ -1,6 +1,6 @@ - + @@ -9,152 +9,152 @@ - - + + A - + - + auto_method() : int - + - + basic_method() : void - + - + const_method() const : void - + - + default_int(int i = 12) : int - + - + default_string(int i, std::string s = "abc") : std::string - + - + double_int(const int i) : int - + - + private_method() : void - + - + protected_method() : void - + - + size() const : std::size_t - + - + sum(const double a, const double b) : int - + - + a_ : int - + - + auto_member : const unsigned long - + - + b_ : int - + - + c_ : int - + - + compare : std::function<bool (const int)> - + - + private_member : int - + - + protected_member : int - + - + public_member : int - + - + static_const_int : const int - + - + static_int : int diff --git a/docs/test_cases/t20001.md b/docs/test_cases/t20001.md index 1b810296..372ec0e7 100644 --- a/docs/test_cases/t20001.md +++ b/docs/test_cases/t20001.md @@ -108,7 +108,7 @@ int tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20001_sequence.svg b/docs/test_cases/t20001_sequence.svg index 70a75448..dfbd8e52 100644 --- a/docs/test_cases/t20001_sequence.svg +++ b/docs/test_cases/t20001_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,73 +9,73 @@ - - - - - - - - - + + + + + + + + + - - + + tmain() - + tmain() - - + + A - + A - - + + B - + B - - - - - - - - - - + + + + + + + + + + A() - + B(A &) - + add(int,int) - + wrap_add3(int,int,int) - + add3(int,int,int) - + @@ -86,7 +86,7 @@ - + @@ -95,14 +95,14 @@ - + log_result(int) - + Main test function diff --git a/docs/test_cases/t20002.md b/docs/test_cases/t20002.md index 49d0a2b4..cfe68d48 100644 --- a/docs/test_cases/t20002.md +++ b/docs/test_cases/t20002.md @@ -45,7 +45,7 @@ void m1() { m2(); } { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20002_sequence.svg b/docs/test_cases/t20002_sequence.svg index 9a315dc5..0a7d3e05 100644 --- a/docs/test_cases/t20002_sequence.svg +++ b/docs/test_cases/t20002_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,51 +9,51 @@ - - - - + + + + - - + + m1() - + m1() - - + + m2() - + m2() - - + + m3() - + m3() - - + + m4() - + m4() - - - - - + + + + + - + - + diff --git a/docs/test_cases/t20003.md b/docs/test_cases/t20003.md index 03cf1d3c..19988800 100644 --- a/docs/test_cases/t20003.md +++ b/docs/test_cases/t20003.md @@ -41,7 +41,7 @@ template void m1(T p) { m2(p); } { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20003_sequence.svg b/docs/test_cases/t20003_sequence.svg index 71929c2c..19a441a6 100644 --- a/docs/test_cases/t20003_sequence.svg +++ b/docs/test_cases/t20003_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,51 +9,51 @@ - - - - + + + + - - + + m1<T>(T) - + m1<T>(T) - - + + m2<T>(T) - + m2<T>(T) - - + + m3<T>(T) - + m3<T>(T) - - + + m4<T>(T) - + m4<T>(T) - - - - - + + + + + - + - + diff --git a/docs/test_cases/t20004.md b/docs/test_cases/t20004.md index 8dafd1bb..12c5cc63 100644 --- a/docs/test_cases/t20004.md +++ b/docs/test_cases/t20004.md @@ -77,7 +77,7 @@ int main() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20004_sequence.svg b/docs/test_cases/t20004_sequence.svg index e9342e67..07e4f297 100644 --- a/docs/test_cases/t20004_sequence.svg +++ b/docs/test_cases/t20004_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,16 +9,16 @@ - - - - - - - - - - + + + + + + + + + + @@ -29,87 +29,87 @@ - - + + main() - + main() - - + + m1<float>(float) - + m1<float>(float) - - + + m1<unsigned long>(unsigned long) - + m1<unsigned long>(unsigned long) - - + + m4<unsigned long>(unsigned long) - + m4<unsigned long>(unsigned long) - - + + m1<std::string>(std::string) - + m1<std::string>(std::string) - - + + m2<std::string>(std::string) - + m2<std::string>(std::string) - - + + m1<int>(int) - + m1<int>(int) - - + + m2<int>(int) - + m2<int>(int) - - + + m3<int>(int) - + m3<int>(int) - - + + m4<int>(int) - + m4<int>(int) - - - - - - - - - - - + + + + + + + + + + + - + - + @@ -117,11 +117,11 @@ - + - + @@ -129,19 +129,19 @@ - + - + - + - + diff --git a/docs/test_cases/t20005.md b/docs/test_cases/t20005.md index ce02233e..1e6635ea 100644 --- a/docs/test_cases/t20005.md +++ b/docs/test_cases/t20005.md @@ -48,7 +48,7 @@ template struct C { { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20005_sequence.svg b/docs/test_cases/t20005_sequence.svg index 4da27343..a6c829c7 100644 --- a/docs/test_cases/t20005_sequence.svg +++ b/docs/test_cases/t20005_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,42 +9,42 @@ - - - + + + - - + + C<T> - + C<T> - - + + B<T> - + B<T> - - + + A<T> - + A<T> - - - + + + c(T) - + b(T) - + a(T) diff --git a/docs/test_cases/t20006.md b/docs/test_cases/t20006.md index 4c71962f..3e3b18ee 100644 --- a/docs/test_cases/t20006.md +++ b/docs/test_cases/t20006.md @@ -106,7 +106,7 @@ void tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20006_sequence.svg b/docs/test_cases/t20006_sequence.svg index fac3281e..be7b4894 100644 --- a/docs/test_cases/t20006_sequence.svg +++ b/docs/test_cases/t20006_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,24 +9,24 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -36,84 +36,84 @@ - - + + tmain() - + tmain() - - + + B<int> - + B<int> - - + + A<int> - + A<int> - - + + B<std::string> - + B<std::string> - - + + A<std::string> - + A<std::string> - - + + BB<int,std::string> - + BB<int,std::string> - - + + BB<int,float> - + BB<int,float> - - + + BB<int,int> - + BB<int,int> - - + + AA<int> - + AA<int> - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + b(int) - + a1(int) @@ -122,12 +122,12 @@ - + b(std::string) - + a2(std::string) @@ -136,69 +136,69 @@ - + BB(AA<int> *) - + BB(AA<int> &) - + bb1(int,int) - + aa1(int) - + bb2(int,int) - + aa2(int) - + bb1(int,std::string) - + aa2(int) - + bb2(int,std::string) - + aa1(int) - + bb1(int,float) - + bb2(int,float) - + aa2(int) diff --git a/docs/test_cases/t20007.md b/docs/test_cases/t20007.md index 3dc4e526..519d422f 100644 --- a/docs/test_cases/t20007.md +++ b/docs/test_cases/t20007.md @@ -52,7 +52,7 @@ void tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20007_sequence.svg b/docs/test_cases/t20007_sequence.svg index 91a00bdc..f0d9f353 100644 --- a/docs/test_cases/t20007_sequence.svg +++ b/docs/test_cases/t20007_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,57 +9,57 @@ - - - - + + + + - - + + tmain() - + tmain() - - + + Adder<int,int> - + Adder<int,int> - - + + Adder<int,float,double> - + Adder<int,float,double> - - + + Adder<std::string,std::string,std::string> - + Adder<std::string,std::string,std::string> - - - - - + + + + + add(int &&,int &&) - + add(int &&,float &&,double &&) - + add(std::string &&,std::string &&,std::string &&) diff --git a/docs/test_cases/t20008.md b/docs/test_cases/t20008.md index de6f7d34..2d5396f3 100644 --- a/docs/test_cases/t20008.md +++ b/docs/test_cases/t20008.md @@ -70,7 +70,7 @@ void tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20008_sequence.svg b/docs/test_cases/t20008_sequence.svg index 078d9507..1dc8a634 100644 --- a/docs/test_cases/t20008_sequence.svg +++ b/docs/test_cases/t20008_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,13 +9,13 @@ - - - - - - - + + + + + + + @@ -23,81 +23,81 @@ - - + + tmain() - + tmain() - - + + B<int> - + B<int> - - + + A<int> - + A<int> - - + + B<const char *> - + B<const char *> - - + + A<const char *> - + A<const char *> - - + + B<std::string> - + B<std::string> - - + + A<std::string> - + A<std::string> - - - - - - - - + + + + + + + + b(int) - + a1(int) - + b(const char *) - + a2(const char *) - + b(std::string) - + a3(std::string) diff --git a/docs/test_cases/t20009.md b/docs/test_cases/t20009.md index c10b6ca4..56e80389 100644 --- a/docs/test_cases/t20009.md +++ b/docs/test_cases/t20009.md @@ -56,7 +56,7 @@ void tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20009_sequence.svg b/docs/test_cases/t20009_sequence.svg index 038c343f..a30cac95 100644 --- a/docs/test_cases/t20009_sequence.svg +++ b/docs/test_cases/t20009_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,13 +9,13 @@ - - - - - - - + + + + + + + @@ -23,81 +23,81 @@ - - + + tmain() - + tmain() - - + + B<std::string> - + B<std::string> - - + + A<std::string> - + A<std::string> - - + + B<int> - + B<int> - - + + A<int> - + A<int> - - + + B<float> - + B<float> - - + + A<float> - + A<float> - - - - - - - - + + + + + + + + b(std::string) - + a(std::string) - + b(int) - + a(int) - + b(float) - + a(float) diff --git a/docs/test_cases/t20010.md b/docs/test_cases/t20010.md index d7fd6a66..fa822fc0 100644 --- a/docs/test_cases/t20010.md +++ b/docs/test_cases/t20010.md @@ -66,7 +66,7 @@ void tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20010_sequence.svg b/docs/test_cases/t20010_sequence.svg index c8a8644f..6b4f9461 100644 --- a/docs/test_cases/t20010_sequence.svg +++ b/docs/test_cases/t20010_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,81 +9,81 @@ - - - - - - - - - + + + + + + + + + - - + + tmain() - + tmain() - - + + B<int> - + B<int> - - + + A - + A - - - - - - - - - - + + + + + + + + + + b1() - + a1() - + b2() - + a2() - + b3() - + a3() - + b4() - + a4() diff --git a/docs/test_cases/t20011.md b/docs/test_cases/t20011.md index 88e5c638..8d263259 100644 --- a/docs/test_cases/t20011.md +++ b/docs/test_cases/t20011.md @@ -58,7 +58,7 @@ void tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20011_sequence.svg b/docs/test_cases/t20011_sequence.svg index 0e239d7f..b6ae885d 100644 --- a/docs/test_cases/t20011_sequence.svg +++ b/docs/test_cases/t20011_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,42 +9,42 @@ - - - - - - - - - - - - + + + + + + + + + + + + - - + + tmain() - + tmain() - - + + A - + A - - - - - - - - - - + + + + + + + + + + a(int) @@ -52,26 +52,26 @@ alt - + a(int) - + b(int) - + c(int) - + @@ -81,14 +81,14 @@ alt - + b(int) - + @@ -98,7 +98,7 @@ alt - + diff --git a/docs/test_cases/t20012.md b/docs/test_cases/t20012.md index 3f1c436a..6de8caff 100644 --- a/docs/test_cases/t20012.md +++ b/docs/test_cases/t20012.md @@ -133,7 +133,7 @@ void tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20012_sequence.svg b/docs/test_cases/t20012_sequence.svg index 3c62cc7b..62be9775 100644 --- a/docs/test_cases/t20012_sequence.svg +++ b/docs/test_cases/t20012_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,31 +9,31 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -42,116 +42,116 @@ - - + + tmain() - + tmain() - - + + tmain()::(lambda ../../tests/t20012/t20012.cc:67:20) - + tmain()::(lambda ../../tests/t20012/t20012.cc:67:20) - - + + A - + A - - + + B - + B - - + + tmain()::(lambda ../../tests/t20012/t20012.cc:80:20) - + tmain()::(lambda ../../tests/t20012/t20012.cc:80:20) - - + + C - + C - - + + R<R::(lambda ../../tests/t20012/t20012.cc:86:9)> - + R<R::(lambda ../../tests/t20012/t20012.cc:86:9)> - - + + tmain()::(lambda ../../tests/t20012/t20012.cc:86:9) - + tmain()::(lambda ../../tests/t20012/t20012.cc:86:9) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + operator()() - + a() - + aa() - + aaa() - + b() - + bb() - + @@ -160,67 +160,67 @@ - + operator()() - + c() - + cc() - + ccc() - + operator()() - + a() - + aa() - + aaa() - + b() - + bb() - + @@ -231,34 +231,34 @@ - + R((lambda at /home/bartek/devel/clang-uml/tests/t20012/t20012.cc:86:9) &&) - + r() - + operator()() - + c() - + cc() - + diff --git a/docs/test_cases/t20013.md b/docs/test_cases/t20013.md index 0bd545ad..1ef99673 100644 --- a/docs/test_cases/t20013.md +++ b/docs/test_cases/t20013.md @@ -54,7 +54,7 @@ void tmain(int argc, char **argv) { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20013_sequence.svg b/docs/test_cases/t20013_sequence.svg index c2f18f53..0c1d9787 100644 --- a/docs/test_cases/t20013_sequence.svg +++ b/docs/test_cases/t20013_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,47 +9,47 @@ - - - - - - - + + + + + + + - - + + tmain(int,char **) - + tmain(int,char **) - - + + B - + B - - + + A - + A - - - - - - - - + + + + + + + + b(int) - + a1(int) @@ -58,12 +58,12 @@ - + b(double) - + a2(double) @@ -72,12 +72,12 @@ - + b(const char *) - + a3(const char *) diff --git a/docs/test_cases/t20014.md b/docs/test_cases/t20014.md index 8c94f666..3d680f38 100644 --- a/docs/test_cases/t20014.md +++ b/docs/test_cases/t20014.md @@ -89,7 +89,7 @@ namespace t20014 { { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20014_sequence.svg b/docs/test_cases/t20014_sequence.svg index 96f0a880..a2dc11d6 100644 --- a/docs/test_cases/t20014_sequence.svg +++ b/docs/test_cases/t20014_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,56 +9,56 @@ - - - - - - - - + + + + + + + + - - + + tmain() - + tmain() - - + + B - + B - - + + A - + A - - + + C<B,int> - + C<B,int> - - - - - - - - - + + + + + + + + + b1(int,int) - + a1(int,int) @@ -67,12 +67,12 @@ - + b2(int,int) - + a2(int,int) @@ -81,17 +81,17 @@ - + c1(int,int) - + b1(int,int) - + a1(int,int) diff --git a/docs/test_cases/t20015.md b/docs/test_cases/t20015.md index e13975dc..4eaecbcb 100644 --- a/docs/test_cases/t20015.md +++ b/docs/test_cases/t20015.md @@ -70,7 +70,7 @@ void tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20015_sequence.svg b/docs/test_cases/t20015_sequence.svg index cb9a0a78..502b72ed 100644 --- a/docs/test_cases/t20015_sequence.svg +++ b/docs/test_cases/t20015_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,25 +9,25 @@ - - + + - - + + tmain() - + tmain() - - + + B - + B - - - + + + setup_a(std::shared_ptr<detail::A> &) diff --git a/docs/test_cases/t20016.md b/docs/test_cases/t20016.md index edc2fe41..a6f74cb7 100644 --- a/docs/test_cases/t20016.md +++ b/docs/test_cases/t20016.md @@ -52,7 +52,7 @@ void tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20016_sequence.svg b/docs/test_cases/t20016_sequence.svg index d4b48143..89325121 100644 --- a/docs/test_cases/t20016_sequence.svg +++ b/docs/test_cases/t20016_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,53 +9,53 @@ - - - - - + + + + + - - + + tmain() - + tmain() - - + + B<long> - + B<long> - - + + A - + A - - - - - - + + + + + + b1(long) - + a1(int) - + b2(long) - + a2(const long &) diff --git a/docs/test_cases/t20017.md b/docs/test_cases/t20017.md index 3975b57b..045dd69e 100644 --- a/docs/test_cases/t20017.md +++ b/docs/test_cases/t20017.md @@ -49,7 +49,7 @@ int tmain() { return b2(a1(a2(a3(1, 2), b1(3, 4)), 5), 6); } { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20017_sequence.svg b/docs/test_cases/t20017_sequence.svg index 01798be1..95a4fd0e 100644 --- a/docs/test_cases/t20017_sequence.svg +++ b/docs/test_cases/t20017_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,65 +9,65 @@ - - - - - - + + + + + + - + t20017.cc - + t20017.cc - + include/t20017_a.h - + include/t20017_a.h - + include/t20017_b.h - + include/t20017_b.h - - - - - - + + + + + + tmain() - + a3(int,int) - + b1(int,int) - + a2(int,int) - + a1(int,int) - + b2<int>(int,int) diff --git a/docs/test_cases/t20018.md b/docs/test_cases/t20018.md index 890dc55c..16e70b87 100644 --- a/docs/test_cases/t20018.md +++ b/docs/test_cases/t20018.md @@ -54,7 +54,7 @@ void tmain() { Answer>::print(); } { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20018_sequence.svg b/docs/test_cases/t20018_sequence.svg index 93795027..40155c7f 100644 --- a/docs/test_cases/t20018_sequence.svg +++ b/docs/test_cases/t20018_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,14 +9,14 @@ - - - - - - - - + + + + + + + + @@ -25,93 +25,93 @@ - - + + tmain() - + tmain() - - + + Answer<Factorial<5>,120> - + Answer<Factorial<5>,120> - - + + Factorial<5> - + Factorial<5> - - + + Factorial<4> - + Factorial<4> - - + + Factorial<3> - + Factorial<3> - - + + Factorial<2> - + Factorial<2> - - + + Factorial<1> - + Factorial<1> - - + + Factorial<0> - + Factorial<0> - - - - - - - - - + + + + + + + + + print() - + print(int) - + print(int) - + print(int) - + print(int) - + print(int) - + print(int) diff --git a/docs/test_cases/t20019.md b/docs/test_cases/t20019.md index 556779d0..e9909884 100644 --- a/docs/test_cases/t20019.md +++ b/docs/test_cases/t20019.md @@ -61,7 +61,7 @@ void tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20019_sequence.svg b/docs/test_cases/t20019_sequence.svg index e65d2922..bdead618 100644 --- a/docs/test_cases/t20019_sequence.svg +++ b/docs/test_cases/t20019_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,95 +9,95 @@ - - - - - - - - - + + + + + + + + + - - + + tmain() - + tmain() - - + + Base<D1> - + Base<D1> - - + + D1 - + D1 - - + + Base<D2> - + Base<D2> - - + + D2 - + D2 - - - - - - - - - - + + + + + + + + + + name() - + impl() - + name() - + impl() - + name() - + impl() - + name() - + impl() diff --git a/docs/test_cases/t20020.md b/docs/test_cases/t20020.md index c507bf75..72502e5c 100644 --- a/docs/test_cases/t20020.md +++ b/docs/test_cases/t20020.md @@ -113,7 +113,7 @@ int tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20020_sequence.svg b/docs/test_cases/t20020_sequence.svg index 792a372c..2e3244d8 100644 --- a/docs/test_cases/t20020_sequence.svg +++ b/docs/test_cases/t20020_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,78 +9,78 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - - - + + + - - + + tmain() - + tmain() - - + + A - + A - - + + C - + C - - + + B - + B - - + + D<int> - + D<int> - - - - - - - - - - - - - + + + + + + + + + + + + + alt - + a1() @@ -91,7 +91,7 @@ alt - + [ @@ -100,7 +100,7 @@ - + [ @@ -109,7 +109,7 @@ - + b1() @@ -117,7 +117,7 @@ - + [ @@ -126,21 +126,21 @@ - + b2() - + a4() - + log() @@ -148,7 +148,7 @@ alt - + c1() const @@ -156,7 +156,7 @@ alt - + @@ -169,7 +169,7 @@ - + @@ -179,7 +179,7 @@ alt - + d1(int,int) diff --git a/docs/test_cases/t20021.md b/docs/test_cases/t20021.md index 5a3e5a64..51655b5e 100644 --- a/docs/test_cases/t20021.md +++ b/docs/test_cases/t20021.md @@ -84,7 +84,7 @@ int tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20021_sequence.svg b/docs/test_cases/t20021_sequence.svg index 3fcea5f8..b32655fb 100644 --- a/docs/test_cases/t20021_sequence.svg +++ b/docs/test_cases/t20021_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,74 +9,74 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - + + tmain() - + tmain() - - + + C - + C - - + + A - + A - - + + B - + B - - - - - - - - - - - - + + + + + + + + + + + + loop - + [ c4() ] - + @@ -89,7 +89,7 @@ - + a3() @@ -102,7 +102,7 @@ loop - + [ @@ -111,7 +111,7 @@ - + [ @@ -120,7 +120,7 @@ - + [ @@ -129,14 +129,14 @@ - + a1() - + [ @@ -148,7 +148,7 @@ loop - + b2() const @@ -158,7 +158,7 @@ loop - + [ @@ -167,7 +167,7 @@ - + b2() const diff --git a/docs/test_cases/t20022.md b/docs/test_cases/t20022.md index 021c61dd..e506c3b2 100644 --- a/docs/test_cases/t20022.md +++ b/docs/test_cases/t20022.md @@ -64,7 +64,7 @@ int tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20022_sequence.svg b/docs/test_cases/t20022_sequence.svg index cf72412c..422b80f9 100644 --- a/docs/test_cases/t20022_sequence.svg +++ b/docs/test_cases/t20022_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,47 +9,47 @@ - - - - + + + + - - + + tmain() - + tmain() - - + + A - + A - - + + B - + B - - - - - + + + + + A(std::unique_ptr ) - + a() - + b() diff --git a/docs/test_cases/t20023.md b/docs/test_cases/t20023.md index 7fc81fb7..75deea9d 100644 --- a/docs/test_cases/t20023.md +++ b/docs/test_cases/t20023.md @@ -67,7 +67,7 @@ int tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20023_sequence.svg b/docs/test_cases/t20023_sequence.svg index b4aa70d4..e98d2622 100644 --- a/docs/test_cases/t20023_sequence.svg +++ b/docs/test_cases/t20023_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,37 +9,37 @@ - - - - - - - + + + + + + + - - + + tmain() - + tmain() - - + + A - + A - - - - - - - + + + + + + + a() @@ -47,7 +47,7 @@ try - + @@ -60,7 +60,7 @@ [std::runtime_error &] - + @@ -73,7 +73,7 @@ [std::logic_error &] - + @@ -86,7 +86,7 @@ [...] - + diff --git a/docs/test_cases/t20024.md b/docs/test_cases/t20024.md index 6ad9fc7d..b670cf81 100644 --- a/docs/test_cases/t20024.md +++ b/docs/test_cases/t20024.md @@ -92,7 +92,7 @@ int tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20024_sequence.svg b/docs/test_cases/t20024_sequence.svg index 89454c92..bc13be6e 100644 --- a/docs/test_cases/t20024_sequence.svg +++ b/docs/test_cases/t20024_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,23 +9,23 @@ - - - - - - - - - - - - + + + + + + + + + + + + - + @@ -33,36 +33,36 @@ - - + + tmain() - + tmain() - - + + A - + A - - + + B - + B - - - - - - - - - - - - + + + + + + + + + + + + select(enum_a) @@ -72,7 +72,7 @@ switch [zero] - + @@ -85,7 +85,7 @@ [one] - + @@ -98,7 +98,7 @@ [two] - + @@ -111,7 +111,7 @@ [default] - + @@ -124,7 +124,7 @@ - + select(colors) @@ -134,7 +134,7 @@ switch [enum colors::red] - + @@ -143,7 +143,7 @@ [enum colors::orange] - + @@ -152,7 +152,7 @@ [enum colors::green] - + @@ -161,7 +161,7 @@ [default] - + diff --git a/docs/test_cases/t20025.md b/docs/test_cases/t20025.md index ed3d804d..ee850449 100644 --- a/docs/test_cases/t20025.md +++ b/docs/test_cases/t20025.md @@ -72,7 +72,7 @@ int tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20025_sequence.svg b/docs/test_cases/t20025_sequence.svg index 909b3340..0cccb747 100644 --- a/docs/test_cases/t20025_sequence.svg +++ b/docs/test_cases/t20025_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,41 +9,41 @@ - - - - + + + + - - + + tmain() - + tmain() - - + + A - + A - - + + add(int,int) - + add(int,int) - - - - - + + + + + a() - + @@ -52,7 +52,7 @@ - + diff --git a/docs/test_cases/t20026.md b/docs/test_cases/t20026.md index 43156a7e..795a403e 100644 --- a/docs/test_cases/t20026.md +++ b/docs/test_cases/t20026.md @@ -52,7 +52,7 @@ int tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20026_sequence.svg b/docs/test_cases/t20026_sequence.svg index 1cbb9cc9..f141d5ad 100644 --- a/docs/test_cases/t20026_sequence.svg +++ b/docs/test_cases/t20026_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,25 +9,25 @@ - - + + - - + + tmain() - + tmain() - - + + A - + A - - - + + + a() diff --git a/docs/test_cases/t20027.md b/docs/test_cases/t20027.md index f9f994eb..42291c62 100644 --- a/docs/test_cases/t20027.md +++ b/docs/test_cases/t20027.md @@ -51,7 +51,7 @@ void tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20027_sequence.svg b/docs/test_cases/t20027_sequence.svg index d541e451..08ebdaed 100644 --- a/docs/test_cases/t20027_sequence.svg +++ b/docs/test_cases/t20027_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,25 +9,25 @@ - - + + - - + + tmain() - + tmain() - - + + A - + A - - - + + + a() diff --git a/docs/test_cases/t20028.md b/docs/test_cases/t20028.md index 724dc4b5..5a363ba3 100644 --- a/docs/test_cases/t20028.md +++ b/docs/test_cases/t20028.md @@ -61,7 +61,7 @@ int tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20028_sequence.svg b/docs/test_cases/t20028_sequence.svg index 10c4e2bb..e518528e 100644 --- a/docs/test_cases/t20028_sequence.svg +++ b/docs/test_cases/t20028_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,36 +9,36 @@ - - - - - - + + + + + + - - + + tmain() - + tmain() - - + + A - + A - - - - - + + + + + alt - + [ @@ -47,14 +47,14 @@ - + b() - + c() @@ -62,7 +62,7 @@ - + d() diff --git a/docs/test_cases/t20029.md b/docs/test_cases/t20029.md index 7f5be4fc..98a724c6 100644 --- a/docs/test_cases/t20029.md +++ b/docs/test_cases/t20029.md @@ -105,7 +105,7 @@ int tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20029_sequence.svg b/docs/test_cases/t20029_sequence.svg index 5e59ceb0..4a8ef24e 100644 --- a/docs/test_cases/t20029_sequence.svg +++ b/docs/test_cases/t20029_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,60 +9,60 @@ - - - - - - - - - - - + + + + + + + + + + + - - + + tmain() - + tmain() - - + + Encoder<Retrier<ConnectionPool>> - + Encoder<Retrier<ConnectionPool>> - - + + Retrier<ConnectionPool> - + Retrier<ConnectionPool> - - + + ConnectionPool - + ConnectionPool - - + + encode_b64(std::string &&) - + encode_b64(std::string &&) - - - - - - - - + + + + + + + + connect() @@ -73,21 +73,21 @@ alt - + [ send(std::string &&) ] - + encode(std::string &&) - + @@ -97,7 +97,7 @@ - + send(std::string &&) @@ -108,7 +108,7 @@ alt - + [ diff --git a/docs/test_cases/t20030.md b/docs/test_cases/t20030.md index 227ec843..94071601 100644 --- a/docs/test_cases/t20030.md +++ b/docs/test_cases/t20030.md @@ -79,7 +79,7 @@ int tmain(bool f, int a) { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20030_sequence.svg b/docs/test_cases/t20030_sequence.svg index 706b476e..66ebed99 100644 --- a/docs/test_cases/t20030_sequence.svg +++ b/docs/test_cases/t20030_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,81 +9,81 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + + tmain(int) - + tmain(int) - - + + magic() - + magic() - - + + A - + A - - + + tmain(bool,int) - + tmain(bool,int) - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + A(int) - + operator+=(int) - + @@ -92,36 +92,36 @@ - + A() - + create() - + A() - + create() - + operator+=(int) - + @@ -130,12 +130,12 @@ - + operator=(const A &) - + @@ -144,7 +144,7 @@ - + value() const diff --git a/docs/test_cases/t20031.md b/docs/test_cases/t20031.md index 457fe343..b04ad027 100644 --- a/docs/test_cases/t20031.md +++ b/docs/test_cases/t20031.md @@ -95,7 +95,7 @@ int tmain(bool f, int a) { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20031_sequence.svg b/docs/test_cases/t20031_sequence.svg index b676e63b..20bf1996 100644 --- a/docs/test_cases/t20031_sequence.svg +++ b/docs/test_cases/t20031_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,64 +9,64 @@ - - - - - + + + + + - - + + tmain(int) - + tmain(int) - - + + magic() - + magic() - - + + tmain(bool,int) - + tmain(bool,int) - - + + execute(std::function<int ()>) - + execute(std::function<int ()>) - - + + A - + A - - - - - - + + + + + + - + - + value() const diff --git a/docs/test_cases/t20032.md b/docs/test_cases/t20032.md index aac8cde3..9f286ece 100644 --- a/docs/test_cases/t20032.md +++ b/docs/test_cases/t20032.md @@ -55,7 +55,7 @@ void tmain(int argc, char **argv) { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20032_sequence.svg b/docs/test_cases/t20032_sequence.svg index a1750726..4b787e61 100644 --- a/docs/test_cases/t20032_sequence.svg +++ b/docs/test_cases/t20032_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,47 +9,47 @@ - - - - - - - + + + + + + + - - + + tmain(int,char **) - + tmain(int,char **) - - + + B - + B - - + + A - + A - - - - - - - - + + + + + + + + b(int) - + a1(int) @@ -60,12 +60,12 @@ int - + b(double) - + a2(double) @@ -76,12 +76,12 @@ double - + b(const char *) - + a3(const char *) diff --git a/docs/test_cases/t20033.md b/docs/test_cases/t20033.md index f7ac8229..e60ae4b2 100644 --- a/docs/test_cases/t20033.md +++ b/docs/test_cases/t20033.md @@ -93,7 +93,7 @@ int tmain() { "diagram_type": "sequence", "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t20033_sequence.svg b/docs/test_cases/t20033_sequence.svg index e4e513fb..668b88bc 100644 --- a/docs/test_cases/t20033_sequence.svg +++ b/docs/test_cases/t20033_sequence.svg @@ -1,6 +1,6 @@ - + @@ -9,73 +9,73 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - - - - - + + + + + - + - - + + tmain() - + tmain() - - + + A - + A - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + alt [false] [reinterpret_cast<uint64_t>(&a) % 100 == 0ULL] - + a1() @@ -86,7 +86,7 @@ alt [reinterpret_cast<uint64_t>(&a) % 64 == 0ULL] - + a2() @@ -95,7 +95,7 @@ [a.a2() == 2 && a.a3() == 3] - + [ @@ -104,7 +104,7 @@ - + [ @@ -113,7 +113,7 @@ - + a3() @@ -121,7 +121,7 @@ - + a4() @@ -132,7 +132,7 @@ alt [int i = a.a2(); i != 2] - + [ @@ -141,7 +141,7 @@ - + a3() @@ -152,7 +152,7 @@ loop [int i = 0; i < a.a2(); i++] - + [ @@ -161,14 +161,14 @@ - + a3() - + a3() @@ -179,7 +179,7 @@ loop [retry_count--] - + a2() @@ -190,14 +190,14 @@ loop [retry_count++ < a.a3()] - + a4() - + [ @@ -210,7 +210,7 @@ alt [a.a4() % 6] - + [ @@ -224,7 +224,7 @@ loop [ints] - + a4() diff --git a/docs/test_cases/t30001.md b/docs/test_cases/t30001.md index 1ae2b7ee..ff3197aa 100644 --- a/docs/test_cases/t30001.md +++ b/docs/test_cases/t30001.md @@ -239,7 +239,7 @@ namespace BB { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t30001_package.svg b/docs/test_cases/t30001_package.svg index eb60aee3..9bee96e1 100644 --- a/docs/test_cases/t30001_package.svg +++ b/docs/test_cases/t30001_package.svg @@ -1,6 +1,6 @@ - + @@ -9,63 +9,63 @@ - - + + A - - + + AA - - + + B - - + + AA - - + + AAA - - + + BBB - - + + BB - - + + AAA - - + + BBB - - + + BB - + A AAA note... - + This is namespace AA in namespace A - + This is namespace AA in namespace B diff --git a/docs/test_cases/t30002.md b/docs/test_cases/t30002.md index 84ee4b72..59d48670 100644 --- a/docs/test_cases/t30002.md +++ b/docs/test_cases/t30002.md @@ -487,7 +487,7 @@ template std::map> cm() } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t30002_package.svg b/docs/test_cases/t30002_package.svg index 5d2b6a36..87ed5137 100644 --- a/docs/test_cases/t30002_package.svg +++ b/docs/test_cases/t30002_package.svg @@ -1,6 +1,6 @@ - + @@ -9,118 +9,118 @@ - - + + A - - + + AA - - + + B - - + + BB - - + + A1 - - + + A2 - - + + A3 - - + + A4 - - + + A5 - - + + A6 - - + + A7 - - + + A8 - - + + A9 - - + + A10 - - + + A11 - - + + A12 - - + + A13 - - + + A14 - - + + A15 - - + + A16 - - + + A17 - - + + A18 - - + + BBB diff --git a/docs/test_cases/t30003.md b/docs/test_cases/t30003.md index 0a3f8099..02d6763b 100644 --- a/docs/test_cases/t30003.md +++ b/docs/test_cases/t30003.md @@ -169,7 +169,7 @@ class B : public ns1::ns2::Anon { }; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t30003_package.svg b/docs/test_cases/t30003_package.svg index 2fdc2480..1dfa0e3a 100644 --- a/docs/test_cases/t30003_package.svg +++ b/docs/test_cases/t30003_package.svg @@ -1,6 +1,6 @@ - + @@ -9,35 +9,35 @@ - - + + ns1 - - + + ns3 «deprecated» - - + + ns1 - - + + ns2_v1_0_0 - - + + ns2_v0_9_0 «deprecated» - - + + ns2 diff --git a/docs/test_cases/t30004.md b/docs/test_cases/t30004.md index b49edf13..c9b65ab9 100644 --- a/docs/test_cases/t30004.md +++ b/docs/test_cases/t30004.md @@ -180,7 +180,7 @@ namespace CCC { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t30004_package.svg b/docs/test_cases/t30004_package.svg index 1eebf827..b4155014 100644 --- a/docs/test_cases/t30004_package.svg +++ b/docs/test_cases/t30004_package.svg @@ -1,6 +1,6 @@ - + @@ -9,40 +9,40 @@ - - + + A - + Package AAA. - + Package BBB. - + CCCC package note. - + We skipped DDD. - - + + AAA - - + + BBB - - + + CCC - - + + EEE diff --git a/docs/test_cases/t30005.md b/docs/test_cases/t30005.md index 9d19d7c3..64936c9a 100644 --- a/docs/test_cases/t30005.md +++ b/docs/test_cases/t30005.md @@ -214,7 +214,7 @@ struct C2 { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t30005_package.svg b/docs/test_cases/t30005_package.svg index 6488f001..e5c74f8e 100644 --- a/docs/test_cases/t30005_package.svg +++ b/docs/test_cases/t30005_package.svg @@ -1,6 +1,6 @@ - + @@ -9,48 +9,48 @@ - - + + A - - + + AA - - + + B - - + + BB - - + + C - - + + CC - - + + AAA - - + + BBB - - + + CCC diff --git a/docs/test_cases/t30006.md b/docs/test_cases/t30006.md index e2f49109..71374957 100644 --- a/docs/test_cases/t30006.md +++ b/docs/test_cases/t30006.md @@ -128,7 +128,7 @@ struct A2 { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t30006_package.svg b/docs/test_cases/t30006_package.svg index 68430a9b..cdf6c13e 100644 --- a/docs/test_cases/t30006_package.svg +++ b/docs/test_cases/t30006_package.svg @@ -1,6 +1,6 @@ - + @@ -9,22 +9,22 @@ - - + + B - - + + A - - + + C - + Top A note. diff --git a/docs/test_cases/t30007.md b/docs/test_cases/t30007.md index 3ff89b32..8d73b9f4 100644 --- a/docs/test_cases/t30007.md +++ b/docs/test_cases/t30007.md @@ -151,7 +151,7 @@ struct A2 { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t30007_package.svg b/docs/test_cases/t30007_package.svg index d4eac2c8..84878143 100644 --- a/docs/test_cases/t30007_package.svg +++ b/docs/test_cases/t30007_package.svg @@ -1,6 +1,6 @@ - + @@ -9,27 +9,27 @@ - - + + A - - + + B - - + + AA - - + + C - + Compare layout with t30006. diff --git a/docs/test_cases/t30008.md b/docs/test_cases/t30008.md index 85355c6d..cb0a3993 100644 --- a/docs/test_cases/t30008.md +++ b/docs/test_cases/t30008.md @@ -211,7 +211,7 @@ struct FF { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t30008_package.svg b/docs/test_cases/t30008_package.svg index 2998e74b..0636cd4f 100644 --- a/docs/test_cases/t30008_package.svg +++ b/docs/test_cases/t30008_package.svg @@ -1,6 +1,6 @@ - + @@ -9,43 +9,43 @@ - - + + dependants - - + + dependencies - - + + A - - + + B - - + + C - - + + D - - + + E - - + + F diff --git a/docs/test_cases/t30009.md b/docs/test_cases/t30009.md index 5941d6bb..5f7fc7d5 100644 --- a/docs/test_cases/t30009.md +++ b/docs/test_cases/t30009.md @@ -217,7 +217,7 @@ namespace D { } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t30009_package.svg b/docs/test_cases/t30009_package.svg index eb9240f5..68e9439d 100644 --- a/docs/test_cases/t30009_package.svg +++ b/docs/test_cases/t30009_package.svg @@ -1,6 +1,6 @@ - + @@ -9,53 +9,53 @@ - - + + One - - + + Two - - + + B - - + + D - - + + A - - + + C - - + + A - - + + B - - + + C - - + + D diff --git a/docs/test_cases/t30010.md b/docs/test_cases/t30010.md index d0c341b8..88fb4a97 100644 --- a/docs/test_cases/t30010.md +++ b/docs/test_cases/t30010.md @@ -85,7 +85,7 @@ App app; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t30011.md b/docs/test_cases/t30011.md index 236f786d..cc929df7 100644 --- a/docs/test_cases/t30011.md +++ b/docs/test_cases/t30011.md @@ -75,7 +75,7 @@ struct t30011_App app; } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t40001.md b/docs/test_cases/t40001.md index 5543a251..b92db381 100644 --- a/docs/test_cases/t40001.md +++ b/docs/test_cases/t40001.md @@ -101,7 +101,7 @@ diagrams: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t40001_include.svg b/docs/test_cases/t40001_include.svg index 618c7a86..07ddd16a 100644 --- a/docs/test_cases/t40001_include.svg +++ b/docs/test_cases/t40001_include.svg @@ -1,6 +1,6 @@ - + @@ -9,43 +9,43 @@ - + src - + include - + lib1 - - + + t40001.cc - - + + t40001_include1.h - - + + lib1.h - + string - + vector - + yaml-cpp/yaml.h - + This is a lib1 include dir - + This is a t40001_include1.h include file diff --git a/docs/test_cases/t40002.md b/docs/test_cases/t40002.md index 393e8733..4135e42c 100644 --- a/docs/test_cases/t40002.md +++ b/docs/test_cases/t40002.md @@ -119,7 +119,7 @@ diagrams: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t40002_include.svg b/docs/test_cases/t40002_include.svg index 1514ffee..6b1169a0 100644 --- a/docs/test_cases/t40002_include.svg +++ b/docs/test_cases/t40002_include.svg @@ -1,6 +1,6 @@ - + @@ -9,46 +9,46 @@ - + src - + lib1 - + lib2 - + include - + lib1 - + lib2 - - + + t40002.cc - - + + lib1.cc - - + + lib2.cc - - + + lib1.h - - + + lib2.h diff --git a/docs/test_cases/t40003.md b/docs/test_cases/t40003.md index 96bb24eb..44a32499 100644 --- a/docs/test_cases/t40003.md +++ b/docs/test_cases/t40003.md @@ -145,7 +145,7 @@ diagrams: } ], "metadata": { - "clang_uml_version": "0.3.7-49-g3bd8f7f", + "clang_uml_version": "0.3.7-55-gfb370ad", "llvm_version": "Ubuntu clang version 15.0.6", "schema_version": 1 }, diff --git a/docs/test_cases/t40003_include.svg b/docs/test_cases/t40003_include.svg index 0eca7b70..b26e8844 100644 --- a/docs/test_cases/t40003_include.svg +++ b/docs/test_cases/t40003_include.svg @@ -1,6 +1,6 @@ - + @@ -9,66 +9,66 @@ - + src - + dependants - + dependencies - + include - + dependants - + dependencies - - + + t1.cc - - + + t2.cc - - + + t3.h - - + + t2.h - - + + t1.h - - + + t3.h - - + + t2.h - - + + t1.h - - + + t5.h diff --git a/tests/t00003/.clang-uml b/tests/t00003/.clang-uml index b543b19e..b783db86 100644 --- a/tests/t00003/.clang-uml +++ b/tests/t00003/.clang-uml @@ -5,8 +5,7 @@ diagrams: type: class glob: - ../../tests/t00003/t00003.cc - using_namespace: - - clanguml::t00003 + using_namespace: clanguml::t00003 include: namespaces: - clanguml::t00003 diff --git a/thirdparty/indicators/indicators.hpp b/thirdparty/indicators/indicators.hpp index c961a93e..26295832 100644 --- a/thirdparty/indicators/indicators.hpp +++ b/thirdparty/indicators/indicators.hpp @@ -46,6 +46,7 @@ enum class ProgressType { incremental, decremental }; #include #include +#include // Detect target's platform and set some macros in order to wrap platform // specific code this library depends on. diff --git a/uml/sequence/diagram_generate_generic_sequence.yml b/uml/sequence/diagram_generate_generic_sequence.yml index 257c97b7..024e8566 100644 --- a/uml/sequence/diagram_generate_generic_sequence.yml +++ b/uml/sequence/diagram_generate_generic_sequence.yml @@ -12,4 +12,4 @@ exclude: paths: - src/common/model/source_location.h start_from: - - function: "clanguml::common::generators::generate_diagram(const std::string &,const std::string &,std::shared_ptr,const common::compilation_database &,const std::vector &,const std::vector &,bool,std::function &&)" + - function: "clanguml::common::generators::generate_diagram(const std::string &,const std::string &,std::shared_ptr,const common::compilation_database &,const std::vector &,const cli::runtime_config &,std::function &&)" \ No newline at end of file