You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.5 KiB
27 lines
1.5 KiB
digraph "GraphicApplication" {
|
|
node [
|
|
fontsize = "12"
|
|
];
|
|
"node6" [ label = "GraphicApplication", shape = egg ];
|
|
"node2" [ label = "CoreLibrary", shape = octagon ];
|
|
"node6" -> "node2" [ style = dotted ] // GraphicApplication -> CoreLibrary
|
|
"node0" [ label = "CompilerFlags", shape = pentagon ];
|
|
"node2" -> "node0" // CoreLibrary -> CompilerFlags
|
|
"node3" [ label = "GoofyLoggingLibrary\n(SeriousLoggingLibrary)\n(TheBestLoggingLibrary)", shape = pentagon ];
|
|
"node2" -> "node3" [ style = dotted ] // CoreLibrary -> GoofyLoggingLibrary
|
|
"node4" [ label = "SystemLibrary", shape = octagon ];
|
|
"node2" -> "node4" [ style = dotted ] // CoreLibrary -> SystemLibrary
|
|
"node2" [ label = "CoreLibrary", shape = octagon ];
|
|
"node4" -> "node2" [ style = dotted ] // SystemLibrary -> CoreLibrary
|
|
"node7" [ label = "GraphicLibrary", shape = doubleoctagon ];
|
|
"node6" -> "node7" [ style = dotted ] // GraphicApplication -> GraphicLibrary
|
|
"node8" [ label = "\"-lm\"", shape = septagon ];
|
|
"node7" -> "node8" [ style = dotted ] // GraphicLibrary -> "-lm"
|
|
"node0" [ label = "CompilerFlags", shape = pentagon ];
|
|
"node7" -> "node0" // GraphicLibrary -> CompilerFlags
|
|
"node2" [ label = "CoreLibrary", shape = octagon ];
|
|
"node7" -> "node2" [ style = dotted ] // GraphicLibrary -> CoreLibrary
|
|
"node9" [ label = "GraphicLibraryObjects", shape = hexagon ];
|
|
"node7" -> "node9" [ style = dotted ] // GraphicLibrary -> GraphicLibraryObjects
|
|
}
|