Fix for delta values reported by vFW vLB
[demo.git] / vnfs / VES5.0 / doxygen-1.8.12 / html / docblocks.html
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.12"/>
7 <meta name="viewport" content="width=device-width, initial-scale=1"/>
8 <title>Doxygen: Documenting the code</title>
9 <link href="tabs.css" rel="stylesheet" type="text/css"/>
10 <script type="text/javascript" src="jquery.js"></script>
11 <script type="text/javascript" src="dynsections.js"></script>
12 <link href="navtree.css" rel="stylesheet" type="text/css"/>
13 <script type="text/javascript" src="resize.js"></script>
14 <script type="text/javascript" src="navtreedata.js"></script>
15 <script type="text/javascript" src="navtree.js"></script>
16 <script type="text/javascript">
17   $(document).ready(initResizable);
18 </script>
19 <link href="doxygen_manual.css" rel="stylesheet" type="text/css" />
20 </head>
21 <body>
22 <div id="top"><!-- do not remove this div, it is closed by doxygen! -->
23 <div id="titlearea">
24 <table cellspacing="0" cellpadding="0">
25  <tbody>
26  <tr style="height: 56px;">
27   <td id="projectalign" style="padding-left: 0.5em;">
28    <div id="projectname">Doxygen
29    </div>
30   </td>
31  </tr>
32  </tbody>
33 </table>
34 </div>
35 <!-- end header part -->
36 <!-- Generated by Doxygen 1.8.12 -->
37 </div><!-- top -->
38 <div id="side-nav" class="ui-resizable side-nav-resizable">
39   <div id="nav-tree">
40     <div id="nav-tree-contents">
41       <div id="nav-sync" class="sync"></div>
42     </div>
43   </div>
44   <div id="splitbar" style="-moz-user-select:none;" 
45        class="ui-resizable-handle">
46   </div>
47 </div>
48 <script type="text/javascript">
49 $(document).ready(function(){initNavTree('docblocks.html','');});
50 </script>
51 <div id="doc-content">
52 <div class="header">
53   <div class="headertitle">
54 <div class="title">Documenting the code </div>  </div>
55 </div><!--header-->
56 <div class="contents">
57 <div class="toc"><h3>Table of Contents</h3>
58 <ul><li class="level1"><a href="#specialblock">Special comment blocks</a><ul><li class="level2"><a href="#cppblock">Comment blocks for C-like languages (C/C++/C#/Objective-C/PHP/Java)</a><ul><li class="level3"><a href="#memberdoc">Putting documentation after members</a></li>
59 <li class="level3"><a href="#docexamples">Examples</a></li>
60 <li class="level3"><a href="#structuralcommands">Documentation at other places</a></li>
61 </ul>
62 </li>
63 <li class="level2"><a href="#pythonblocks">Comment blocks in Python</a></li>
64 <li class="level2"><a href="#vhdlblocks">Comment blocks in VHDL</a></li>
65 <li class="level2"><a href="#fortranblocks">Comment blocks in Fortran</a></li>
66 <li class="level2"><a href="#tclblocks">Comment blocks in Tcl</a></li>
67 </ul>
68 </li>
69 <li class="level1"><a href="#docstructure">Anatomy of a comment block</a></li>
70 </ul>
71 </div>
72 <div class="textblock"><p>This chapter covers two topics:</p><ol type="1">
73 <li>How to put comments in your code such that doxygen incorporates them in the documentation it generates. This is further detailed in the <a class="el" href="docblocks.html#specialblock">next section</a>.</li>
74 <li>Ways to structure the contents of a comment block such that the output looks good, as explained in section <a class="el" href="docblocks.html#docstructure">Anatomy of a comment block</a>.</li>
75 </ol>
76 <h1><a class="anchor" id="specialblock"></a>
77 Special comment blocks</h1>
78 <p>A special comment block is a C or C++ style comment block with some additional markings, so doxygen knows it is a piece of structured text that needs to end up in the generated documentation. The <a class="el" href="docblocks.html#cppblock">next</a> section presents the various styles supported by doxygen.</p>
79 <p>For Python, VHDL, Fortran, and Tcl code there are different commenting conventions, which can be found in sections <a class="el" href="docblocks.html#pythonblocks">Comment blocks in Python</a>, <a class="el" href="docblocks.html#vhdlblocks">Comment blocks in VHDL</a>, <a class="el" href="docblocks.html#fortranblocks">Comment blocks in Fortran</a>, and <a class="el" href="docblocks.html#tclblocks">Comment blocks in Tcl</a> respectively.</p>
80 <h2><a class="anchor" id="cppblock"></a>
81 Comment blocks for C-like languages (C/C++/C#/Objective-C/PHP/Java)</h2>
82 <p>For each entity in the code there are two (or in some cases three) types of descriptions, which together form the documentation for that entity; a <em>brief</em> description and <em>detailed</em> description, both are optional. For methods and functions there is also a third type of description, the so called <em>in body</em> description, which consists of the concatenation of all comment blocks found within the body of the method or function.</p>
83 <p>Having more than one brief or detailed description is allowed (but not recommended, as the order in which the descriptions will appear is not specified).</p>
84 <p>As the name suggest, a brief description is a short one-liner, whereas the detailed description provides longer, more detailed documentation. An "in body" description can also act as a detailed description or can describe a collection of implementation details. For the HTML output brief descriptions are also used to provide tooltips at places where an item is referenced.</p>
85 <p>There are several ways to mark a comment block as a detailed description: </p><ol>
86 <li>
87 <p class="startli">You can use the JavaDoc style, which consist of a C-style comment block starting with two *'s, like this:</p>
88 <pre class="fragment">/**
89  * ... text ...
90  */
91 </pre><p class="endli"></p>
92 </li>
93 <li>
94 <p class="startli">or you can use the Qt style and add an exclamation mark (!) after the opening of a C-style comment block, as shown in this example:</p>
95 <pre class="fragment">/*!
96  * ... text ...
97  */
98 </pre><p>In both cases the intermediate *'s are optional, so</p>
99 <pre class="fragment">/*!
100  ... text ...
101 */
102 </pre><p>is also valid.</p>
103 <p class="endli"></p>
104 </li>
105 <li>
106 <p class="startli">A third alternative is to use a block of <em>at least two</em> C++ comment lines, where each line starts with an additional slash or an exclamation mark. Here are examples of the two cases:</p>
107 <pre class="fragment">///
108 /// ... text ...
109 ///
110 </pre><p>or</p>
111 <pre class="fragment">//!
112 //!... text ...
113 //!
114 </pre><p>Note that a blank line ends a documentation block in this case.</p>
115 <p class="endli"></p>
116 </li>
117 <li>
118 <p class="startli"></p>
119 <p>Some people like to make their comment blocks more visible in the documentation. For this purpose you can use the following:</p>
120 <pre class="fragment">/********************************************//**
121  *  ... text
122  ***********************************************/
123 </pre><p> (note the 2 slashes to end the normal comment block and start a special comment block).</p>
124 <p>or</p>
125 <pre class="fragment">/////////////////////////////////////////////////
126 /// ... text ...
127 /////////////////////////////////////////////////
128 </pre><p class="endli"></p>
129 </li>
130 </ol>
131 <p>For the brief description there are also several possibilities: </p><ol>
132 <li>
133 <p class="startli">One could use the <a class="el" href="commands.html#cmdbrief">\brief</a> command with one of the above comment blocks. This command ends at the end of a paragraph, so the detailed description follows after an empty line.</p>
134 <p>Here is an example:</p>
135 <pre class="fragment">/*! \brief Brief description.
136  *         Brief description continued.
137  *
138  *  Detailed description starts here.
139  */
140 </pre><p class="endli"></p>
141 </li>
142 <li>
143 <p class="startli">If <a class="el" href="config.html#cfg_javadoc_autobrief">JAVADOC_AUTOBRIEF</a> is set to <code>YES</code> in the configuration file, then using JavaDoc style comment blocks will automatically start a brief description which ends at the first dot followed by a space or new line. Here is an example:</p>
144 <pre class="fragment">/** Brief description which ends at this dot. Details follow
145  *  here.
146  */
147 </pre><p> The option has the same effect for multi-line special C++ comments: </p><pre class="fragment">/// Brief description which ends at this dot. Details follow
148 /// here.
149 </pre><p class="endli"></p>
150 </li>
151 <li>
152 <p class="startli">A third option is to use a special C++ style comment which does not span more than one line. Here are two examples: </p><pre class="fragment">/// Brief description.
153 /** Detailed description. */
154 </pre><p>or</p>
155 <pre class="fragment">//! Brief description.
156
157 //! Detailed description 
158 //! starts here.
159 </pre><p>Note the blank line in the last example, which is required to separate the brief description from the block containing the detailed description. The <a class="el" href="config.html#cfg_javadoc_autobrief">JAVADOC_AUTOBRIEF</a> should also be set to <code>NO</code> for this case.</p>
160 <p class="endli"></p>
161 </li>
162 </ol>
163 <p>As you can see doxygen is quite flexible. If you have multiple detailed descriptions, like in the following example:</p>
164 <pre class="fragment">//! Brief description, which is
165 //! really a detailed description since it spans multiple lines.
166 /*! Another detailed description!
167  */
168 </pre><p>They will be joined. Note that this is also the case if the descriptions are at different places in the code! In this case the order will depend on the order in which doxygen parses the code.</p>
169 <p>Unlike most other documentation systems, doxygen also allows you to put the documentation of members (including global functions) in front of the <em>definition</em>. This way the documentation can be placed in the source file instead of the header file. This keeps the header file compact, and allows the implementer of the members more direct access to the documentation. As a compromise the brief description could be placed before the declaration and the detailed description before the member definition.</p>
170 <h3><a class="anchor" id="memberdoc"></a>
171 Putting documentation after members</h3>
172 <p>If you want to document the members of a file, struct, union, class, or enum, it is sometimes desired to place the documentation block after the member instead of before. For this purpose you have to put an additional &lt; marker in the comment block. Note that this also works for the parameters of a function.</p>
173 <p>Here are some examples: </p><pre class="fragment">int var; /*!&lt; Detailed description after the member */
174 </pre><p> This block can be used to put a Qt style detailed documentation block <em>after</em> a member. Other ways to do the same are: </p><pre class="fragment">int var; /**&lt; Detailed description after the member */
175 </pre><p> or </p><pre class="fragment">int var; //!&lt; Detailed description after the member
176          //!&lt; 
177 </pre><p> or </p><pre class="fragment">int var; ///&lt; Detailed description after the member
178          ///&lt; 
179 </pre><p>Most often one only wants to put a brief description after a member. This is done as follows: </p><pre class="fragment">int var; //!&lt; Brief description after the member
180 </pre><p> or </p><pre class="fragment">int var; ///&lt; Brief description after the member
181 </pre><p>For functions one can use the <a class="el" href="commands.html#cmdparam">@param</a> command to document the parameters and then use <code>[in]</code>, <code>[out]</code>, <code>[in,out]</code> to document the direction. For inline documentation this is also possible by starting with the direction attribute, e.g. </p><pre class="fragment">void foo(int v /**&lt; [in] docs for input parameter v. */);
182 </pre><p>Note that these blocks have the same structure and meaning as the special comment blocks in the previous section only the &lt; indicates that the member is located in front of the block instead of after the block.</p>
183 <p>Here is an example of the use of these comment blocks: </p><div class="fragment"><div class="line"><span class="comment">/*! A test class */</span></div><div class="line"></div><div class="line"><span class="keyword">class </span>Afterdoc_Test</div><div class="line">{</div><div class="line">  <span class="keyword">public</span>:<span class="comment"></span></div><div class="line"><span class="comment">    /** An enum type. </span></div><div class="line"><span class="comment">     *  The documentation block cannot be put after the enum! </span></div><div class="line"><span class="comment">     */</span></div><div class="line">    <span class="keyword">enum</span> EnumType</div><div class="line">    {</div><div class="line">      <span class="keywordtype">int</span> EVal1,     <span class="comment">/**&lt; enum value 1 */</span></div><div class="line">      <span class="keywordtype">int</span> EVal2      <span class="comment">/**&lt; enum value 2 */</span></div><div class="line">    };</div><div class="line">    <span class="keywordtype">void</span> member();   <span class="comment">//!&lt; a member function.</span></div><div class="line"><span class="comment"></span>    </div><div class="line">  <span class="keyword">protected</span>:</div><div class="line">    <span class="keywordtype">int</span> value;       <span class="comment">/*!&lt; an integer value */</span></div><div class="line">};</div></div><!-- fragment --><p>  
184  </p>
185  Click <a href="examples/afterdoc/html/class_test.html">here</a>
186  for the corresponding HTML documentation that is generated by doxygen.
187   <dl class="section warning"><dt>Warning</dt><dd>These blocks can only be used to document <em>members</em> and <em>parameters</em>. They cannot be used to document files, classes, unions, structs, groups, namespaces and enums themselves. Furthermore, the structural commands mentioned in the next section (like <code>\class</code>) are not allowed inside these comment blocks.</dd></dl>
188 <h3><a class="anchor" id="docexamples"></a>
189 Examples</h3>
190 <p>Here is an example of a documented piece of C++ code using the Qt style: </p><div class="fragment"><div class="line"><span class="comment">//!  A test class. </span></div><div class="line"><span class="comment"></span><span class="comment">/*!</span></div><div class="line"><span class="comment">  A more elaborate class description.</span></div><div class="line"><span class="comment">*/</span></div><div class="line"></div><div class="line"><span class="keyword">class </span>QTstyle_Test</div><div class="line">{</div><div class="line">  <span class="keyword">public</span>:</div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">    //! An enum.</span></div><div class="line"><span class="comment"></span><span class="comment">    /*! More detailed enum description. */</span></div><div class="line">    <span class="keyword">enum</span> TEnum { </div><div class="line">                 TVal1, <span class="comment">/*!&lt; Enum value TVal1. */</span>  </div><div class="line">                 TVal2, <span class="comment">/*!&lt; Enum value TVal2. */</span>  </div><div class="line">                 TVal3  <span class="comment">/*!&lt; Enum value TVal3. */</span>  </div><div class="line">               } <span class="comment"></span></div><div class="line"><span class="comment">         //! Enum pointer.</span></div><div class="line"><span class="comment"></span><span class="comment">         /*! Details. */</span></div><div class="line">         *enumPtr, <span class="comment"></span></div><div class="line"><span class="comment">         //! Enum variable.</span></div><div class="line"><span class="comment"></span><span class="comment">         /*! Details. */</span></div><div class="line">         enumVar;  </div><div class="line">    <span class="comment"></span></div><div class="line"><span class="comment">    //! A constructor.</span></div><div class="line"><span class="comment"></span><span class="comment">    /*!</span></div><div class="line"><span class="comment">      A more elaborate description of the constructor.</span></div><div class="line"><span class="comment">    */</span></div><div class="line">    QTstyle_Test();</div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">    //! A destructor.</span></div><div class="line"><span class="comment"></span><span class="comment">    /*!</span></div><div class="line"><span class="comment">      A more elaborate description of the destructor.</span></div><div class="line"><span class="comment">    */</span></div><div class="line">   ~QTstyle_Test();</div><div class="line">    <span class="comment"></span></div><div class="line"><span class="comment">    //! A normal member taking two arguments and returning an integer value.</span></div><div class="line"><span class="comment"></span><span class="comment">    /*!</span></div><div class="line"><span class="comment">      \param a an integer argument.</span></div><div class="line"><span class="comment">      \param s a constant character pointer.</span></div><div class="line"><span class="comment">      \return The test results</span></div><div class="line"><span class="comment">      \sa QTstyle_Test(), ~QTstyle_Test(), testMeToo() and publicVar()</span></div><div class="line"><span class="comment">    */</span></div><div class="line">    <span class="keywordtype">int</span> testMe(<span class="keywordtype">int</span> a,<span class="keyword">const</span> <span class="keywordtype">char</span> *s);</div><div class="line">       <span class="comment"></span></div><div class="line"><span class="comment">    //! A pure virtual member.</span></div><div class="line"><span class="comment"></span><span class="comment">    /*!</span></div><div class="line"><span class="comment">      \sa testMe()</span></div><div class="line"><span class="comment">      \param c1 the first argument.</span></div><div class="line"><span class="comment">      \param c2 the second argument.</span></div><div class="line"><span class="comment">    */</span></div><div class="line">    <span class="keyword">virtual</span> <span class="keywordtype">void</span> testMeToo(<span class="keywordtype">char</span> c1,<span class="keywordtype">char</span> c2) = 0;</div><div class="line">   <span class="comment"></span></div><div class="line"><span class="comment">    //! A public variable.</span></div><div class="line"><span class="comment"></span><span class="comment">    /*!</span></div><div class="line"><span class="comment">      Details.</span></div><div class="line"><span class="comment">    */</span></div><div class="line">    <span class="keywordtype">int</span> publicVar;</div><div class="line">       <span class="comment"></span></div><div class="line"><span class="comment">    //! A function variable.</span></div><div class="line"><span class="comment"></span><span class="comment">    /*!</span></div><div class="line"><span class="comment">      Details.</span></div><div class="line"><span class="comment">    */</span></div><div class="line">    int (*handler)(<span class="keywordtype">int</span> a,<span class="keywordtype">int</span> b);</div><div class="line">};</div><div class="line"></div></div><!-- fragment --><p>  
191  </p>
192  Click <a href="examples/qtstyle/html/class_test.html">here</a>
193  for the corresponding HTML documentation that is generated by doxygen.
194   <p>The brief descriptions are included in the member overview of a class, namespace or file and are printed using a small italic font (this description can be hidden by setting <a class="el" href="config.html#cfg_brief_member_desc">BRIEF_MEMBER_DESC</a> to <code>NO</code> in the config file). By default the brief descriptions become the first sentence of the detailed descriptions (but this can be changed by setting the <a class="el" href="config.html#cfg_repeat_brief">REPEAT_BRIEF</a> tag to <code>NO</code>). Both the brief and the detailed descriptions are optional for the Qt style.</p>
195 <p>By default a JavaDoc style documentation block behaves the same way as a Qt style documentation block. This is not according the JavaDoc specification however, where the first sentence of the documentation block is automatically treated as a brief description. To enable this behavior you should set <a class="el" href="config.html#cfg_javadoc_autobrief">JAVADOC_AUTOBRIEF</a> to YES in the configuration file. If you enable this option and want to put a dot in the middle of a sentence without ending it, you should put a backslash and a space after it. Here is an example: </p><pre class="fragment">  /** Brief description (e.g.\ using only a few words). Details follow. */
196 </pre><p>Here is the same piece of code as shown above, this time documented using the JavaDoc style and <a class="el" href="config.html#cfg_javadoc_autobrief">JAVADOC_AUTOBRIEF</a> set to YES: </p><div class="fragment"><div class="line"><span class="comment">/**</span></div><div class="line"><span class="comment"> *  A test class. A more elaborate class description.</span></div><div class="line"><span class="comment"> */</span></div><div class="line"></div><div class="line"><span class="keyword">class </span>Javadoc_Test</div><div class="line">{</div><div class="line">  <span class="keyword">public</span>:</div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">    /** </span></div><div class="line"><span class="comment">     * An enum.</span></div><div class="line"><span class="comment">     * More detailed enum description.</span></div><div class="line"><span class="comment">     */</span></div><div class="line"></div><div class="line">    <span class="keyword">enum</span> TEnum { </div><div class="line">          TVal1, <span class="comment">/**&lt; enum value TVal1. */</span>  </div><div class="line">          TVal2, <span class="comment">/**&lt; enum value TVal2. */</span>  </div><div class="line">          TVal3  <span class="comment">/**&lt; enum value TVal3. */</span>  </div><div class="line">         } </div><div class="line">       *enumPtr, <span class="comment">/**&lt; enum pointer. Details. */</span></div><div class="line">       enumVar;  <span class="comment">/**&lt; enum variable. Details. */</span></div><div class="line">       <span class="comment"></span></div><div class="line"><span class="comment">      /**</span></div><div class="line"><span class="comment">       * A constructor.</span></div><div class="line"><span class="comment">       * A more elaborate description of the constructor.</span></div><div class="line"><span class="comment">       */</span></div><div class="line">      Javadoc_Test();</div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">      /**</span></div><div class="line"><span class="comment">       * A destructor.</span></div><div class="line"><span class="comment">       * A more elaborate description of the destructor.</span></div><div class="line"><span class="comment">       */</span></div><div class="line">     ~Javadoc_Test();</div><div class="line">    <span class="comment"></span></div><div class="line"><span class="comment">      /**</span></div><div class="line"><span class="comment">       * a normal member taking two arguments and returning an integer value.</span></div><div class="line"><span class="comment">       * @param a an integer argument.</span></div><div class="line"><span class="comment">       * @param s a constant character pointer.</span></div><div class="line"><span class="comment">       * @see Javadoc_Test()</span></div><div class="line"><span class="comment">       * @see ~Javadoc_Test()</span></div><div class="line"><span class="comment">       * @see testMeToo()</span></div><div class="line"><span class="comment">       * @see publicVar()</span></div><div class="line"><span class="comment">       * @return The test results</span></div><div class="line"><span class="comment">       */</span></div><div class="line">       <span class="keywordtype">int</span> testMe(<span class="keywordtype">int</span> a,<span class="keyword">const</span> <span class="keywordtype">char</span> *s);</div><div class="line">       <span class="comment"></span></div><div class="line"><span class="comment">      /**</span></div><div class="line"><span class="comment">       * A pure virtual member.</span></div><div class="line"><span class="comment">       * @see testMe()</span></div><div class="line"><span class="comment">       * @param c1 the first argument.</span></div><div class="line"><span class="comment">       * @param c2 the second argument.</span></div><div class="line"><span class="comment">       */</span></div><div class="line">       <span class="keyword">virtual</span> <span class="keywordtype">void</span> testMeToo(<span class="keywordtype">char</span> c1,<span class="keywordtype">char</span> c2) = 0;</div><div class="line">   <span class="comment"></span></div><div class="line"><span class="comment">      /** </span></div><div class="line"><span class="comment">       * a public variable.</span></div><div class="line"><span class="comment">       * Details.</span></div><div class="line"><span class="comment">       */</span></div><div class="line">       <span class="keywordtype">int</span> publicVar;</div><div class="line">       <span class="comment"></span></div><div class="line"><span class="comment">      /**</span></div><div class="line"><span class="comment">       * a function variable.</span></div><div class="line"><span class="comment">       * Details.</span></div><div class="line"><span class="comment">       */</span></div><div class="line">       int (*handler)(<span class="keywordtype">int</span> a,<span class="keywordtype">int</span> b);</div><div class="line">};</div><div class="line"></div></div><!-- fragment --><p>  
197  </p>
198  Click <a href="examples/jdstyle/html/class_test.html">here</a>
199  for the corresponding HTML documentation that is generated by doxygen.
200   <p>Similarly, if one wishes the first sentence of a Qt style documentation block to automatically be treated as a brief description, one may set <a class="el" href="config.html#cfg_qt_autobrief">QT_AUTOBRIEF</a> to YES in the configuration file.</p>
201 <h3><a class="anchor" id="structuralcommands"></a>
202 Documentation at other places</h3>
203 <p>In the examples in the previous section the comment blocks were always located <em>in front</em> of the declaration or definition of a file, class or namespace or <em>in front</em> or <em>after</em> one of its members. Although this is often comfortable, there may sometimes be reasons to put the documentation somewhere else. For documenting a file this is even required since there is no such thing as "in front of a file".</p>
204 <p>Doxygen allows you to put your documentation blocks practically anywhere (the exception is inside the body of a function or inside a normal C style comment block).</p>
205 <p>The price you pay for not putting the documentation block directly before (or after) an item is the need to put a structural command inside the documentation block, which leads to some duplication of information. So in practice you should <em>avoid</em> the use of structural commands <em>unless</em> other requirements force you to do so.</p>
206 <p>Structural commands (like <a class="el" href="commands.html#cmd_intro">all other commands</a>) start with a backslash (<code>\</code>), or an at-sign (<code>@</code>) if you prefer JavaDoc style, followed by a command name and one or more parameters. For instance, if you want to document the class <code>Test</code> in the example above, you could have also put the following documentation block somewhere in the input that is read by doxygen: </p><pre class="fragment">/*! \class Test
207     \brief A test class.
208
209     A more detailed class description.
210 */
211 </pre><p>Here the special command <code>\class</code> is used to indicate that the comment block contains documentation for the class <code>Test</code>. Other structural commands are: </p><ul>
212 <li>
213 <code>\struct</code> to document a C-struct. </li>
214 <li>
215 <code>\union</code> to document a union. </li>
216 <li>
217 <code>\enum</code> to document an enumeration type. </li>
218 <li>
219 <code>\fn</code> to document a function. </li>
220 <li>
221 <code>\var</code> to document a variable or typedef or enum value. </li>
222 <li>
223 <code>\def</code> to document a #define. </li>
224 <li>
225 <code>\typedef</code> to document a type definition. </li>
226 <li>
227 <code>\file</code> to document a file. </li>
228 <li>
229 <code>\namespace</code> to document a namespace. </li>
230 <li>
231 <code>\package</code> to document a Java package. </li>
232 <li>
233 <code>\interface</code> to document an IDL interface. </li>
234 </ul>
235 <p>See section <a class="el" href="commands.html">Special Commands</a> for detailed information about these and many other commands.</p>
236 <p>To document a member of a C++ class, you must also document the class itself. The same holds for namespaces. To document a global C function, typedef, enum or preprocessor definition you must first document the file that contains it (usually this will be a header file, because that file contains the information that is exported to other source files).</p>
237 <dl class="section attention"><dt>Attention</dt><dd>Let's repeat that, because it is often overlooked: to document global objects (functions, typedefs, enum, macros, etc), you <em>must</em> document the file in which they are defined. In other words, there <em>must</em> at least be a<pre class="fragment">/*! \file */ </pre> or a<pre class="fragment">/** @file */ </pre> line in this file.</dd></dl>
238 <p>Here is an example of a C header named <code>structcmd.h</code> that is documented using structural commands: </p><div class="fragment"><div class="line"><span class="comment">/*! \file structcmd.h</span></div><div class="line"><span class="comment">    \brief A Documented file.</span></div><div class="line"><span class="comment">    </span></div><div class="line"><span class="comment">    Details.</span></div><div class="line"><span class="comment">*/</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">/*! \def MAX(a,b)</span></div><div class="line"><span class="comment">    \brief A macro that returns the maximum of \a a and \a b.</span></div><div class="line"><span class="comment">   </span></div><div class="line"><span class="comment">    Details.</span></div><div class="line"><span class="comment">*/</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">/*! \var typedef unsigned int UINT32</span></div><div class="line"><span class="comment">    \brief A type definition for a .</span></div><div class="line"><span class="comment">    </span></div><div class="line"><span class="comment">    Details.</span></div><div class="line"><span class="comment">*/</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">/*! \var int errno</span></div><div class="line"><span class="comment">    \brief Contains the last error code.</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">    \warning Not thread safe!</span></div><div class="line"><span class="comment">*/</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">/*! \fn int open(const char *pathname,int flags)</span></div><div class="line"><span class="comment">    \brief Opens a file descriptor.</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">    \param pathname The name of the descriptor.</span></div><div class="line"><span class="comment">    \param flags Opening flags.</span></div><div class="line"><span class="comment">*/</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">/*! \fn int close(int fd)</span></div><div class="line"><span class="comment">    \brief Closes the file descriptor \a fd.</span></div><div class="line"><span class="comment">    \param fd The descriptor to close.</span></div><div class="line"><span class="comment">*/</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">/*! \fn size_t write(int fd,const char *buf, size_t count)</span></div><div class="line"><span class="comment">    \brief Writes \a count bytes from \a buf to the filedescriptor \a fd.</span></div><div class="line"><span class="comment">    \param fd The descriptor to write to.</span></div><div class="line"><span class="comment">    \param buf The data buffer to write.</span></div><div class="line"><span class="comment">    \param count The number of bytes to write.</span></div><div class="line"><span class="comment">*/</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">/*! \fn int read(int fd,char *buf,size_t count)</span></div><div class="line"><span class="comment">    \brief Read bytes from a file descriptor.</span></div><div class="line"><span class="comment">    \param fd The descriptor to read from.</span></div><div class="line"><span class="comment">    \param buf The buffer to read into.</span></div><div class="line"><span class="comment">    \param count The number of bytes to read.</span></div><div class="line"><span class="comment">*/</span></div><div class="line"></div><div class="line"><span class="preprocessor">#define MAX(a,b) (((a)&gt;(b))?(a):(b))</span></div><div class="line"><span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> UINT32;</div><div class="line"><span class="keywordtype">int</span> errno;</div><div class="line"><span class="keywordtype">int</span> open(<span class="keyword">const</span> <span class="keywordtype">char</span> *,<span class="keywordtype">int</span>);</div><div class="line"><span class="keywordtype">int</span> close(<span class="keywordtype">int</span>);</div><div class="line"><span class="keywordtype">size_t</span> write(<span class="keywordtype">int</span>,<span class="keyword">const</span> <span class="keywordtype">char</span> *, <span class="keywordtype">size_t</span>);</div><div class="line"><span class="keywordtype">int</span> read(<span class="keywordtype">int</span>,<span class="keywordtype">char</span> *,<span class="keywordtype">size_t</span>);</div></div><!-- fragment --><p>  
239  </p>
240  Click <a href="examples/structcmd/html/structcmd_8h.html">here</a>
241  for the corresponding HTML documentation that is generated by doxygen.
242   <p>Because each comment block in the example above contains a structural command, all the comment blocks could be moved to another location or input file (the source file for instance), without affecting the generated documentation. The disadvantage of this approach is that prototypes are duplicated, so all changes have to be made twice! Because of this you should first consider if this is really needed, and avoid structural commands if possible. I often receive examples that contain \fn command in comment blocks which are place in front of a function. This is clearly a case where the \fn command is redundant and will only lead to problems.</p>
243 <p>When you place a comment block in a file with one of the following extensions <code>.dox</code>, <code>.txt</code>, or <code>.doc</code> then doxygen will hide this file from the file list.</p>
244 <p>If you have a file that doxygen cannot parse but still would like to document it, you can show it as-is using <a class="el" href="commands.html#cmdverbinclude">\verbinclude</a>, e.g.</p>
245 <pre class="fragment">/*! \file myscript.sh
246  *  Look at this nice script:
247  *  \verbinclude myscript.sh
248  */
249 </pre><p>Make sure that the script is explicitly listed in the <a class="el" href="config.html#cfg_input">INPUT</a> or that <a class="el" href="config.html#cfg_file_patterns">FILE_PATTERNS</a> includes the <code>.sh</code> extension and the the script can be found in the path set via <a class="el" href="config.html#cfg_example_path">EXAMPLE_PATH</a>.</p>
250 <h2><a class="anchor" id="pythonblocks"></a>
251 Comment blocks in Python</h2>
252 <p>For Python there is a standard way of documenting the code using so called documentation strings. Such strings are stored in <code><b>doc</b></code> and can be retrieved at runtime. Doxygen will extract such comments and assume they have to be represented in a preformatted way.</p>
253 <div class="fragment"><div class="line"><span class="stringliteral">&quot;&quot;&quot;@package docstring</span></div><div class="line"><span class="stringliteral">Documentation for this module.</span></div><div class="line"><span class="stringliteral"></span></div><div class="line"><span class="stringliteral">More details.</span></div><div class="line"><span class="stringliteral">&quot;&quot;&quot;</span></div><div class="line"></div><div class="line"><span class="keyword">def </span>func():</div><div class="line">    <span class="stringliteral">&quot;&quot;&quot;Documentation for a function.</span></div><div class="line"><span class="stringliteral"></span></div><div class="line"><span class="stringliteral">    More details.</span></div><div class="line"><span class="stringliteral">    &quot;&quot;&quot;</span></div><div class="line">    <span class="keywordflow">pass</span></div><div class="line"></div><div class="line"><span class="keyword">class </span>PyClass:</div><div class="line">    <span class="stringliteral">&quot;&quot;&quot;Documentation for a class.</span></div><div class="line"><span class="stringliteral"></span></div><div class="line"><span class="stringliteral">    More details.</span></div><div class="line"><span class="stringliteral">    &quot;&quot;&quot;</span></div><div class="line">   </div><div class="line">    <span class="keyword">def </span>__init__(self):</div><div class="line">        <span class="stringliteral">&quot;&quot;&quot;The constructor.&quot;&quot;&quot;</span></div><div class="line">        self._memVar = 0;</div><div class="line">   </div><div class="line">    <span class="keyword">def </span>PyMethod(self):</div><div class="line">        <span class="stringliteral">&quot;&quot;&quot;Documentation for a method.&quot;&quot;&quot;</span></div><div class="line">        <span class="keywordflow">pass</span></div><div class="line">     </div></div><!-- fragment --><p>  
254  </p>
255  Click <a href="examples/docstring/html/index.html">here</a>
256  for the corresponding HTML documentation that is generated by doxygen.
257   <p>Note that in this case none of doxygen's <a class="el" href="commands.html#cmd_intro">special commands</a> are supported.</p>
258 <p>There is also another way to document Python code using comments that start with "##". These type of comment blocks are more in line with the way documentation blocks work for the other languages supported by doxygen and this also allows the use of special commands.</p>
259 <p>Here is the same example again but now using doxygen style comments:</p>
260 <div class="fragment"><div class="line"><span class="comment">## @package pyexample</span></div><div class="line"><span class="comment">#  Documentation for this module.</span></div><div class="line"><span class="comment">#</span></div><div class="line"><span class="comment">#  More details.</span></div><div class="line"></div><div class="line"><span class="comment">## Documentation for a function.</span></div><div class="line"><span class="comment">#</span></div><div class="line"><span class="comment">#  More details.</span></div><div class="line"><span class="keyword">def </span>func():</div><div class="line">    <span class="keywordflow">pass</span></div><div class="line"></div><div class="line"><span class="comment">## Documentation for a class.</span></div><div class="line"><span class="comment">#</span></div><div class="line"><span class="comment">#  More details.</span></div><div class="line"><span class="keyword">class </span>PyClass:</div><div class="line">   </div><div class="line">    <span class="comment">## The constructor.</span></div><div class="line">    <span class="keyword">def </span>__init__(self):</div><div class="line">        self._memVar = 0;</div><div class="line">   </div><div class="line">    <span class="comment">## Documentation for a method.</span></div><div class="line"><span class="comment">    #  @param self The object pointer.</span></div><div class="line">    <span class="keyword">def </span>PyMethod(self):</div><div class="line">        <span class="keywordflow">pass</span></div><div class="line">     </div><div class="line">    <span class="comment">## A class variable.</span></div><div class="line">    classVar = 0;</div><div class="line"></div><div class="line">    <span class="comment">## @var _memVar</span></div><div class="line"><span class="comment">    #  a member variable</span></div></div><!-- fragment --><p>  
261  </p>
262  Click <a href="examples/pyexample/html/index.html">here</a>
263  for the corresponding HTML documentation that is generated by doxygen.
264   <p>Since python looks more like Java than like C or C++, you should set <a class="el" href="config.html#cfg_optimize_output_java">OPTIMIZE_OUTPUT_JAVA</a> to <code>YES</code> in the config file.</p>
265 <h2><a class="anchor" id="vhdlblocks"></a>
266 Comment blocks in VHDL</h2>
267 <p>For VHDL a comment normally start with "--". Doxygen will extract comments starting with "--!". There are only two types of comment blocks in VHDL; a one line "--!" comment representing a brief description, and a multi-line "--!" comment (where the "--!" prefix is repeated for each line) representing a detailed description.</p>
268 <p>Comments are always located in front of the item that is being documented with one exception: for ports the comment can also be after the item and is then treated as a brief description for the port.</p>
269 <p>Here is an example VHDL file with doxygen comments:</p>
270 <div class="fragment"><div class="line"><span class="keyword">-------------------------------------------------------</span><div class="line"><span class="keyword">--! @file</span><div class="line"><span class="keyword">--! @brief 2:1 Mux using with-select</span><div class="line"><span class="keyword">-------------------------------------------------------</span><div class="line"><div class="line"><span class="keyword">--! Use standard library</span><div class="line"><span class="vhdlkeyword">library </span><span class="keywordflow">ieee</span>;<div class="line"><span class="keyword">--! Use logic elements</span><div class="line"><span class="vhdlkeyword">    use </span>ieee.std_logic_1164.<span class="keywordflow">all</span>;<div class="line"><div class="line"><span class="keyword">--! Mux entity brief description</span><div class="line"><div class="line"><span class="keyword">--! Detailed description of this </span><div class="line"><span class="keyword">--! mux design element.</span><div class="line"><span class="keywordflow">entity </span>mux_using_with <span class="keywordflow">is</span><div class="line">    <span class="keywordflow">port</span> <span class="vhdlchar">(</span><div class="line">        <span class="vhdlchar">din_0</span>   <span class="vhdlchar">:</span> <span class="keywordflow">in</span>  <span class="comment">std_logic</span>;<span class="keyword"> --! Mux first input</span><div class="line">        <span class="vhdlchar">din_1</span>   <span class="vhdlchar">:</span> <span class="keywordflow">in</span>  <span class="comment">std_logic</span>;<span class="keyword"> --! Mux Second input</span><div class="line">        <span class="vhdlchar">sel</span>     <span class="vhdlchar">:</span> <span class="keywordflow">in</span>  <span class="comment">std_logic</span>;<span class="keyword"> --! Select input</span><div class="line">        <span class="vhdlchar">mux_out</span> <span class="vhdlchar">:</span> <span class="keywordflow">out</span> <span class="comment">std_logic</span><span class="keyword">  --! Mux output</span><div class="line">    <span class="vhdlchar">)</span>;<div class="line"><span class="keywordflow">end</span> <span class="keywordflow">entity</span>;<div class="line"><div class="line"><span class="keyword">--! @brief Architecture definition of the MUX</span><div class="line"><span class="keyword">--! @details More details about this mux element.</span><div class="line"><span class="keywordflow">architecture</span> behavior <span class="keywordflow">of</span> mux_using_with is<div class="line"><span class="vhdlkeyword">begin</span><div class="line">    <span class="keywordflow">with</span> <span class="vhdlchar">(</span><span class="vhdlchar">sel</span><span class="vhdlchar">)</span> <span class="keywordflow">select</span><div class="line">    <span class="vhdlchar">mux_out</span> <span class="vhdlchar">&lt;=</span> <span class="vhdlchar">din_0</span> <span class="keywordflow">when</span> <span class="vhdlchar">&#39;</span><span class="vhdllogic"></span><span class="vhdllogic">0</span><span class="vhdlchar">&#39;</span><span class="vhdlchar">,</span><div class="line">               <span class="vhdlchar">din_1</span> <span class="keywordflow">when</span> <span class="keywordflow">others</span>;<div class="line"><span class="keywordflow">end</span> <span class="keywordflow">architecture</span>;<div class="line"></div><!-- fragment --><p>  
271  </p>
272  Click <a href="examples/mux/html/index.html">here</a>
273  for the corresponding HTML documentation that is generated by doxygen.
274   <p>To get proper looking output you need to set <a class="el" href="config.html#cfg_optimize_output_vhdl">OPTIMIZE_OUTPUT_VHDL</a> to <code>YES</code> in the config file. This will also affect a number of other settings. When they were not already set correctly doxygen will produce a warning telling which settings where overruled.</p>
275 <h2><a class="anchor" id="fortranblocks"></a>
276 Comment blocks in Fortran</h2>
277 <p>When using doxygen for Fortran code you should set <a class="el" href="config.html#cfg_optimize_for_fortran">OPTIMIZE_FOR_FORTRAN</a> to <code>YES</code>.</p>
278 <p>The parser tries to guess if the source code is fixed format Fortran or free format Fortran code. This may not always be correct. If not one should use <a class="el" href="config.html#cfg_extension_mapping">EXTENSION_MAPPING</a> to correct this. By setting <code>EXTENSION_MAPPING = f=FortranFixed f90=FortranFree</code> files with extension <code>f</code> are interpreted as fixed format Fortran code and files with extension <code>f90</code> are interpreted as free format Fortran code.</p>
279 <p>For Fortran "!&gt;" or "!&lt;" starts a comment and "!!" or "!&gt;" can be used to continue an one line comment into a multi-line comment.</p>
280 <p>Here is an example of a documented Fortran subroutine: </p><div class="fragment"><div class="line"><span class="comment">!&gt; Build the restriction matrix for the aggregation </span></div><div class="line"><span class="comment">!! method.</span></div><div class="line"><span class="comment">!! @param aggr information about the aggregates</span></div><div class="line"><span class="comment">!! @todo Handle special case</span></div><div class="line"><span class="keyword">subroutine </span>intrestbuild(A,aggr,Restrict,A_ghost)</div><div class="line">  <span class="keywordtype">implicit none</span></div><div class="line">  <span class="keywordtype">Type</span>(spmtx), <span class="keywordtype">intent(in)</span> :: a<span class="comment"> !&lt; our fine level matrix</span></div><div class="line">  <span class="keywordtype">Type</span>(aggrs), <span class="keywordtype">intent(in)</span> :: aggr</div><div class="line">  <span class="keywordtype">Type</span>(spmtx), <span class="keywordtype">intent(out)</span> :: restrict<span class="comment"> !&lt; Our restriction matrix</span></div><div class="line">  <span class="comment">!...</span></div><div class="line"><span class="keyword">end subroutine</span></div></div><!-- fragment --><p>As an alternative you can also use comments in fixed format code:</p>
281 <div class="fragment"><div class="line"><span class="comment">C&gt; Function comment</span></div><div class="line"><span class="comment">C&gt; another line of comment</span></div><div class="line"><span class="keyword">      function </span>a(i)</div><div class="line"><span class="comment">C&gt; input parameter</span></div><div class="line">        <span class="keywordtype">integer</span> i</div><div class="line"><span class="keyword">      end function </span>A</div></div><!-- fragment --><h2><a class="anchor" id="tclblocks"></a>
282 Comment blocks in Tcl</h2>
283 <p>Doxygen documentation can be included in normal Tcl comments.</p>
284 <p>To start a new documentation block start a line with <code>##</code> (two hashes). All following comment lines and continuation lines will be added to this block. The block ends with a line not starting with a <code>#</code> (hash sign).</p>
285 <p>A brief documentation can be added with <code></code>;#&lt; (semicolon, hash and lower then sign). The brief documentation also ends at a line not starting with a <code>#</code> (hash sign).</p>
286 <p>Inside doxygen comment blocks all normal doxygen markings are supported. The only exceptions are described in the following two paragraphs.</p>
287 <p>If a doxygen comment block ends with a line containing only <code>#\code</code> or <code>#@code</code> all code until a line only containing <code>#\endcode</code> or <code>#@endcode</code> is added to the generated documentation as code block.</p>
288 <p>If a doxygen comment block ends with a line containing only <code>#\verbatim</code> or <code>#@verbatim</code> all code until a line only containing <code>#\endverbatim</code> or <code>#@endverbatim</code> is added verbatim to the generated documentation.</p>
289 <p>To detect namespaces, classes, functions and variables the following Tcl commands are recognized. Documentation blocks can be put on the lines before the command.</p>
290 <ul>
291 <li>
292 <code>namespace eval ..</code> Namespace </li>
293 <li>
294 <code>proc ..</code> Function </li>
295 <li>
296 <code>variable ..</code> Variable </li>
297 <li>
298 <code>common ..</code> Common variable </li>
299 <li>
300 <code>itcl::class ..</code> Class </li>
301 <li>
302 <code>itcl::body ..</code> Class method body definition </li>
303 <li>
304 <code>oo::class create ..</code> Class </li>
305 <li>
306 <code>oo::define ..</code> OO Class definition </li>
307 <li>
308 <code>method ..</code> Class method definitions </li>
309 <li>
310 <code>constructor ..</code> Class constructor </li>
311 <li>
312 <code>destructor ..</code> Class destructor </li>
313 <li>
314 <code>public ..</code> Set protection level </li>
315 <li>
316 <code>protected ..</code> Set protection level </li>
317 <li>
318 <code>private ..</code> Set protection level </li>
319 </ul>
320 <p>Following is an example using doxygen style comments:</p>
321 <div class="fragment"><div class="line"><span class="comment">## \file tclexample.tcl</span></div><div class="line"><span class="comment"></span><span class="comment"># File documentation.</span></div><div class="line"><span class="comment"></span><span class="comment">#\verbatim</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment"># Startup code:\</span></div><div class="line"><span class="comment"></span><span class="comment">exec tclsh &quot;$0&quot; &quot;$@&quot;</span></div><div class="line"><span class="comment"></span><span class="comment">#\endverbatim</span></div><div class="line"><span class="comment"></span><span class="comment">## Documented namespace \c ns .</span></div><div class="line"><span class="comment"></span><span class="comment"># The code is inserted here:</span></div><div class="line"><span class="comment"></span><span class="comment">#\code</span></div><div class="line"><span class="comment"></span><span class="keyword">namespace</span> <span class="keyword">eval</span> ns {</div><div class="line">  <span class="comment">## Documented proc \c ns_proc .</span></div><div class="line"><span class="comment"></span><span class="comment">  </span><span class="comment"># param[in] arg some argument</span></div><div class="line"><span class="comment"></span><span class="comment">  </span><span class="keyword">proc</span> ns_proc {arg} {}<span class="comment"></span></div><div class="line"><span class="comment"></span>  <span class="comment">## Documented var \c ns_var .</span></div><div class="line"><span class="comment"></span><span class="comment">  </span><span class="comment"># Some documentation.</span></div><div class="line"><span class="comment"></span><span class="comment">  </span><span class="keyword">variable</span> ns_var<span class="comment"></span></div><div class="line"><span class="comment"></span>  <span class="comment">## Documented itcl class \c itcl_class .</span></div><div class="line"><span class="comment"></span><span class="comment">  </span><span class="keyword">itcl::class</span> itcl_class {</div><div class="line">    <span class="comment">## Create object.</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="keyword">constructor</span> {args} {<span class="keyword">eval</span> $args}<span class="comment"></span></div><div class="line"><span class="comment"></span>    <span class="comment">## Destroy object.</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="keyword">destructor</span> {<span class="keyword">exit</span>}<span class="comment"></span></div><div class="line"><span class="comment"></span>    <span class="comment">## Documented itcl method \c itcl_method_x .</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="comment"># param[in] arg Argument</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="keyword">private</span> <span class="keyword">method</span> itcl_method_x {arg}{}<span class="comment"></span></div><div class="line"><span class="comment"></span>    <span class="comment">## Documented itcl method \c itcl_method_y .</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="comment"># param[in] arg Argument</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="keyword">protected</span> <span class="keyword">method</span> itcl_method_y {arg} {}<span class="comment"></span></div><div class="line"><span class="comment"></span>    <span class="comment">## Documented itcl method \c itcl_method_z .</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="comment"># param[in] arg Argument</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="keyword">public</span> <span class="keyword">method</span> itcl_method_z {arg} {}<span class="comment"></span></div><div class="line"><span class="comment"></span>    <span class="comment">## Documented common itcl var \c itcl_Var .</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="keyword">common</span> itcl_Var<span class="comment"></span></div><div class="line"><span class="comment"></span>    <span class="comment">## \protectedsection</span></div><div class="line"><span class="comment"></span><span class="comment">    </span></div><div class="line">    <span class="keyword">variable</span> itcl_var1<span class="comment">;#&lt; Documented itcl var \c itcl_var1 .</span></div><div class="line"><span class="comment">    </span><span class="keyword">variable</span> itcl_var2}<span class="comment"></span></div><div class="line"><span class="comment"></span>  <span class="comment">## Documented oo class \c oo_class .</span></div><div class="line"><span class="comment"></span><span class="comment">  </span><span class="keyword">oo::class</span> create oo_class {</div><div class="line">    <span class="comment">## Create object.</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="comment"># Configure with args</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="keyword">constructor</span> {args} {<span class="keyword">eval</span> $args}<span class="comment"></span></div><div class="line"><span class="comment"></span>    <span class="comment">## Destroy object.</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="comment"># Exit.</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="keyword">destructor</span> {<span class="keyword">exit</span>}<span class="comment"></span></div><div class="line"><span class="comment"></span>    <span class="comment">## Documented oo var \c oo_var .</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="comment"># Defined inside class</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="keyword">variable</span> oo_var<span class="comment"></span></div><div class="line"><span class="comment"></span>    <span class="comment">## \private Documented oo method \c oo_method_x .</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="comment"># param[in] arg Argument</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="keyword">method</span> oo_method_x {arg} {}<span class="comment"></span></div><div class="line"><span class="comment"></span>    <span class="comment">## \protected Documented oo method \c oo_method_y .</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="comment"># param[in] arg Argument</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="keyword">method</span> oo_method_y {arg} {}<span class="comment"></span></div><div class="line"><span class="comment"></span>    <span class="comment">## \public Documented oo method \c oo_method_z .</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="comment"># param[in] arg Argument</span></div><div class="line"><span class="comment"></span><span class="comment">    </span><span class="keyword">method</span> oo_method_z {arg} {}<span class="comment"></span></div><div class="line"><span class="comment"></span>  }<span class="comment"></span></div><div class="line"><span class="comment"></span>}<span class="comment"></span></div><div class="line"><span class="comment"></span><span class="comment">#\endcode</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="keyword">itcl::body</span> ::ns::itcl_class::itcl_method_x {argx} {</div><div class="line">  <span class="keyword">puts</span> &quot;$argx OK&quot;<span class="comment"></span></div><div class="line"><span class="comment"></span>}<span class="comment"></span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="keyword">oo::define</span> ns::oo_class {</div><div class="line">  <span class="comment">## \public Outside defined variable \c oo_var_out .</span></div><div class="line"><span class="comment"></span><span class="comment">  </span><span class="comment"># Inside oo_class</span></div><div class="line"><span class="comment"></span><span class="comment">  </span><span class="keyword">variable</span> oo_var_out<span class="comment"></span></div><div class="line"><span class="comment"></span>}<span class="comment"></span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment">## Documented global proc \c glob_proc .</span></div><div class="line"><span class="comment"></span><span class="comment"># param[in] arg Argument</span></div><div class="line"><span class="comment"></span><span class="keyword">proc</span> glob_proc {arg} {<span class="keyword">puts</span> $arg}<span class="comment"></span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="keyword">variable</span> glob_var<span class="comment">;#&lt; Documented global var \c glob_var\</span></div><div class="line"><span class="comment">  with newline</span></div><div class="line"><span class="comment">#&lt; and continued line</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment"># end of file</span></div></div><!-- fragment --><p>  
322  </p>
323  Click <a href="examples/tclexample/html/index.html">here</a>
324  for the corresponding HTML documentation that is generated by doxygen.
325   <h1><a class="anchor" id="docstructure"></a>
326 Anatomy of a comment block</h1>
327 <p>The previous section focused on how to make the comments in your code known to doxygen, it explained the difference between a brief and a detailed description, and the use of structural commands.</p>
328 <p>In this section we look at the contents of the comment block itself.</p>
329 <p>Doxygen supports various styles of formatting your comments.</p>
330 <p>The simplest form is to use plain text. This will appear as-is in the output and is ideal for a short description.</p>
331 <p>For longer descriptions you often will find the need for some more structure, like a block of verbatim text, a list, or a simple table. For this doxygen supports the <a href="http://daringfireball.net/projects/markdown/syntax">Markdown</a> syntax, including parts of the <a href="http://michelf.com/projects/php-markdown/extra/">Markdown Extra</a> extension.</p>
332 <p>Markdown is designed to be very easy to read and write. It's formatting is inspired by plain text mail. Markdown works great for simple, generic formatting, like an introduction page for your project. Doxygen also supports reading of markdown files directly. For more details see chapter <a class="el" href="markdown.html">Markdown support</a>.</p>
333 <p>For programming language specific formatting doxygen has two forms of additional markup on top of Markdown formatting.</p>
334 <ol type="1">
335 <li><a href="http://en.wikipedia.org/wiki/Javadoc">Javadoc</a> like markup. See <a class="el" href="commands.html">Special Commands</a> for a complete overview of all commands supported by doxygen.</li>
336 <li><a href="http://en.wikipedia.org/wiki/C_Sharp_(programming_language)#XML_documentation_system">XML</a> markup as specified in the C# standard. See <a class="el" href="xmlcmds.html">XML Commands</a> for the XML commands supported by doxygen.</li>
337 </ol>
338 <p>If this is still not enough doxygen also supports a <a class="el" href="htmlcmds.html">subset</a> of the <a href="http://en.wikipedia.org/wiki/HTML">HTML</a> markup language.</p>
339 <p> 
340 Go to the <a href="markdown.html">next</a> section or return to the
341  <a href="index.html">index</a>.
342  </p>
343 </div></div><!-- contents -->
344 </div><!-- doc-content -->
345 <!-- start footer part -->
346 <div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
347   <ul>
348     <li class="footer">Generated by
349     <a href="http://www.doxygen.org/index.html">
350     <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li>
351   </ul>
352 </div>
353 </body>
354 </html>