123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
- <title>GTL - Graph Template Library: Graph Legend</title>
- <link href="doxygen.css" rel="stylesheet" type="text/css">
- </head>
- <body>
- <p class="links">
- <a href="../index.html">Home</a> |
- Documentation |
- <a href="../register.html">Download</a> |
- <a href="../platforms.html">Platforms</a> |
- <a href="../refer.html">Projects</a> |
- <a href="../lists.html">Mailing Lists</a> |
- <a href="../history.html">Version History</a>
- </p>
- <!-- Generated by Doxygen 1.5.3 -->
- <div class="tabs">
- <ul>
- <li><a href="index.html"><span>Main Page</span></a></li>
- <li><a href="classes.html"><span>Classes</span></a></li>
- <li><a href="files.html"><span>Files</span></a></li>
- <li><a href="pages.html"><span>Related Pages</span></a></li>
- </ul>
- </div>
- <h1>Graph Legend</h1>This page explains how to interpret the graphs that are generated by doxygen.<p>
- Consider the following example: <div class="fragment"><pre class="fragment"><span class="comment">/*! Invisible class because of truncation */</span>
- <span class="keyword">class </span>Invisible { };
- <span class="comment"></span>
- <span class="comment">/*! Truncated class, inheritance relation is hidden */</span>
- <span class="keyword">class </span>Truncated : <span class="keyword">public</span> Invisible { };
- <span class="comment">/* Class not documented with doxygen comments */</span>
- <span class="keyword">class </span>Undocumented { };
- <span class="comment"></span>
- <span class="comment">/*! Class that is inherited using public inheritance */</span>
- <span class="keyword">class </span>PublicBase : <span class="keyword">public</span> Truncated { };
- <span class="comment"></span>
- <span class="comment">/*! A template class */</span>
- <span class="keyword">template</span><<span class="keyword">class</span> T> <span class="keyword">class </span>Templ { };
- <span class="comment"></span>
- <span class="comment">/*! Class that is inherited using protected inheritance */</span>
- <span class="keyword">class </span>ProtectedBase { };
- <span class="comment"></span>
- <span class="comment">/*! Class that is inherited using private inheritance */</span>
- <span class="keyword">class </span>PrivateBase { };
- <span class="comment"></span>
- <span class="comment">/*! Class that is used by the Inherited class */</span>
- <span class="keyword">class </span>Used { };
- <span class="comment"></span>
- <span class="comment">/*! Super class that inherits a number of other classes */</span>
- <span class="keyword">class </span>Inherited : <span class="keyword">public</span> PublicBase,
- <span class="keyword">protected</span> ProtectedBase,
- <span class="keyword">private</span> PrivateBase,
- <span class="keyword">public</span> Undocumented,
- <span class="keyword">public</span> Templ<int>
- {
- <span class="keyword">private</span>:
- Used *m_usedClass;
- };
- </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 <a class="el" href="a00014.html" title="A directed or undirected graph.">graph</a>:<p>
- <center><div align="center">
- <img src="graph_legend.gif" alt="graph_legend.gif">
- </div>
- </center> <p>
- The boxes in the above <a class="el" href="a00014.html" title="A directed or undirected graph.">graph</a> have the following meaning: <ul>
- <li>
- A filled gray box represents the struct or class for which the <a class="el" href="a00014.html" title="A directed or undirected graph.">graph</a> is generated. </li>
- <li>
- A box with a black border denotes a documented struct or class. </li>
- <li>
- A box with a grey border denotes an undocumented struct or class. </li>
- <li>
- A box with a red border denotes a documented struct or class forwhich not all inheritance/containment relations are shown. A <a class="el" href="a00014.html" title="A directed or undirected graph.">graph</a> is truncated if it does not fit within the specified boundaries. </li>
- </ul>
- The arrows have the following meaning: <ul>
- <li>
- A dark blue arrow is used to visualize a public inheritance relation between two classes. </li>
- <li>
- A dark green arrow is used for protected inheritance. </li>
- <li>
- A dark red arrow is used for private inheritance. </li>
- <li>
- 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>
- <li>
- 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>
- </ul>
- <p class="links">
- <a href="http://www.uni-passau.de/">University of Passau</a>
- -
- <a href="http://www.fmi.uni-passau.de/">FMI</a>
- -
- <a href="http://www.fmi.uni-passau.de/fmi/lehrstuehle/brandenburg/">Theoretical
- Computer Science</a>
- </p>
- <div class="copyright">
- Design © 2002, 2003 <a href="mailto:raitner@fmi.uni-passau.de">Marcus Raitner</a>, University of Passau
- </div>
- </body>
- </html>
|