digraph TopLevel {
label = "TopLevel"
compound = true
fontname = Arial
fontsize = 8
bgcolor = lightcyan1
node [
color = black,
fontname = Arial,
fontsize = 8
]
Client [
fontcolor = black,
shape = ellipse,
URL = "classes/Client.html",
color = palegoldenrod,
style = filled,
label = "Client"
]
CursesClient [
fontcolor = black,
shape = ellipse,
URL = "classes/CursesClient.html",
color = palegoldenrod,
style = filled,
label = "CursesClient"
]
ConsoleClient [
fontcolor = black,
shape = ellipse,
URL = "classes/ConsoleClient.html",
color = palegoldenrod,
style = filled,
label = "ConsoleClient"
]
Publisher [
shape = box,
URL = "classes/Publisher.html",
label = "Publisher"
]
Publisher -> Client [
]
Client -> CursesClient [
]
Client -> ConsoleClient [
]
}