# t20017 - Test case for combine_free_functions_into_file_participants option ## Config ```yaml diagrams: t20017_sequence: type: sequence combine_free_functions_into_file_participants: true glob: - t20017.cc include: namespaces: - clanguml::t20017 paths: - . using_namespace: - clanguml::t20017 from: - function: "clanguml::t20017::tmain()" ``` ## Source code File `tests/t20017/t20017_b.cc` ```cpp #include "include/t20017_b.h" namespace clanguml { namespace t20017 { int b1(int x, int y) { return x - y; } } } ``` File `tests/t20017/t20017.cc` ```cpp #include "include/t20017_a.h" #include "include/t20017_b.h" namespace clanguml { namespace t20017 { int tmain() { return b2(a1(a2(a3(1, 2), b1(3, 4)), 5), 6); } } } ``` File `tests/t20017/include/t20017_a.h` ```cpp #pragma once namespace clanguml { namespace t20017 { int a1(int x, int y) { return x + y; } int a2(int x, int y) { return x - y; } int a3(int x, int y) { return x * y; } } } ``` File `tests/t20017/include/t20017_b.h` ```cpp #pragma once namespace clanguml { namespace t20017 { int b1(int x, int y); template T b2(T x, T y) { return x / y; } } } ``` ## Generated PlantUML diagrams ![t20017_sequence](./t20017_sequence.svg "Test case for combine_free_functions_into_file_participants option") ## Generated Mermaid diagrams ![t20017_sequence](./t20017_sequence_mermaid.svg "Test case for combine_free_functions_into_file_participants option") ## Generated JSON models ```json { "diagram_type": "sequence", "name": "t20017_sequence", "participants": [ { "activities": [ { "display_name": "tmain()", "full_name": "clanguml::t20017::tmain()", "id": "11877971460370368922", "name": "tmain", "namespace": "clanguml::t20017", "source_location": { "column": 5, "file": "t20017.cc", "line": 6, "translation_unit": "t20017.cc" }, "type": "function" } ], "display_name": "t20017.cc", "full_name": "clanguml::t20017::tmain()", "id": "2354659210590392173", "name": "t20017.cc", "namespace": "clanguml::t20017", "type": "file" }, { "activities": [ { "display_name": "a3(int,int)", "full_name": "clanguml::t20017::a3(int,int)", "id": "13451136402018087431", "name": "a3", "namespace": "clanguml::t20017", "source_location": { "column": 5, "file": "include/t20017_a.h", "line": 7, "translation_unit": "t20017.cc" }, "type": "function" }, { "display_name": "a2(int,int)", "full_name": "clanguml::t20017::a2(int,int)", "id": "2332428341946922072", "name": "a2", "namespace": "clanguml::t20017", "source_location": { "column": 5, "file": "include/t20017_a.h", "line": 6, "translation_unit": "t20017.cc" }, "type": "function" }, { "display_name": "a1(int,int)", "full_name": "clanguml::t20017::a1(int,int)", "id": "910077415514641696", "name": "a1", "namespace": "clanguml::t20017", "source_location": { "column": 5, "file": "include/t20017_a.h", "line": 5, "translation_unit": "t20017.cc" }, "type": "function" } ], "display_name": "include/t20017_a.h", "full_name": "clanguml::t20017::a3(int,int)", "id": "12729782938109116085", "name": "t20017_a.h", "namespace": "clanguml::t20017", "type": "file" }, { "activities": [ { "display_name": "b1(int,int)", "full_name": "clanguml::t20017::b1(int,int)", "id": "13714222710448845623", "name": "b1", "namespace": "clanguml::t20017", "source_location": { "column": 5, "file": "include/t20017_b.h", "line": 5, "translation_unit": "t20017.cc" }, "type": "function" }, { "display_name": "b2(int,int)", "full_name": "clanguml::t20017::b2(int,int)", "id": "6200648931716044224", "name": "b2", "namespace": "clanguml::t20017", "source_location": { "column": 25, "file": "include/t20017_b.h", "line": 7, "translation_unit": "t20017.cc" }, "type": "function_template" } ], "display_name": "include/t20017_b.h", "full_name": "clanguml::t20017::b1(int,int)", "id": "8908892313465514924", "name": "t20017_b.h", "namespace": "clanguml::t20017", "type": "file" } ], "sequences": [ { "messages": [ { "from": { "activity_id": "11877971460370368922", "participant_id": "2354659210590392173" }, "name": "a3(int,int)", "return_type": "int", "scope": "normal", "source_location": { "column": 31, "file": "t20017.cc", "line": 6, "translation_unit": "t20017.cc" }, "to": { "activity_id": "13451136402018087431", "participant_id": "12729782938109116085" }, "type": "message" }, { "from": { "activity_id": "11877971460370368922", "participant_id": "2354659210590392173" }, "name": "b1(int,int)", "return_type": "int", "scope": "normal", "source_location": { "column": 41, "file": "t20017.cc", "line": 6, "translation_unit": "t20017.cc" }, "to": { "activity_id": "13714222710448845623", "participant_id": "8908892313465514924" }, "type": "message" }, { "from": { "activity_id": "11877971460370368922", "participant_id": "2354659210590392173" }, "name": "a2(int,int)", "return_type": "int", "scope": "normal", "source_location": { "column": 28, "file": "t20017.cc", "line": 6, "translation_unit": "t20017.cc" }, "to": { "activity_id": "2332428341946922072", "participant_id": "12729782938109116085" }, "type": "message" }, { "from": { "activity_id": "11877971460370368922", "participant_id": "2354659210590392173" }, "name": "a1(int,int)", "return_type": "int", "scope": "normal", "source_location": { "column": 25, "file": "t20017.cc", "line": 6, "translation_unit": "t20017.cc" }, "to": { "activity_id": "910077415514641696", "participant_id": "12729782938109116085" }, "type": "message" }, { "from": { "activity_id": "11877971460370368922", "participant_id": "2354659210590392173" }, "name": "b2(int,int)", "return_type": "", "scope": "normal", "source_location": { "column": 22, "file": "t20017.cc", "line": 6, "translation_unit": "t20017.cc" }, "to": { "activity_id": "6200648931716044224", "participant_id": "8908892313465514924" }, "type": "message" } ], "return_type": "int", "start_from": { "id": "11877971460370368922", "location": "clanguml::t20017::tmain()" } } ], "using_namespace": "clanguml::t20017" } ```