diagram: středníky, drobnosti
authorFrantišek Kučera <franta-hg@frantovo.cz>
Sat, 07 Jan 2012 17:34:33 +0100
changeset 65 0b00c324e644
parent 64 c069af21c4be
child 66 a8085dedd92b
diagram: středníky, drobnosti
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;
 }