# t20042 - Test case for template overload pattern ## Config ```yaml diagrams: t20042_sequence: type: sequence glob: - t20042.cc include: namespaces: - clanguml::t20042 using_namespace: clanguml::t20042 from: - function: "clanguml::t20042::tmain()" ``` ## Source code File `tests/t20042/t20042.cc` ```cpp namespace clanguml { namespace t20042 { struct A { }; struct AHandler { void handle(A &a) const { } void operator()(A &a) const { handle(a); } }; struct B { }; struct BHandler { void handle(B &b) const { } void operator()(B &b) const { handle(b); } }; template struct Overload : public Bases... { using Bases::operator()...; }; template Overload(Bases...) -> Overload; void tmain() { Overload dispatch; A a; B b; dispatch(a); dispatch(b); } } } ``` ## Generated PlantUML diagrams ![t20042_sequence](./t20042_sequence.svg "Test case for template overload pattern") ## Generated Mermaid diagrams ![t20042_sequence](./t20042_sequence_mermaid.svg "Test case for template overload pattern") ## Generated JSON models ```json { "diagram_type": "sequence", "name": "t20042_sequence", "participants": [ { "display_name": "tmain()", "full_name": "clanguml::t20042::tmain()", "id": "4872095787380026130", "name": "tmain", "namespace": "clanguml::t20042", "source_location": { "column": 6, "file": "t20042.cc", "line": 20, "translation_unit": "t20042.cc" }, "type": "function" }, { "activities": [ { "display_name": "operator()(A &) const", "full_name": "clanguml::t20042::AHandler::operator()(A &) const", "id": "14425206953366503609", "name": "operator()", "namespace": "", "source_location": { "column": 10, "file": "t20042.cc", "line": 6, "translation_unit": "t20042.cc" }, "type": "method" }, { "display_name": "handle(A &) const", "full_name": "clanguml::t20042::AHandler::handle(A &) const", "id": "4047351664821657638", "name": "handle", "namespace": "", "source_location": { "column": 10, "file": "t20042.cc", "line": 5, "translation_unit": "t20042.cc" }, "type": "method" } ], "display_name": "AHandler", "full_name": "clanguml::t20042::AHandler", "id": "1352237670003855986", "name": "AHandler", "namespace": "clanguml::t20042", "source_location": { "column": 8, "file": "t20042.cc", "line": 4, "translation_unit": "t20042.cc" }, "type": "class" }, { "activities": [ { "display_name": "operator()(B &) const", "full_name": "clanguml::t20042::BHandler::operator()(B &) const", "id": "13084092043583426233", "name": "operator()", "namespace": "", "source_location": { "column": 10, "file": "t20042.cc", "line": 12, "translation_unit": "t20042.cc" }, "type": "method" }, { "display_name": "handle(B &) const", "full_name": "clanguml::t20042::BHandler::handle(B &) const", "id": "6955354293189168883", "name": "handle", "namespace": "", "source_location": { "column": 10, "file": "t20042.cc", "line": 11, "translation_unit": "t20042.cc" }, "type": "method" } ], "display_name": "BHandler", "full_name": "clanguml::t20042::BHandler", "id": "15753265830872864301", "name": "BHandler", "namespace": "clanguml::t20042", "source_location": { "column": 8, "file": "t20042.cc", "line": 10, "translation_unit": "t20042.cc" }, "type": "class" } ], "sequences": [ { "messages": [ { "from": { "activity_id": "4872095787380026130", "participant_id": "4872095787380026130" }, "name": "operator()(A &) const", "return_type": "void", "scope": "normal", "source_location": { "column": 5, "file": "t20042.cc", "line": 26, "translation_unit": "t20042.cc" }, "to": { "activity_id": "14425206953366503609", "participant_id": "1352237670003855986" }, "type": "message" }, { "from": { "activity_id": "14425206953366503609", "participant_id": "1352237670003855986" }, "name": "handle(A &) const", "return_type": "void", "scope": "normal", "source_location": { "column": 35, "file": "t20042.cc", "line": 6, "translation_unit": "t20042.cc" }, "to": { "activity_id": "4047351664821657638", "participant_id": "1352237670003855986" }, "type": "message" }, { "from": { "activity_id": "4872095787380026130", "participant_id": "4872095787380026130" }, "name": "operator()(B &) const", "return_type": "void", "scope": "normal", "source_location": { "column": 5, "file": "t20042.cc", "line": 27, "translation_unit": "t20042.cc" }, "to": { "activity_id": "13084092043583426233", "participant_id": "15753265830872864301" }, "type": "message" }, { "from": { "activity_id": "13084092043583426233", "participant_id": "15753265830872864301" }, "name": "handle(B &) const", "return_type": "void", "scope": "normal", "source_location": { "column": 35, "file": "t20042.cc", "line": 12, "translation_unit": "t20042.cc" }, "to": { "activity_id": "6955354293189168883", "participant_id": "15753265830872864301" }, "type": "message" } ], "start_from": { "id": "4872095787380026130", "location": "clanguml::t20042::tmain()" } } ], "using_namespace": "clanguml::t20042" } ```