Change location of VES5.0 code
[demo.git] / vnfs / VES5.0 / doxygen-1.8.12 / html / trouble.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: Troubleshooting</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('trouble.html','');});
50 </script>
51 <div id="doc-content">
52 <div class="header">
53   <div class="headertitle">
54 <div class="title">Troubleshooting </div>  </div>
55 </div><!--header-->
56 <div class="contents">
57 <div class="textblock"><h1><a class="anchor" id="knowproblems"></a>
58 Known Problems</h1>
59 <ul>
60 <li>
61 Doxygen is <em>not</em> a real compiler, it is only a lexical scanner. This means that it can and will not detect errors in your source code. </li>
62 <li>
63 Doxygen has a build in preprocessor, but this works slightly different than the C preprocessor. Doxygen assumes a header file is properly guarded against multiple inclusion, and that each include file is standalone (i.e. it could be placed at the top of a source file without causing compiler errors). As long as this is true (and this is a good design practice) you should not encounter problems. </li>
64 <li>
65 Since it is impossible to test all possible code fragments, it is very well possible, that some valid piece of C/C++ code is not handled properly. If you find such a piece, please send it to me, so I can improve doxygen's parsing capabilities. Try to make the piece of code you send as small as possible, to help me narrow down the search. </li>
66 <li>
67 Doxygen does not work properly if there are multiple classes, structs or unions with the same name in your code. It should not crash however, rather it should ignore all of the classes with the same name except one. </li>
68 <li>
69 Some commands do not work inside the arguments of other commands. Inside a HTML link (i.e. &lt;a&#160;href="..."&gt;...&lt;a&gt;) for instance other commands (including other HTML commands) do not work! The sectioning commands are an important exception. </li>
70 <li>
71 Redundant braces can confuse doxygen in some cases. For example: <pre class="fragment">  void f (int);
72 </pre> is properly parsed as a function declaration, but <pre class="fragment">  const int (a);
73 </pre> is also seen as a function declaration with name <code>int</code>, because only the syntax is analyzed, not the semantics. If the redundant braces can be detected, as in <pre class="fragment">  int *(a[20]);
74 </pre> then doxygen will remove the braces and correctly parse the result. </li>
75 <li>
76 <p class="startli">Not all names in code fragments that are included in the documentation are replaced by links (for instance when using <a class="el" href="config.html#cfg_source_browser">SOURCE_BROWSER</a> = <code>YES</code>) and links to overloaded members may point to the wrong member. This also holds for the "Referenced by" list that is generated for each function.</p>
77 <p class="endli">For a part this is because the code parser isn't smart enough at the moment. I'll try to improve this in the future. But even with these improvements not everything can be properly linked to the corresponding documentation, because of possible ambiguities or lack of information about the context in which the code fragment is found. </p>
78 </li>
79 <li>
80 It is not possible to insert a non-member function f in a class A using the <a class="el" href="commands.html#cmdrelates">\relates</a> or <a class="el" href="commands.html#cmdrelatesalso">\relatesalso</a> command, if class A already has a member with name f and the same argument list. </li>
81 <li>
82 There is only very limited support for member specialization at the moment. It only works if there is a specialized template class as well. </li>
83 <li>
84 Not all special commands are properly translated to RTF. </li>
85 <li>
86 Version 1.8.6 of dot (and maybe earlier versions too) do not generate proper map files, causing the graphs that doxygen generates not to be properly clickable. </li>
87 <li>
88 PHP only: Doxygen requires that all PHP statements (i.e. code) is wrapped in a functions/methods, otherwise you may run into parse problems. </li>
89 </ul>
90 <h1><a class="anchor" id="howtohelp"></a>
91 How to Help</h1>
92 <p>The development of doxygen highly depends on your input!</p>
93 <p>If you are trying doxygen let me know what you think of it (do you miss certain features?). Even if you decide not to use it, please let me know why.</p>
94 <h1><a class="anchor" id="bug_reports"></a>
95 How to report a bug</h1>
96 <p>Bugs are tracked in GNOME's <a href="http://bugzilla.gnome.org">bugzilla</a> database. Before submitting a <a href="http://bugzilla.gnome.org/enter_bug.cgi?product=doxygen">new bug</a>, first <a href="http://bugzilla.gnome.org/query.cgi?format=advanced&amp;product=doxygen">search</a> through the database if the same bug has already been submitted by others (the doxygen product will be preselected). If you believe you have found a new bug, please <a href="http://bugzilla.gnome.org/enter_bug.cgi?product=doxygen">report it</a>.</p>
97 <p>If you are unsure whether or not something is a bug, please ask help on the <a href="http://sourceforge.net/mail/?group_id=5971">users mailing list</a> first (subscription is required).</p>
98 <p>If you send only a (vague) description of a bug, you are usually not very helpful and it will cost me much more time to figure out what you mean. In the worst-case your bug report may even be completely ignored by me, so always try to include the following information in your bug report:</p><ul>
99 <li>The version of doxygen you are using (for instance 1.5.3, use <code>doxygen --version</code> if you are not sure).</li>
100 <li>The name and version number of your operating system (for instance SuSE Linux 6.4)</li>
101 <li>It is usually a good idea to send along the configuration file as well, but please use doxygen with the <code>-s</code> flag while generating it to keep it small (use <code>doxygen -s -u [configName]</code> to strip the comments from an existing config file).</li>
102 <li>The easiest (and often the only) way for me to fix bugs is if you can attach a small example demonstrating the problem you have to the bug report, so I can reproduce it on my machine. Please make sure the example is valid source code (could potentially compile) and that the problem is really captured by the example (I often get examples that do not trigger the actual bug!). If you intend to send more than one file please zip or tar the files together into a single file for easier processing. Note that when reporting a new bug you'll get a chance to attach a file to it only <em>after</em> submitting the initial bug description.</li>
103 </ul>
104 <p>You can (and are encouraged to) add a patch for a bug. If you do so please use PATCH as a keyword in the bug entry form.</p>
105 <p>If you have ideas how to fix existing bugs and limitations please discuss them on the <a href="http://sourceforge.net/mail/?group_id=5971">developers mailing list</a> (subscription required). Patches can also be sent directly to <a href="#" onclick="location.href='mai'+'lto:'+'dim'+'it'+'ri@'+'st'+'ack'+'.n'+'l'; return false;">dimit<span style="display: none;">.nosp@m.</span>ri@s<span style="display: none;">.nosp@m.</span>tack.<span style="display: none;">.nosp@m.</span>nl</a> if you prefer not to send them via the bug tracker or mailing list.</p>
106 <p>For patches please use "diff -uN" or include the files you modified. If you send more than one file please tar or zip everything, so I only have to save and download one file.</p>
107 <p> 
108 Go to the <a href="features.html">next</a> section or return to the
109  <a href="index.html">index</a>.
110  </p>
111 </div></div><!-- contents -->
112 </div><!-- doc-content -->
113 <!-- start footer part -->
114 <div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
115   <ul>
116     <li class="footer">Generated by
117     <a href="http://www.doxygen.org/index.html">
118     <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li>
119   </ul>
120 </div>
121 </body>
122 </html>