Show
Ignore:
Timestamp:
09/15/09 23:47:47 (15 years ago)
Author:
smidl
Message:

simulator + doc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/doc/html/inline_dotgraph_1.dot

    r608 r617  
    11  
    2 digraph datalink { 
    3 rankdir=LR; 
    4 subgraph cluster0 { 
    5 node [shape=record]; 
    6 label = "MAP \n std::map<string,int>"; 
    7 map [label="{{\"a\"| \"b\" | \"c\"} | {<3> 3 |<1> 1|<2> 2}}"]; 
    8 color = "white" 
     2digraph sys{ 
     3        node [shape=box]; 
     4        {"System"} 
     5        node [shape=plaintext] 
     6        {rank="same"; "u"; "System"; "y"} 
     7        "u" -> "System" -> "y" [nodesep=2]; 
    98} 
    10 subgraph cluster1{ 
    11 node [shape=record]; 
    12 label = "NAMES"; 
    13 names [label="{<1> \"b\" | <2> \"c\" | <3>\"a\" }"]; 
    14 color = "white" 
    15 } 
    16 subgraph cluster2{ 
    17 node [shape=record]; 
    18 label = "SIZES"; 
    19 labelloc = b; 
    20 sizes [label="{<1>1 |<2> 4 |<3> 1}"]; 
    21 color = "white" 
    22 } 
    23 map:1 -> names:1; 
    24 map:1 -> sizes:1; 
    25 map:3 -> names:3; 
    26 map:3 -> sizes:3; 
    27 }