1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> 3<title>HeimdalKerberos5library: Graph Legend</title> 4<link href="doxygen.css" rel="stylesheet" type="text/css"> 5<link href="tabs.css" rel="stylesheet" type="text/css"> 6</head><body> 7<p> 8<a href="http://www.h5l.org/"><img src="http://www.h5l.org/keyhole-heimdal.png" alt="keyhole logo"/></a> 9</p> 10<!-- end of header marker --> 11<!-- Generated by Doxygen 1.5.6 --> 12<div class="navigation" id="top"> 13 <div class="tabs"> 14 <ul> 15 <li><a href="index.html"><span>Main Page</span></a></li> 16 <li><a href="pages.html"><span>Related Pages</span></a></li> 17 <li><a href="modules.html"><span>Modules</span></a></li> 18 <li><a href="annotated.html"><span>Data Structures</span></a></li> 19 </ul> 20 </div> 21</div> 22<div class="contents"> 23<h1>Graph Legend</h1>This page explains how to interpret the graphs that are generated by doxygen.<p> 24Consider the following example: <div class="fragment"><pre class="fragment"><span class="comment">/*! Invisible class because of truncation */</span> 25<span class="keyword">class </span>Invisible { }; 26<span class="comment"></span> 27<span class="comment">/*! Truncated class, inheritance relation is hidden */</span> 28<span class="keyword">class </span>Truncated : <span class="keyword">public</span> Invisible { }; 29 30<span class="comment">/* Class not documented with doxygen comments */</span> 31<span class="keyword">class </span>Undocumented { }; 32<span class="comment"></span> 33<span class="comment">/*! Class that is inherited using public inheritance */</span> 34<span class="keyword">class </span>PublicBase : <span class="keyword">public</span> Truncated { }; 35<span class="comment"></span> 36<span class="comment">/*! A template class */</span> 37<span class="keyword">template</span><<span class="keyword">class</span> T> <span class="keyword">class </span>Templ { }; 38<span class="comment"></span> 39<span class="comment">/*! Class that is inherited using protected inheritance */</span> 40<span class="keyword">class </span>ProtectedBase { }; 41<span class="comment"></span> 42<span class="comment">/*! Class that is inherited using private inheritance */</span> 43<span class="keyword">class </span>PrivateBase { }; 44<span class="comment"></span> 45<span class="comment">/*! Class that is used by the Inherited class */</span> 46<span class="keyword">class </span>Used { }; 47<span class="comment"></span> 48<span class="comment">/*! Super class that inherits a number of other classes */</span> 49<span class="keyword">class </span>Inherited : <span class="keyword">public</span> PublicBase, 50 <span class="keyword">protected</span> ProtectedBase, 51 <span class="keyword">private</span> PrivateBase, 52 <span class="keyword">public</span> Undocumented, 53 <span class="keyword">public</span> Templ<int> 54{ 55 <span class="keyword">private</span>: 56 Used *m_usedClass; 57}; 58</pre></div> If the <code>MAX_DOT_GRAPH_HEIGHT</code> tag in the configuration file is set to 240 this will result in the following graph:<p> 59<center><div align="center"> 60<img src="graph_legend.png" alt="graph_legend.png"> 61</div> 62</center> <p> 63The boxes in the above graph have the following meaning: <ul> 64<li> 65A filled gray box represents the struct or class for which the graph is generated. </li> 66<li> 67A box with a black border denotes a documented struct or class. </li> 68<li> 69A box with a grey border denotes an undocumented struct or class. </li> 70<li> 71A box with a red border denotes a documented struct or class forwhich not all inheritance/containment relations are shown. A graph is truncated if it does not fit within the specified boundaries. </li> 72</ul> 73The arrows have the following meaning: <ul> 74<li> 75A dark blue arrow is used to visualize a public inheritance relation between two classes. </li> 76<li> 77A dark green arrow is used for protected inheritance. </li> 78<li> 79A dark red arrow is used for private inheritance. </li> 80<li> 81A purple dashed arrow is used if a class is contained or used by another class. The arrow is labeled with the variable(s) through which the pointed class or struct is accessible. </li> 82<li> 83A yellow dashed arrow denotes a relation between a template instance and the template class it was instantiated from. The arrow is labeled with the template parameters of the instance. </li> 84</ul> 85</div> 86<hr size="1"><address style="text-align: right;"><small> 87Generated on Wed Jan 11 14:07:50 2012 for HeimdalKerberos5library by <a href="http://www.doxygen.org/index.html"><img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6</small></address> 88</body> 89</html> 90