# HG changeset patch # User František Kučera # Date 1325954073 -3600 # Node ID 0b00c324e64472d761d098c1a52bfb4286e67f1b # Parent c069af21c4be0d9a2829303aaeb9f62f3d6332dc diagram: středníky, drobnosti diff -r c069af21c4be -r 0b00c324e644 vstup/kočka-a-pes-oop.dot --- a/vstup/kočka-a-pes-oop.dot Sat Jan 07 17:34:07 2012 +0100 +++ b/vstup/kočka-a-pes-oop.dot Sat Jan 07 17:34:33 2012 +0100 @@ -3,16 +3,16 @@ // Třídy: - node [shape = "record"] + 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"] + edge [arrowhead = "empty"]; - Pes -> Zvíře - Kočka -> Zvíře + Pes -> Zvíře; + Kočka -> Zvíře; }