ukázka/kočka-a-pes-oop.dot
author František Kučera <franta-hg@frantovo.cz>
Mon, 27 Jul 2020 16:17:41 +0200
branchv_0
changeset 308 0c5723bc16bc
parent 120 4d33f14e99dd
permissions -rw-r--r--
template: diagram macro: remove localized alt/title

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;
}