annotate code-docs/graph_legend.html @ 3:5c2683745b33 vamp-plugin-sdk-v2.4

Update for 2.4
author Chris Cannam
date Fri, 13 Jul 2012 13:30:27 +0100
parents 3c430ef1ed66
children 27319718b1f8
rev   line source
Chris@1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Chris@1 2 <html xmlns="http://www.w3.org/1999/xhtml">
Chris@1 3 <head>
Chris@1 4 <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
Chris@3 5 <meta http-equiv="X-UA-Compatible" content="IE=9"/>
Chris@1 6 <title>VampPluginSDK: Graph Legend</title>
Chris@1 7
Chris@1 8 <link href="tabs.css" rel="stylesheet" type="text/css"/>
Chris@1 9 <link href="doxygen.css" rel="stylesheet" type="text/css" />
Chris@1 10 <link href="navtree.css" rel="stylesheet" type="text/css"/>
Chris@1 11 <script type="text/javascript" src="jquery.js"></script>
Chris@1 12 <script type="text/javascript" src="resize.js"></script>
Chris@1 13 <script type="text/javascript" src="navtree.js"></script>
Chris@1 14 <script type="text/javascript">
Chris@1 15 $(document).ready(initResizable);
Chris@1 16 </script>
Chris@1 17
Chris@1 18
Chris@1 19 </head>
Chris@1 20 <body>
Chris@1 21 <div id="top"><!-- do not remove this div! -->
Chris@1 22
Chris@1 23
Chris@1 24 <div id="titlearea">
Chris@1 25 <table cellspacing="0" cellpadding="0">
Chris@1 26 <tbody>
Chris@1 27 <tr style="height: 56px;">
Chris@1 28
Chris@1 29
Chris@1 30 <td style="padding-left: 0.5em;">
Chris@1 31 <div id="projectname">VampPluginSDK
Chris@3 32 &#160;<span id="projectnumber">2.4</span>
Chris@1 33 </div>
Chris@1 34
Chris@1 35 </td>
Chris@1 36
Chris@1 37
Chris@1 38
Chris@1 39 </tr>
Chris@1 40 </tbody>
Chris@1 41 </table>
Chris@1 42 </div>
Chris@1 43
Chris@3 44 <!-- Generated by Doxygen 1.8.0 -->
Chris@1 45 <div id="navrow1" class="tabs">
Chris@1 46 <ul class="tablist">
Chris@1 47 <li><a href="index.html"><span>Main&#160;Page</span></a></li>
Chris@1 48 <li><a href="namespaces.html"><span>Namespaces</span></a></li>
Chris@1 49 <li><a href="annotated.html"><span>Classes</span></a></li>
Chris@1 50 <li><a href="files.html"><span>Files</span></a></li>
Chris@1 51 <li><a href="dirs.html"><span>Directories</span></a></li>
Chris@1 52 </ul>
Chris@1 53 </div>
Chris@1 54 </div>
Chris@1 55 <div id="side-nav" class="ui-resizable side-nav-resizable">
Chris@1 56 <div id="nav-tree">
Chris@1 57 <div id="nav-tree-contents">
Chris@1 58 </div>
Chris@1 59 </div>
Chris@1 60 <div id="splitbar" style="-moz-user-select:none;"
Chris@1 61 class="ui-resizable-handle">
Chris@1 62 </div>
Chris@1 63 </div>
Chris@1 64 <script type="text/javascript">
Chris@1 65 initNavTree('graph_legend.html','');
Chris@1 66 </script>
Chris@1 67 <div id="doc-content">
Chris@1 68 <div class="header">
Chris@1 69 <div class="headertitle">
Chris@1 70 <div class="title">Graph Legend</div> </div>
Chris@3 71 </div><!--header-->
Chris@1 72 <div class="contents">
Chris@1 73 <p>This page explains how to interpret the graphs that are generated by doxygen.</p>
Chris@1 74 <p>Consider the following example: </p>
Chris@1 75 <div class="fragment"><pre class="fragment"><span class="comment">/*! Invisible class because of truncation */</span>
Chris@1 76 <span class="keyword">class </span>Invisible { };
Chris@1 77 <span class="comment"></span>
Chris@1 78 <span class="comment">/*! Truncated class, inheritance relation is hidden */</span>
Chris@1 79 <span class="keyword">class </span>Truncated : <span class="keyword">public</span> Invisible { };
Chris@1 80
Chris@1 81 <span class="comment">/* Class not documented with doxygen comments */</span>
Chris@1 82 <span class="keyword">class </span>Undocumented { };
Chris@1 83 <span class="comment"></span>
Chris@1 84 <span class="comment">/*! Class that is inherited using public inheritance */</span>
Chris@1 85 <span class="keyword">class </span>PublicBase : <span class="keyword">public</span> Truncated { };
Chris@1 86 <span class="comment"></span>
Chris@1 87 <span class="comment">/*! A template class */</span>
Chris@1 88 <span class="keyword">template</span>&lt;<span class="keyword">class</span> T&gt; <span class="keyword">class </span>Templ { };
Chris@1 89 <span class="comment"></span>
Chris@1 90 <span class="comment">/*! Class that is inherited using protected inheritance */</span>
Chris@1 91 <span class="keyword">class </span>ProtectedBase { };
Chris@1 92 <span class="comment"></span>
Chris@1 93 <span class="comment">/*! Class that is inherited using private inheritance */</span>
Chris@1 94 <span class="keyword">class </span>PrivateBase { };
Chris@1 95 <span class="comment"></span>
Chris@1 96 <span class="comment">/*! Class that is used by the Inherited class */</span>
Chris@1 97 <span class="keyword">class </span>Used { };
Chris@1 98 <span class="comment"></span>
Chris@1 99 <span class="comment">/*! Super class that inherits a number of other classes */</span>
Chris@1 100 <span class="keyword">class </span>Inherited : <span class="keyword">public</span> PublicBase,
Chris@1 101 <span class="keyword">protected</span> ProtectedBase,
Chris@1 102 <span class="keyword">private</span> PrivateBase,
Chris@1 103 <span class="keyword">public</span> Undocumented,
Chris@1 104 <span class="keyword">public</span> Templ&lt;int&gt;
Chris@1 105 {
Chris@1 106 <span class="keyword">private</span>:
Chris@1 107 Used *m_usedClass;
Chris@1 108 };
Chris@1 109 </pre></div><p> This will result in the following graph:</p>
Chris@1 110 <center><div class="image">
Chris@3 111 <img src="graph_legend.png" />
Chris@1 112 </div>
Chris@3 113 </center><p>The boxes in the above graph have the following meaning: </p>
Chris@1 114 <ul>
Chris@1 115 <li>
Chris@1 116 A filled gray box represents the struct or class for which the graph is generated. </li>
Chris@1 117 <li>
Chris@1 118 A box with a black border denotes a documented struct or class. </li>
Chris@1 119 <li>
Chris@1 120 A box with a grey border denotes an undocumented struct or class. </li>
Chris@1 121 <li>
Chris@1 122 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>
Chris@1 123 </ul>
Chris@3 124 <p>The arrows have the following meaning: </p>
Chris@1 125 <ul>
Chris@1 126 <li>
Chris@1 127 A dark blue arrow is used to visualize a public inheritance relation between two classes. </li>
Chris@1 128 <li>
Chris@1 129 A dark green arrow is used for protected inheritance. </li>
Chris@1 130 <li>
Chris@1 131 A dark red arrow is used for private inheritance. </li>
Chris@1 132 <li>
Chris@1 133 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>
Chris@1 134 <li>
Chris@1 135 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>
Chris@1 136 </ul>
Chris@3 137 </div><!-- contents -->
Chris@1 138 </div>
Chris@1 139 <div id="nav-path" class="navpath">
Chris@1 140 <ul>
Chris@1 141
Chris@3 142 <li class="footer">Generated on Fri Jul 13 2012 13:28:49 for VampPluginSDK by
Chris@1 143 <a href="http://www.doxygen.org/index.html">
Chris@3 144 <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
Chris@1 145 </ul>
Chris@1 146 </div>
Chris@1 147
Chris@1 148
Chris@1 149 </body>
Chris@1 150 </html>