From ef1e083b6335154afdeb75ff5608a4ad05d7dec0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sven=20P=C3=B6che?= Date: Mon, 23 Aug 2021 20:30:06 +0200 Subject: [PATCH] add missing BiRel_Back, BiRel_Neighbor, BiRel_Back_Neighbor --- C4.puml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/C4.puml b/C4.puml index bef1de5..5cdc678 100644 --- a/C4.puml +++ b/C4.puml @@ -850,14 +850,26 @@ $getRel("<<-->>", $from, $to, $label, $techn, $descr, $sprite, $tags, $link) $getRel("<<--", $from, $to, $label, $techn, $descr, $sprite, $tags, $link) !endprocedure +!unquoted procedure BiRel_Back($from, $to, $label, $techn="", $descr="", $sprite="", $tags="", $link="") +$getRel("<<--", $from, $to, $label, $techn, $descr, $sprite, $tags, $link) +!endprocedure + !unquoted procedure Rel_Neighbor($from, $to, $label, $techn="", $descr="", $sprite="", $tags="", $link="") $getRel("->>", $from, $to, $label, $techn, $descr, $sprite, $tags, $link) !endprocedure +!unquoted procedure BiRel_Neighbor($from, $to, $label, $techn="", $descr="", $sprite="", $tags="", $link="") +$getRel("->>", $from, $to, $label, $techn, $descr, $sprite, $tags, $link) +!endprocedure + !unquoted procedure Rel_Back_Neighbor($from, $to, $label, $techn="", $descr="", $sprite="", $tags="", $link="") $getRel("<<-", $from, $to, $label, $techn, $descr, $sprite, $tags, $link) !endprocedure +!unquoted procedure BiRel_Back_Neighbor($from, $to, $label, $techn="", $descr="", $sprite="", $tags="", $link="") +$getRel("<<-", $from, $to, $label, $techn, $descr, $sprite, $tags, $link) +!endprocedure + !unquoted procedure Rel_D($from, $to, $label, $techn="", $descr="", $sprite="", $tags="", $link="") $getRel("-DOWN->>", $from, $to, $label, $techn, $descr, $sprite, $tags, $link) !endprocedure