Show
Ignore:
Timestamp:
09/18/09 00:17:38 (15 years ago)
Author:
smidl
Message:

doc + updated tutorial

Files:
1 modified

Legend:

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

    r617 r632  
    11  
    22digraph datalink { 
    3   node [shape=record]; 
    4   subgraph cluster0 { 
    5     label = "Up"; 
    6       up [label="<1>|<2>|<3>|<4>|<5>"]; 
    7     color = "white" 
     3rankdir=LR; 
     4subgraph cluster0 { 
     5node [shape=record]; 
     6label = "MAP \n std::map<string,int>"; 
     7map [label="{{\"a\"| \"b\" | \"c\"} | {<3> 3 |<1> 1|<2> 2}}"]; 
     8color = "white" 
    89} 
    9   subgraph cluster1{ 
    10     label = "Down"; 
    11     labelloc = b; 
    12       down [label="<1>|<2>|<3>"]; 
    13     color = "white" 
     10subgraph cluster1{ 
     11node [shape=record]; 
     12label = "NAMES"; 
     13names [label="{<1> \"b\" | <2> \"c\" | <3>\"a\" }"]; 
     14color = "white" 
    1415} 
    15     up:1 -> down:1; 
    16     up:3 -> down:2; 
    17     up:5 -> down:3; 
     16subgraph cluster2{ 
     17node [shape=record]; 
     18label = "SIZES"; 
     19labelloc = b; 
     20sizes [label="{<1>1 |<2> 4 |<3> 1}"]; 
     21color = "white" 
    1822} 
     23map:1 -> names:1; 
     24map:1 -> sizes:1; 
     25map:3 -> names:3; 
     26map:3 -> sizes:3; 
     27}