checkpoint
[bachelor-thesis/written-stuff.git] / Ausarbeitung / images / Implementation-Diagram.dot
1 digraph G {
2 rankdir="LR"
3 nodesep=0.5
4 ranksep=1
5 pad=0
6 margin=0.2
7 node [ fontname=LMRoman10 ]
8
9 roomba_test [ style=filled, fillcolor=greenyellow, label="application:\nroomba_test" ]
10 mean_correction_test [ style=filled, fillcolor=lightblue, label="application:\nmean_correction_test" ]
11 soft_start_test [ style=filled, fillcolor=tomato, label="application:\nsoft_start_test" ]
12
13 target_value_input_dialog_cc [ style=filled, fillcolor=yellow, shape=note, label="source file:\ntarget_value_input_dialog.cc" ]
14 stuff_cc [ style=filled, fillcolor=yellow, shape=note, label="source file:\nstuff.cc" ]
15 main_cc [ style=filled, fillcolor=greenyellow, shape=note, label="source file:\nmain.cc" ]
16 mean_correction_cc [ style=filled, fillcolor=lightblue, shape=note, label="source file:\nmean_correction.cc" ]
17 soft_start_cc [ style=filled, fillcolor=tomato, shape=note, label="source file:\nsoft_start.cc" ]
18
19 //svnrevision_h [ label="header file:\nsvnrevision.h" ]
20 stuff_h [ style=filled, fillcolor=yellow, shape=note, label="header file:\nstuff.h" ]
21 target_value_input_dialog_h [ style=filled, fillcolor=yellow, shape=note, label="header file:\ntarget_value_input_dialog.h" ]
22 corrected_mean_motion_h [ style=filled, fillcolor=lightblue, shape=note, label="header file:\ncorrected_mean_motion.h" ]
23 soft_start_motion_h [ style=filled, fillcolor=tomato, shape=note, label="header file:\nsoft_start_motion.h" ]
24
25 // generic:
26 stuff_h -> stuff_cc
27 target_value_input_dialog_h -> target_value_input_dialog_cc
28
29 // app: roomba_test
30 stuff_h -> main_cc
31 target_value_input_dialog_h -> main_cc
32 main_cc -> roomba_test
33 stuff_cc -> roomba_test
34 target_value_input_dialog_cc -> roomba_test
35
36 // app: mean_correction_test
37 stuff_h -> mean_correction_cc
38 corrected_mean_motion_h -> mean_correction_cc
39 target_value_input_dialog_h -> mean_correction_cc
40 mean_correction_cc -> mean_correction_test
41 stuff_cc -> mean_correction_test
42 target_value_input_dialog_cc -> mean_correction_test
43
44 // app: soft_start_test
45 stuff_h -> soft_start_cc
46 target_value_input_dialog_h -> soft_start_cc
47 soft_start_motion_h -> soft_start_cc
48 soft_start_cc -> soft_start_test
49 stuff_cc -> soft_start_test
50 target_value_input_dialog_cc -> soft_start_test
51 }
This page took 0.05944 seconds and 5 git commands to generate.