vstup/kočka-a-pes-oop.dot
changeset 120 4d33f14e99dd
parent 119 eec920c4bddf
child 121 1a32988c4fef
     1.1 --- a/vstup/kočka-a-pes-oop.dot	Sun Jul 08 12:55:27 2012 +0200
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,18 +0,0 @@
     1.4 -digraph G {	
     1.5 -	bgcolor="transparent";
     1.6 -	
     1.7 -	
     1.8 -	// Třídy:
     1.9 -	node	[shape = "record"];
    1.10 -	Pes		[label = "{Pes|+ kouše : boolean\l|+ štěkej() : void\l}"];
    1.11 -	Kočka	[label = "{Kočka|+ spí : boolean\l|+ mňoukej() : void\l}"];
    1.12 -	Zvíře	[label = "{Zvíře|+ jméno : string\l+ věk : int\l|+ běhej() : void\l}"];
    1.13 -	
    1.14 -	
    1.15 -	// Dědičnost:
    1.16 -	edge	[arrowhead = "empty"];
    1.17 -	
    1.18 -	Pes		->	Zvíře;
    1.19 -	Kočka	->	Zvíře;
    1.20 -}
    1.21 -