Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

116 lines
5.9KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
  5. <meta http-equiv="X-UA-Compatible" content="IE=9"/>
  6. <meta name="generator" content="Doxygen 1.8.6"/>
  7. <title>SdFat: Graph Legend</title>
  8. <link href="tabs.css" rel="stylesheet" type="text/css"/>
  9. <script type="text/javascript" src="jquery.js"></script>
  10. <script type="text/javascript" src="dynsections.js"></script>
  11. <link href="doxygen.css" rel="stylesheet" type="text/css" />
  12. </head>
  13. <body>
  14. <div id="top"><!-- do not remove this div, it is closed by doxygen! -->
  15. <div id="titlearea">
  16. <table cellspacing="0" cellpadding="0">
  17. <tbody>
  18. <tr style="height: 56px;">
  19. <td style="padding-left: 0.5em;">
  20. <div id="projectname">SdFat
  21. </div>
  22. </td>
  23. </tr>
  24. </tbody>
  25. </table>
  26. </div>
  27. <!-- end header part -->
  28. <!-- Generated by Doxygen 1.8.6 -->
  29. <div id="navrow1" class="tabs">
  30. <ul class="tablist">
  31. <li><a href="index.html"><span>Main&#160;Page</span></a></li>
  32. <li><a href="namespaces.html"><span>Namespaces</span></a></li>
  33. <li><a href="annotated.html"><span>Classes</span></a></li>
  34. <li><a href="files.html"><span>Files</span></a></li>
  35. </ul>
  36. </div>
  37. </div><!-- top -->
  38. <div class="header">
  39. <div class="headertitle">
  40. <div class="title">Graph Legend</div> </div>
  41. </div><!--header-->
  42. <div class="contents">
  43. <p>This page explains how to interpret the graphs that are generated by doxygen.</p>
  44. <p>Consider the following example: </p>
  45. <div class="fragment"><div class="line"><span class="comment">/*! Invisible class because of truncation */</span></div>
  46. <div class="line"><span class="keyword">class </span>Invisible { };</div>
  47. <div class="line"><span class="comment"></span></div>
  48. <div class="line"><span class="comment">/*! Truncated class, inheritance relation is hidden */</span></div>
  49. <div class="line"><span class="keyword">class </span>Truncated : <span class="keyword">public</span> Invisible { };</div>
  50. <div class="line"></div>
  51. <div class="line"><span class="comment">/* Class not documented with doxygen comments */</span></div>
  52. <div class="line"><span class="keyword">class </span>Undocumented { };</div>
  53. <div class="line"><span class="comment"></span></div>
  54. <div class="line"><span class="comment">/*! Class that is inherited using public inheritance */</span></div>
  55. <div class="line"><span class="keyword">class </span>PublicBase : <span class="keyword">public</span> Truncated { };</div>
  56. <div class="line"><span class="comment"></span></div>
  57. <div class="line"><span class="comment">/*! A template class */</span></div>
  58. <div class="line"><span class="keyword">template</span>&lt;<span class="keyword">class</span> T&gt; <span class="keyword">class </span>Templ { };</div>
  59. <div class="line"><span class="comment"></span></div>
  60. <div class="line"><span class="comment">/*! Class that is inherited using protected inheritance */</span></div>
  61. <div class="line"><span class="keyword">class </span>ProtectedBase { };</div>
  62. <div class="line"><span class="comment"></span></div>
  63. <div class="line"><span class="comment">/*! Class that is inherited using private inheritance */</span></div>
  64. <div class="line"><span class="keyword">class </span>PrivateBase { };</div>
  65. <div class="line"><span class="comment"></span></div>
  66. <div class="line"><span class="comment">/*! Class that is used by the Inherited class */</span></div>
  67. <div class="line"><span class="keyword">class </span>Used { };</div>
  68. <div class="line"><span class="comment"></span></div>
  69. <div class="line"><span class="comment">/*! Super class that inherits a number of other classes */</span></div>
  70. <div class="line"><span class="keyword">class </span>Inherited : <span class="keyword">public</span> PublicBase,</div>
  71. <div class="line"> <span class="keyword">protected</span> ProtectedBase,</div>
  72. <div class="line"> <span class="keyword">private</span> PrivateBase,</div>
  73. <div class="line"> <span class="keyword">public</span> Undocumented,</div>
  74. <div class="line"> <span class="keyword">public</span> Templ&lt;int&gt;</div>
  75. <div class="line">{</div>
  76. <div class="line"> <span class="keyword">private</span>:</div>
  77. <div class="line"> Used *m_usedClass;</div>
  78. <div class="line">};</div>
  79. </div><!-- fragment --><p> This will result in the following graph:</p>
  80. <center><div class="image">
  81. <img src="graph_legend.png" />
  82. </div>
  83. </center><p>The boxes in the above graph have the following meaning: </p>
  84. <ul>
  85. <li>
  86. A filled gray box represents the struct or class for which the graph is generated. </li>
  87. <li>
  88. A box with a black border denotes a documented struct or class. </li>
  89. <li>
  90. A box with a grey border denotes an undocumented struct or class. </li>
  91. <li>
  92. 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>
  93. </ul>
  94. <p>The arrows have the following meaning: </p>
  95. <ul>
  96. <li>
  97. A dark blue arrow is used to visualize a public inheritance relation between two classes. </li>
  98. <li>
  99. A dark green arrow is used for protected inheritance. </li>
  100. <li>
  101. A dark red arrow is used for private inheritance. </li>
  102. <li>
  103. 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>
  104. <li>
  105. 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>
  106. </ul>
  107. </div><!-- contents -->
  108. <!-- start footer part -->
  109. <hr class="footer"/><address class="footer"><small>
  110. Generated on Fri Sep 5 2014 13:07:46 for SdFat by &#160;<a href="http://www.doxygen.org/index.html">
  111. <img class="footer" src="doxygen.png" alt="doxygen"/>
  112. </a> 1.8.6
  113. </small></address>
  114. </body>
  115. </html>