author | František Kučera <franta-hg@frantovo.cz> |
Tue, 04 Feb 2020 00:58:19 +0100 | |
branch | v_0 |
changeset 295 | 72dc2469c438 |
parent 120 | 4d33f14e99dd |
permissions | -rw-r--r-- |
digraph G { bgcolor="transparent"; // Třídy: node [shape = "record"]; Pes [label = "{Pes|+ kouše : boolean\l|+ štěkej() : void\l}"]; Kočka [label = "{Kočka|+ spí : boolean\l|+ mňoukej() : void\l}"]; Zvíře [label = "{Zvíře|+ jméno : string\l+ věk : int\l|+ běhej() : void\l}"]; // Dědičnost: edge [arrowhead = "empty"]; Pes -> Zvíře; Kočka -> Zvíře; }