source: trunk/source/interfaces/html/graph_legend.html @ 850

Last change on this file since 850 was 571, checked in by garnier, 17 years ago

r581@mac-90108: laurentgarnier | 2007-08-17 17:30:26 +0200
deplacement de frame

  • Property svn:mime-type set to text/html
File size: 4.7 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3<title>Graph Legend</title>
4<link href="doxygen.css" rel="stylesheet" type="text/css">
5</head><body>
6<!-- Generated by Doxygen 1.3.4 -->
7<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
8<h1>Graph Legend</h1>This page explains how to interpret the graphs that are generated by doxygen.<p>
9Consider the following example: <div class="fragment"><pre><span class="comment">/*! Invisible class because of truncation */</span>
10<span class="keyword">class </span>Invisible { };
11<span class="comment"></span>
12<span class="comment">/*! Truncated class, inheritance relation is hidden */</span>
13<span class="keyword">class </span>Truncated : <span class="keyword">public</span> <a class="code" href="classInvisible.html">Invisible</a> { };
14
15<span class="comment">/* Class not documented with doxygen comments */</span>
16<span class="keyword">class </span>Undocumented { };
17<span class="comment"></span>
18<span class="comment">/*! Class that is inherited using public inheritance */</span>
19<span class="keyword">class </span>PublicBase : <span class="keyword">public</span> <a class="code" href="classTruncated.html">Truncated</a> { };
20<span class="comment"></span>
21<span class="comment">/*! A template class */</span>
22<span class="keyword">template</span>&lt;<span class="keyword">class</span> T&gt; <span class="keyword">class </span>Templ { };
23<span class="comment"></span>
24<span class="comment">/*! Class that is inherited using protected inheritance */</span>
25<span class="keyword">class </span>ProtectedBase { };
26<span class="comment"></span>
27<span class="comment">/*! Class that is inherited using private inheritance */</span>
28<span class="keyword">class </span>PrivateBase { };
29<span class="comment"></span>
30<span class="comment">/*! Class that is used by the Inherited class */</span>
31<span class="keyword">class </span>Used { };
32<span class="comment"></span>
33<span class="comment">/*! Super class that inherits a number of other classes */</span>
34<span class="keyword">class </span>Inherited : <span class="keyword">public</span> <a class="code" href="classPublicBase.html">PublicBase</a>,
35                  <span class="keyword">protected</span> <a class="code" href="classProtectedBase.html">ProtectedBase</a>,
36                  <span class="keyword">private</span> <a class="code" href="classPrivateBase.html">PrivateBase</a>,
37                  <span class="keyword">public</span> <a class="code" href="classUndocumented.html">Undocumented</a>
38                  <span class="keyword">public</span> <a class="code" href="classTempl.html">Templ</a>&lt;int&gt;
39{
40  <span class="keyword">private</span>:
41    <a class="code" href="classUsed.html">Used</a> *m_usedClass;
42};
43</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>
44<center><div align="center">
45<img src="graph_legend.png" alt="graph_legend.png">
46</div>
47</center> <p>
48The boxes in the above graph have the following meaning: <ul>
49<li>
50A filled black box represents the struct or class for which the graph is generated. </li>
51<li>
52A box with a black border denotes a documented struct or class. </li>
53<li>
54A box with a grey border denotes an undocumented struct or class. </li>
55<li>
56A 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>
57</ul>
58The arrows have the following meaning: <ul>
59<li>
60A dark blue arrow is used to visualize a public inheritance relation between two classes. </li>
61<li>
62A dark green arrow is used for protected inheritance. </li>
63<li>
64A dark red arrow is used for private inheritance. </li>
65<li>
66A 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>
67<li>
68A 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>
69</ul>
70<hr size="1"><address style="align: right;"><small>Generated on Fri Jun 22 11:08:08 2007 by
71<a href="http://www.doxygen.org/index.html">
72<img src="doxygen.png" alt="doxygen" align="middle" border=0 > 
73</a>1.3.4 </small></address>
74</body>
75</html>
Note: See TracBrowser for help on using the repository browser.