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.

23 lines
1.2 KiB

digraph "GraphicApplication" {
node [
fontsize = "12"
];
"node5" [ label = "GraphicApplication", shape = egg ];
"node2" [ label = "CoreLibrary", shape = octagon ];
"node5" -> "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
"node6" [ label = "GraphicLibrary", shape = doubleoctagon ];
"node5" -> "node6" [ style = dotted ] // GraphicApplication -> GraphicLibrary
"node7" [ label = "\"-lm\"", shape = septagon ];
"node6" -> "node7" [ style = dotted ] // GraphicLibrary -> "-lm"
"node0" [ label = "CompilerFlags", shape = pentagon ];
"node6" -> "node0" // GraphicLibrary -> CompilerFlags
"node2" [ label = "CoreLibrary", shape = octagon ];
"node6" -> "node2" [ style = dotted ] // GraphicLibrary -> CoreLibrary
"node8" [ label = "GraphicLibraryObjects", shape = hexagon ];
"node6" -> "node8" [ style = dotted ] // GraphicLibrary -> GraphicLibraryObjects
}