~ubuntu-branches/ubuntu/trusty/schroot/trusty

« back to all changes in this revision

Viewing changes to doc/sbuild/html/graph_legend.html

  • Committer: Bazaar Package Importer
  • Author(s): Roger Leigh
  • Date: 2009-11-07 10:46:54 UTC
  • mfrom: (1.1.20 upstream) (2.1.6 experimental)
  • Revision ID: james.westby@ubuntu.com-20091107104654-kk1fp1icv8dzfyfi
* New upstream development release.
* schroot:
  - Return success when ending a session and the operation
    succeeded (Closes: #554907).

Show diffs side-by-side

added added

removed removed

Lines of Context:
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>sbuild: Graph Legend</title>
4
 
<link href="tabs.css" rel="stylesheet" type="text/css">
5
 
<link href="doxygen.css" rel="stylesheet" type="text/css">
6
 
</head><body>
7
 
<!-- Generated by Doxygen 1.5.9 -->
8
 
<div class="navigation" id="top">
9
 
  <div class="tabs">
10
 
    <ul>
11
 
      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
12
 
      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
13
 
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
14
 
      <li><a href="annotated.html"><span>Classes</span></a></li>
15
 
      <li><a href="files.html"><span>Files</span></a></li>
16
 
      <li><a href="dirs.html"><span>Directories</span></a></li>
17
 
    </ul>
18
 
  </div>
19
 
</div>
20
 
<div class="contents">
21
 
<h1>Graph Legend</h1>This page explains how to interpret the graphs that are generated by doxygen.<p>
22
 
Consider the following example: <div class="fragment"><pre class="fragment"><span class="comment">/*! Invisible class because of truncation */</span>
23
 
<span class="keyword">class </span>Invisible { };
24
 
<span class="comment"></span>
25
 
<span class="comment">/*! Truncated class, inheritance relation is hidden */</span>
26
 
<span class="keyword">class </span>Truncated : <span class="keyword">public</span> Invisible { };
27
 
 
28
 
<span class="comment">/* Class not documented with doxygen comments */</span>
29
 
<span class="keyword">class </span>Undocumented { };
30
 
<span class="comment"></span>
31
 
<span class="comment">/*! Class that is inherited using public inheritance */</span>
32
 
<span class="keyword">class </span>PublicBase : <span class="keyword">public</span> Truncated { };
33
 
<span class="comment"></span>
34
 
<span class="comment">/*! A template class */</span>
35
 
<span class="keyword">template</span>&lt;<span class="keyword">class</span> T&gt; <span class="keyword">class </span>Templ { };
36
 
<span class="comment"></span>
37
 
<span class="comment">/*! Class that is inherited using protected inheritance */</span>
38
 
<span class="keyword">class </span>ProtectedBase { };
39
 
<span class="comment"></span>
40
 
<span class="comment">/*! Class that is inherited using private inheritance */</span>
41
 
<span class="keyword">class </span>PrivateBase { };
42
 
<span class="comment"></span>
43
 
<span class="comment">/*! Class that is used by the Inherited class */</span>
44
 
<span class="keyword">class </span>Used { };
45
 
<span class="comment"></span>
46
 
<span class="comment">/*! Super class that inherits a number of other classes */</span>
47
 
<span class="keyword">class </span>Inherited : <span class="keyword">public</span> PublicBase,
48
 
                  <span class="keyword">protected</span> ProtectedBase,
49
 
                  <span class="keyword">private</span> PrivateBase,
50
 
                  <span class="keyword">public</span> Undocumented,
51
 
                  <span class="keyword">public</span> Templ&lt;int&gt;
52
 
{
53
 
  <span class="keyword">private</span>:
54
 
    Used *m_usedClass;
55
 
};
56
 
</pre></div> This will result in the following graph:<p>
57
 
<center><div align="center">
58
 
<img src="graph_legend.png" alt="graph_legend.png">
59
 
</div>
60
 
</center> <p>
61
 
The boxes in the above graph have the following meaning: <ul>
62
 
<li>
63
 
A filled gray box represents the struct or class for which the graph is generated. </li>
64
 
<li>
65
 
A box with a black border denotes a documented struct or class. </li>
66
 
<li>
67
 
A box with a grey border denotes an undocumented struct or class. </li>
68
 
<li>
69
 
A 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>
70
 
</ul>
71
 
The arrows have the following meaning: <ul>
72
 
<li>
73
 
A dark blue arrow is used to visualize a public inheritance relation between two classes. </li>
74
 
<li>
75
 
A dark green arrow is used for protected inheritance. </li>
76
 
<li>
77
 
A dark red arrow is used for private inheritance. </li>
78
 
<li>
79
 
A 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>
80
 
<li>
81
 
A 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>
82
 
</ul>
83
 
</div>
84
 
<hr size="1"><address style="text-align: right;"><small>Generated on Sun May 17 18:39:17 2009 for sbuild by&nbsp;
85
 
<a href="http://www.doxygen.org/index.html">
86
 
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.9 </small></address>
87
 
</body>
88
 
</html>