forked from vampirewalk/ObjectGraph-Xcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectGraph.dot
More file actions
17 lines (14 loc) · 436 Bytes
/
ObjectGraph.dot
File metadata and controls
17 lines (14 loc) · 436 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
digraph G {
node [shape=box];
"VWKShellHandler" -> "VWKRunOperation";
"VWKRunOperation" -> {};
"VWKDocumentationManager" -> {};
"ObjectGraph" -> "VWKProject";
"ObjectGraph" -> "VWKWorkspaceManager";
"ObjectGraph" -> "VWKShellHandler";
"VWKXCodeConsole" -> {};
"ObjectGraph-Prefix" [color=red];
"ObjectGraph-Prefix" -> "VWKXCodeConsole" [color=red];
edge [color=blue, dir=both];
"VWKProject" -> "VWKWorkspaceManager";
}