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
18 lines (15 loc) · 473 Bytes
/
ObjectGraph.dot
File metadata and controls
18 lines (15 loc) · 473 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
digraph G {
node [shape=box];
"CCPShellHandler" -> "CCPRunOperation";
"CCPDocumentationManager" -> {};
"CCPRunOperation" -> {};
"ObjectGraph" -> "CCPProject";
"ObjectGraph" -> "CCPWorkspaceManager";
"ObjectGraph" -> "CCPShellHandler";
"ObjectGraph" -> "CCPXCodeConsole";
"CCPXCodeConsole" -> {};
"ObjectGraph-Prefix" [color=red];
"ObjectGraph-Prefix" -> "CCPXCodeConsole" [color=red];
edge [color=blue, dir=both];
"CCPProject" -> "CCPWorkspaceManager";
}