annotate toolboxes/graph_visualisation/share/graphviz/graphs/directed/alf.gv @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
rev   line source
wolffd@0 1 digraph Alf {
wolffd@0 2 size = "6,9";
wolffd@0 3 node [ shape = record ];
wolffd@0 4 Decl [ label = "\n\nDecl|{name|access|decl_flags|extern_c_linkage}"];
wolffd@0 5 Nontype_decl [ label = "Nontype_decl|{type}"];
wolffd@0 6 Defined_decl [ label = "Defined_decl|{linkage}"];
wolffd@0 7 Data_decl [ label = "Data_decl|{storage_class}"];
wolffd@0 8 Function_decl [ label = "Function_decl|{formals|defaults}"];
wolffd@0 9 Data [ label = "Data|{initializer}"];
wolffd@0 10 Function [ label = "Function|{body}"];
wolffd@0 11 Constructor [ label = "Constructor|{member_initializers}"];
wolffd@0 12 Aggregate -> Type_decl ;
wolffd@0 13 Class -> Aggregate;
wolffd@0 14 Union -> Aggregate;
wolffd@0 15 Data -> Data_decl;
wolffd@0 16 Data -> Defn;
wolffd@0 17 Data_decl -> Defined_decl;
wolffd@0 18 Data_member -> Nontype_decl ;
wolffd@0 19 Defined_decl -> Nontype_decl;
wolffd@0 20 Defn -> Defined_decl;
wolffd@0 21 Enum -> Type_decl ;
wolffd@0 22 Enumerator -> Nontype_decl ;
wolffd@0 23 Function -> Defn;
wolffd@0 24 Function -> Function_decl;
wolffd@0 25 Constructor -> Function;
wolffd@0 26 Destructor -> Function;
wolffd@0 27 Function_decl -> Defined_decl;
wolffd@0 28 Nontype_decl -> Decl ;
wolffd@0 29 Template_type_arg -> Type_decl ;
wolffd@0 30 Type_decl -> Decl ;
wolffd@0 31 Typedef -> Type_decl ;
wolffd@0 32 }