ukázka/kočka-a-pes-oop.dot
author František Kučera <franta-hg@frantovo.cz>
Thu, 24 Oct 2019 22:06:44 +0200
changeset 136 d5feb9d8ebc3
parent 120 4d33f14e99dd
permissions -rw-r--r--
fix license version: GNU GPLv3
     1 digraph G {	
     2 	bgcolor="transparent";
     3 	
     4 	
     5 	// Třídy:
     6 	node	[shape = "record"];
     7 	Pes		[label = "{Pes|+ kouše : boolean\l|+ štěkej() : void\l}"];
     8 	Kočka	[label = "{Kočka|+ spí : boolean\l|+ mňoukej() : void\l}"];
     9 	Zvíře	[label = "{Zvíře|+ jméno : string\l+ věk : int\l|+ běhej() : void\l}"];
    10 	
    11 	
    12 	// Dědičnost:
    13 	edge	[arrowhead = "empty"];
    14 	
    15 	Pes		->	Zvíře;
    16 	Kočka	->	Zvíře;
    17 }
    18