aboutsummaryrefslogtreecommitdiff
path: root/doc/g3.gv
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-05-28 23:36:59 +0800
committerTeddy <ted.sybil@gmail.com>2014-05-28 23:36:59 +0800
commitff48776ab7a4a440f348c1eca400529b50d73beb (patch)
tree1534eef83c86c55d05eba2f50c2f1f69e71824f3 /doc/g3.gv
parentd765f0e644528a07da8985822eda61e7454081ff (diff)
move docs to a seperate dir
Diffstat (limited to 'doc/g3.gv')
-rw-r--r--doc/g3.gv16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/g3.gv b/doc/g3.gv
new file mode 100644
index 0000000..7dcf088
--- /dev/null
+++ b/doc/g3.gv
@@ -0,0 +1,16 @@
+digraph G {
+ a [shape = box, fontname = "monospace", label = "struct A"];
+ b [shape = box, fontname = "monospace", label = "b :: struct B"];
+ c [shape = box, fontname = "monospace", label = "i :: int"];
+ d [shape = box, fontname = "monospace", label = "j :: int"];
+ e [shape = box, fontname = "monospace", label = "x :: int"];
+ f [shape = box, fontname = "monospace", label = "y :: int"];
+ g [shape = box, fontname = "monospace", label = "next :: ptr"];
+ a -> b;
+ b -> c;
+ b -> d;
+ a -> e;
+ a -> f;
+ a -> g;
+ g -> a;
+}