root/vstup/kočka-a-pes-oop.dot @ 65:0b00c324e644

Revision 65:0b00c324e644, 398 bytes (checked in by František Kučera <franta-hg@…>, 12 years ago)

diagram: středníky, drobnosti

RevLine 
[52]1digraph G {     
2        bgcolor="transparent";
3       
4       
5        // Třídy:
[65]6        node    [shape = "record"];
[52]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}"];
10       
11       
12        // Dědičnost:
[65]13        edge    [arrowhead = "empty"];
[52]14       
[65]15        Pes             ->      Zvíře;
16        Kočka   ->      Zvíře;
[52]17}
18
Note: See TracBrowser for help on using the browser.