summaryrefslogtreecommitdiff
path: root/chromium/third_party/angle/third_party/rapidjson/src/doc/diagram/architecture.dot
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/angle/third_party/rapidjson/src/doc/diagram/architecture.dot')
-rw-r--r--chromium/third_party/angle/third_party/rapidjson/src/doc/diagram/architecture.dot50
1 files changed, 50 insertions, 0 deletions
diff --git a/chromium/third_party/angle/third_party/rapidjson/src/doc/diagram/architecture.dot b/chromium/third_party/angle/third_party/rapidjson/src/doc/diagram/architecture.dot
new file mode 100644
index 00000000000..c816c871834
--- /dev/null
+++ b/chromium/third_party/angle/third_party/rapidjson/src/doc/diagram/architecture.dot
@@ -0,0 +1,50 @@
+digraph {
+ compound=true
+ fontname="Inconsolata, Consolas"
+ fontsize=10
+ margin="0,0"
+ ranksep=0.2
+ nodesep=0.5
+ penwidth=0.5
+ colorscheme=spectral7
+
+ node [shape=box, fontname="Inconsolata, Consolas", fontsize=10, penwidth=0.5, style=filled, fillcolor=white]
+ edge [fontname="Inconsolata, Consolas", fontsize=10, penwidth=0.5]
+
+ subgraph cluster1 {
+ margin="10,10"
+ labeljust="left"
+ label = "SAX"
+ style=filled
+ fillcolor=6
+
+ Reader -> Writer [style=invis]
+ }
+
+ subgraph cluster2 {
+ margin="10,10"
+ labeljust="left"
+ label = "DOM"
+ style=filled
+ fillcolor=7
+
+ Value
+ Document
+ }
+
+ Handler [label="<<concept>>\nHandler"]
+
+ {
+ edge [arrowtail=onormal, dir=back]
+ Value -> Document
+ Handler -> Document
+ Handler -> Writer
+ }
+
+ {
+ edge [arrowhead=vee, style=dashed, constraint=false]
+ Reader -> Handler [label="calls"]
+ Value -> Handler [label="calls"]
+ Document -> Reader [label="uses"]
+ }
+} \ No newline at end of file