ukázka/kočka-a-pes-oop.dot
author František Kučera <franta-hg@frantovo.cz>
Thu, 24 Oct 2019 21:52:34 +0200
branchv_0
changeset 139 0246f4b2c827
parent 120 4d33f14e99dd
permissions -rw-r--r--
fix license version: GNU GPLv3

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