21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
node [shape=box,style=filled];
"common" [label="common module"];
subgraph cluster_megatest {
label="megatest";
"common" -> "api" -> "rmt";
"common" -> "rmt";
}
// subgraph cluster_code_hierarchy {
// label="Packets";
// "SPKTS" [ label = "Sensor Packets" ];
|
>
>
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
node [shape=box,style=filled];
"common" [label="common module"];
subgraph cluster_megatest {
label="megatest";
"process" -> "common" -> "megamod" -> "api";
"megamod" -> "rmt";
"common" -> "api" -> "rmt";
"common" -> "rmt";
}
// subgraph cluster_code_hierarchy {
// label="Packets";
// "SPKTS" [ label = "Sensor Packets" ];
|