author | František Kučera <franta-hg@frantovo.cz> |
Sat, 23 Jun 2012 20:59:02 +0200 | |
changeset 100 | c35c97d14d53 |
parent 65 | 0b00c324e644 |
permissions | -rw-r--r-- |
1 digraph G {
2 bgcolor="transparent";
5 // Třídy:
6 node [shape = "record"];
7 Pes [label = "{Pes|+ kouše : boolean\l|+ štěkej() : void\l}"];
8 Kočka [label = "{Kočka|+ spí : boolean\l|+ mňoukej() : void\l}"];
9 Zvíře [label = "{Zvíře|+ jméno : string\l+ věk : int\l|+ běhej() : void\l}"];
12 // Dědičnost:
13 edge [arrowhead = "empty"];
15 Pes -> Zvíře;
16 Kočka -> Zvíře;
17 }