comparison DOCS/tech/code-documentation.txt @ 22202:e438a5af7771

random small fixes
author diego
date Wed, 14 Feb 2007 23:44:01 +0000
parents 335964188675
children 32725ca88fed
comparison
equal deleted inserted replaced
22201:50d45af133a0 22202:e438a5af7771
35 - global, file local and important variables 35 - global, file local and important variables
36 * what it is used for 36 * what it is used for
37 * its valid range 37 * its valid range
38 * where it is set (optional) 38 * where it is set (optional)
39 * where validity checking is done (optional, mandatory for variables which 39 * where validity checking is done (optional, mandatory for variables which
40 are set by something external, eg user parameters, file information etc) 40 are set by something external, e.g. user parameters, file information etc)
41 41
42 - #define, typedefs, structs 42 - #define, typedefs, structs
43 * all global definitions 43 * all global definitions
44 * all local definitions whose use is not imediatly clear by their name 44 * all local definitions whose use is not immediately clear by their name
45 (as a rule of thumb, it's better to document too much than not enough) 45 (as a rule of thumb, it's better to document too much than not enough)
46 * all dependencies 46 * all dependencies
47 47
48 - non-trivial parts of the code 48 - non-trivial parts of the code
49 * tricky parts 49 * tricky parts
122 \attention <text> 122 \attention <text>
123 Add a section for something that needs attention. 123 Add a section for something that needs attention.
124 \warning <text> 124 \warning <text>
125 Add a section for a warning. 125 Add a section for a warning.
126 \anchor <refname> 126 \anchor <refname>
127 Set an invisible anchor which can be used to create a link with /ref. 127 Set an invisible anchor which can be used to create a link with \ref.
128 \ref <refname> [<text>] 128 \ref <refname> [<text>]
129 Add a link to <refname>. 129 Add a link to <refname>.
130 130
131 For a complete list of tags please read section 20 "Special commands" of the 131 For a complete list of tags please read section 20 "Special commands" of the
132 doxygen manual. 132 doxygen manual.