vstup/kočka-a-pes-oop.dot
author František Kučera <franta-hg@frantovo.cz>
Fri, 06 Jan 2012 21:58:52 +0100
changeset 52 a221785fe3ac
child 65 0b00c324e644
permissions -rw-r--r--
Diagramy #13: možnost načítání ze souboru.

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
}