Mercurial > hg > beaglert
comparison Doxyfile @ 500:b935f890e512 prerelease
Updated Doxy to 1.8.11
Amended example titles in render.cpp and file locations in Doxy file.
author | Robert Jack <robert.h.jack@gmail.com> |
---|---|
date | Wed, 22 Jun 2016 00:27:13 +0100 |
parents | a15a116f6904 |
children | 9f455f01edd5 |
comparison
equal
deleted
inserted
replaced
499:a15a116f6904 | 500:b935f890e512 |
---|---|
1 # Doxyfile 1.7.6.1 | 1 # Doxyfile 1.8.11 |
2 | 2 |
3 # This file describes the settings to be used by the documentation system | 3 # This file describes the settings to be used by the documentation system |
4 # doxygen (www.doxygen.org) for a project. | 4 # doxygen (www.doxygen.org) for a project. |
5 # | 5 # |
6 # All text after a hash (#) is considered a comment and will be ignored. | 6 # All text after a double hash (##) is considered a comment and is placed in |
7 # front of the TAG it is preceding. | |
8 # | |
9 # All text after a single hash (#) is considered a comment and will be ignored. | |
7 # The format is: | 10 # The format is: |
8 # TAG = value [value, ...] | 11 # TAG = value [value, ...] |
9 # For lists items can also be appended using: | 12 # For lists, items can also be appended using: |
10 # TAG += value [value, ...] | 13 # TAG += value [value, ...] |
11 # Values that contain spaces should be placed between quotes (" "). | 14 # Values that contain spaces should be placed between quotes (\" \"). |
12 | 15 |
13 #--------------------------------------------------------------------------- | 16 #--------------------------------------------------------------------------- |
14 # Project related configuration options | 17 # Project related configuration options |
15 #--------------------------------------------------------------------------- | 18 #--------------------------------------------------------------------------- |
16 | 19 |
17 # This tag specifies the encoding used for all characters in the config file | 20 # This tag specifies the encoding used for all characters in the config file |
18 # that follow. The default is UTF-8 which is also the encoding used for all | 21 # that follow. The default is UTF-8 which is also the encoding used for all text |
19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the | 22 # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv |
20 # iconv built into libc) for the transcoding. See | 23 # built into libc) for the transcoding. See http://www.gnu.org/software/libiconv |
21 # http://www.gnu.org/software/libiconv for the list of possible encodings. | 24 # for the list of possible encodings. |
25 # The default value is: UTF-8. | |
22 | 26 |
23 DOXYFILE_ENCODING = UTF-8 | 27 DOXYFILE_ENCODING = UTF-8 |
24 | 28 |
25 # The PROJECT_NAME tag is a single word (or sequence of words) that should | 29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by |
26 # identify the project. Note that if you do not use Doxywizard you need | 30 # double-quotes, unless you are using Doxywizard) that should identify the |
27 # to put quotes around the project name if it contains spaces. | 31 # project for which the documentation is generated. This name is used in the |
32 # title of most generated pages and in a few other places. | |
33 # The default value is: My Project. | |
28 | 34 |
29 PROJECT_NAME = "Bela" | 35 PROJECT_NAME = "Bela" |
30 | 36 |
31 # The PROJECT_NUMBER tag can be used to enter a project or revision number. | 37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This |
32 # This could be handy for archiving the generated documentation or | 38 # could be handy for archiving the generated documentation or if some version |
33 # if some version control system is used. | 39 # control system is used. |
34 | 40 |
35 PROJECT_NUMBER = | 41 PROJECT_NUMBER = |
36 | 42 |
37 # Using the PROJECT_BRIEF tag one can provide an optional one line description | 43 # Using the PROJECT_BRIEF tag one can provide an optional one line description |
38 # for a project that appears at the top of each page and should give viewer | 44 # for a project that appears at the top of each page and should give viewer a |
39 # a quick idea about the purpose of the project. Keep the description short. | 45 # quick idea about the purpose of the project. Keep the description short. |
40 | 46 |
41 PROJECT_BRIEF = "Real-time, ultra-low-latency audio and sensor processing system for BeagleBone Black" | 47 PROJECT_BRIEF = "Real-time, ultra-low-latency audio and sensor processing system for BeagleBone Black" |
42 | 48 |
43 # With the PROJECT_LOGO tag one can specify an logo or icon that is | 49 # With the PROJECT_LOGO tag one can specify a logo or an icon that is included |
44 # included in the documentation. The maximum height of the logo should not | 50 # in the documentation. The maximum height of the logo should not exceed 55 |
45 # exceed 55 pixels and the maximum width should not exceed 200 pixels. | 51 # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy |
46 # Doxygen will copy the logo to the output directory. | 52 # the logo to the output directory. |
47 | 53 |
48 PROJECT_LOGO = | 54 PROJECT_LOGO = |
49 | 55 |
50 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) | 56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path |
51 # base path where the generated documentation will be put. | 57 # into which the generated documentation will be written. If a relative path is |
52 # If a relative path is entered, it will be relative to the location | 58 # entered, it will be relative to the location where doxygen was started. If |
53 # where doxygen was started. If left blank the current directory will be used. | 59 # left blank the current directory will be used. |
54 | 60 |
55 OUTPUT_DIRECTORY = Documentation | 61 OUTPUT_DIRECTORY = Documentation |
56 | 62 |
57 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create | 63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- |
58 # 4096 sub-directories (in 2 levels) under the output directory of each output | 64 # directories (in 2 levels) under the output directory of each output format and |
59 # format and will distribute the generated files over these directories. | 65 # will distribute the generated files over these directories. Enabling this |
60 # Enabling this option can be useful when feeding doxygen a huge amount of | 66 # option can be useful when feeding doxygen a huge amount of source files, where |
61 # source files, where putting all generated files in the same directory would | 67 # putting all generated files in the same directory would otherwise causes |
62 # otherwise cause performance problems for the file system. | 68 # performance problems for the file system. |
69 # The default value is: NO. | |
63 | 70 |
64 CREATE_SUBDIRS = NO | 71 CREATE_SUBDIRS = NO |
72 | |
73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII | |
74 # characters to appear in the names of generated files. If set to NO, non-ASCII | |
75 # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode | |
76 # U+3044. | |
77 # The default value is: NO. | |
78 | |
79 ALLOW_UNICODE_NAMES = NO | |
65 | 80 |
66 # The OUTPUT_LANGUAGE tag is used to specify the language in which all | 81 # The OUTPUT_LANGUAGE tag is used to specify the language in which all |
67 # documentation generated by doxygen is written. Doxygen will use this | 82 # documentation generated by doxygen is written. Doxygen will use this |
68 # information to generate all constant output in the proper language. | 83 # information to generate all constant output in the proper language. |
69 # The default language is English, other supported languages are: | 84 # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, |
70 # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, | 85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), |
71 # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, | 86 # Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, |
72 # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English | 87 # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), |
73 # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, | 88 # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, |
74 # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, | 89 # Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, |
75 # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. | 90 # Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, |
91 # Ukrainian and Vietnamese. | |
92 # The default value is: English. | |
76 | 93 |
77 OUTPUT_LANGUAGE = English | 94 OUTPUT_LANGUAGE = English |
78 | 95 |
79 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will | 96 # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member |
80 # include brief member descriptions after the members that are listed in | 97 # descriptions after the members that are listed in the file and class |
81 # the file and class documentation (similar to JavaDoc). | 98 # documentation (similar to Javadoc). Set to NO to disable this. |
82 # Set to NO to disable this. | 99 # The default value is: YES. |
83 | 100 |
84 BRIEF_MEMBER_DESC = YES | 101 BRIEF_MEMBER_DESC = YES |
85 | 102 |
86 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend | 103 # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief |
87 # the brief description of a member or function before the detailed description. | 104 # description of a member or function before the detailed description |
88 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the | 105 # |
106 # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the | |
89 # brief descriptions will be completely suppressed. | 107 # brief descriptions will be completely suppressed. |
108 # The default value is: YES. | |
90 | 109 |
91 REPEAT_BRIEF = YES | 110 REPEAT_BRIEF = YES |
92 | 111 |
93 # This tag implements a quasi-intelligent brief description abbreviator | 112 # This tag implements a quasi-intelligent brief description abbreviator that is |
94 # that is used to form the text in various listings. Each string | 113 # used to form the text in various listings. Each string in this list, if found |
95 # in this list, if found as the leading text of the brief description, will be | 114 # as the leading text of the brief description, will be stripped from the text |
96 # stripped from the text and the result after processing the whole list, is | 115 # and the result, after processing the whole list, is used as the annotated |
97 # used as the annotated text. Otherwise, the brief description is used as-is. | 116 # text. Otherwise, the brief description is used as-is. If left blank, the |
98 # If left blank, the following values are used ("$name" is automatically | 117 # following values are used ($name is automatically replaced with the name of |
99 # replaced with the name of the entity): "The $name class" "The $name widget" | 118 # the entity):The $name class, The $name widget, The $name file, is, provides, |
100 # "The $name file" "is" "provides" "specifies" "contains" | 119 # specifies, contains, represents, a, an and the. |
101 # "represents" "a" "an" "the" | |
102 | 120 |
103 ABBREVIATE_BRIEF = | 121 ABBREVIATE_BRIEF = |
104 | 122 |
105 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then | 123 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then |
106 # Doxygen will generate a detailed section even if there is only a brief | 124 # doxygen will generate a detailed section even if there is only a brief |
107 # description. | 125 # description. |
126 # The default value is: NO. | |
108 | 127 |
109 ALWAYS_DETAILED_SEC = NO | 128 ALWAYS_DETAILED_SEC = NO |
110 | 129 |
111 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all | 130 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all |
112 # inherited members of a class in the documentation of that class as if those | 131 # inherited members of a class in the documentation of that class as if those |
113 # members were ordinary class members. Constructors, destructors and assignment | 132 # members were ordinary class members. Constructors, destructors and assignment |
114 # operators of the base classes will not be shown. | 133 # operators of the base classes will not be shown. |
134 # The default value is: NO. | |
115 | 135 |
116 INLINE_INHERITED_MEMB = NO | 136 INLINE_INHERITED_MEMB = NO |
117 | 137 |
118 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full | 138 # If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path |
119 # path before files name in the file list and in the header files. If set | 139 # before files name in the file list and in the header files. If set to NO the |
120 # to NO the shortest path that makes the file name unique will be used. | 140 # shortest path that makes the file name unique will be used |
141 # The default value is: YES. | |
121 | 142 |
122 FULL_PATH_NAMES = YES | 143 FULL_PATH_NAMES = YES |
123 | 144 |
124 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag | 145 # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. |
125 # can be used to strip a user-defined part of the path. Stripping is | 146 # Stripping is only done if one of the specified strings matches the left-hand |
126 # only done if one of the specified strings matches the left-hand part of | 147 # part of the path. The tag can be used to show relative paths in the file list. |
127 # the path. The tag can be used to show relative paths in the file list. | 148 # If left blank the directory from which doxygen is run is used as the path to |
128 # If left blank the directory from which doxygen is run is used as the | 149 # strip. |
129 # path to strip. | 150 # |
151 # Note that you can specify absolute paths here, but also relative paths, which | |
152 # will be relative from the directory where doxygen is started. | |
153 # This tag requires that the tag FULL_PATH_NAMES is set to YES. | |
130 | 154 |
131 STRIP_FROM_PATH = | 155 STRIP_FROM_PATH = |
132 | 156 |
133 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of | 157 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the |
134 # the path mentioned in the documentation of a class, which tells | 158 # path mentioned in the documentation of a class, which tells the reader which |
135 # the reader which header file to include in order to use a class. | 159 # header file to include in order to use a class. If left blank only the name of |
136 # If left blank only the name of the header file containing the class | 160 # the header file containing the class definition is used. Otherwise one should |
137 # definition is used. Otherwise one should specify the include paths that | 161 # specify the list of include paths that are normally passed to the compiler |
138 # are normally passed to the compiler using the -I flag. | 162 # using the -I flag. |
139 | 163 |
140 STRIP_FROM_INC_PATH = | 164 STRIP_FROM_INC_PATH = |
141 | 165 |
142 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter | 166 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but |
143 # (but less readable) file names. This can be useful if your file system | 167 # less readable) file names. This can be useful is your file systems doesn't |
144 # doesn't support long names like on DOS, Mac, or CD-ROM. | 168 # support long names like on DOS, Mac, or CD-ROM. |
169 # The default value is: NO. | |
145 | 170 |
146 SHORT_NAMES = NO | 171 SHORT_NAMES = NO |
147 | 172 |
148 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen | 173 # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the |
149 # will interpret the first line (until the first dot) of a JavaDoc-style | 174 # first line (until the first dot) of a Javadoc-style comment as the brief |
150 # comment as the brief description. If set to NO, the JavaDoc | 175 # description. If set to NO, the Javadoc-style will behave just like regular Qt- |
151 # comments will behave just like regular Qt-style comments | 176 # style comments (thus requiring an explicit @brief command for a brief |
152 # (thus requiring an explicit @brief command for a brief description.) | 177 # description.) |
178 # The default value is: NO. | |
153 | 179 |
154 JAVADOC_AUTOBRIEF = NO | 180 JAVADOC_AUTOBRIEF = NO |
155 | 181 |
156 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will | 182 # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first |
157 # interpret the first line (until the first dot) of a Qt-style | 183 # line (until the first dot) of a Qt-style comment as the brief description. If |
158 # comment as the brief description. If set to NO, the comments | 184 # set to NO, the Qt-style will behave just like regular Qt-style comments (thus |
159 # will behave just like regular Qt-style comments (thus requiring | 185 # requiring an explicit \brief command for a brief description.) |
160 # an explicit \brief command for a brief description.) | 186 # The default value is: NO. |
161 | 187 |
162 QT_AUTOBRIEF = NO | 188 QT_AUTOBRIEF = NO |
163 | 189 |
164 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen | 190 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a |
165 # treat a multi-line C++ special comment block (i.e. a block of //! or /// | 191 # multi-line C++ special comment block (i.e. a block of //! or /// comments) as |
166 # comments) as a brief description. This used to be the default behaviour. | 192 # a brief description. This used to be the default behavior. The new default is |
167 # The new default is to treat a multi-line C++ comment block as a detailed | 193 # to treat a multi-line C++ comment block as a detailed description. Set this |
168 # description. Set this tag to YES if you prefer the old behaviour instead. | 194 # tag to YES if you prefer the old behavior instead. |
195 # | |
196 # Note that setting this tag to YES also means that rational rose comments are | |
197 # not recognized any more. | |
198 # The default value is: NO. | |
169 | 199 |
170 MULTILINE_CPP_IS_BRIEF = NO | 200 MULTILINE_CPP_IS_BRIEF = NO |
171 | 201 |
172 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented | 202 # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the |
173 # member inherits the documentation from any documented member that it | 203 # documentation from any documented member that it re-implements. |
174 # re-implements. | 204 # The default value is: YES. |
175 | 205 |
176 INHERIT_DOCS = YES | 206 INHERIT_DOCS = YES |
177 | 207 |
178 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce | 208 # If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new |
179 # a new page for each member. If set to NO, the documentation of a member will | 209 # page for each member. If set to NO, the documentation of a member will be part |
180 # be part of the file/class/namespace that contains it. | 210 # of the file/class/namespace that contains it. |
211 # The default value is: NO. | |
181 | 212 |
182 SEPARATE_MEMBER_PAGES = NO | 213 SEPARATE_MEMBER_PAGES = NO |
183 | 214 |
184 # The TAB_SIZE tag can be used to set the number of spaces in a tab. | 215 # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen |
185 # Doxygen uses this value to replace tabs by spaces in code fragments. | 216 # uses this value to replace tabs by spaces in code fragments. |
217 # Minimum value: 1, maximum value: 16, default value: 4. | |
186 | 218 |
187 TAB_SIZE = 8 | 219 TAB_SIZE = 8 |
188 | 220 |
189 # This tag can be used to specify a number of aliases that acts | 221 # This tag can be used to specify a number of aliases that act as commands in |
190 # as commands in the documentation. An alias has the form "name=value". | 222 # the documentation. An alias has the form: |
191 # For example adding "sideeffect=\par Side Effects:\n" will allow you to | 223 # name=value |
192 # put the command \sideeffect (or @sideeffect) in the documentation, which | 224 # For example adding |
193 # will result in a user-defined paragraph with heading "Side Effects:". | 225 # "sideeffect=@par Side Effects:\n" |
194 # You can put \n's in the value part of an alias to insert newlines. | 226 # will allow you to put the command \sideeffect (or @sideeffect) in the |
227 # documentation, which will result in a user-defined paragraph with heading | |
228 # "Side Effects:". You can put \n's in the value part of an alias to insert | |
229 # newlines. | |
195 | 230 |
196 ALIASES = | 231 ALIASES = |
197 | 232 |
198 # This tag can be used to specify a number of word-keyword mappings (TCL only). | 233 # This tag can be used to specify a number of word-keyword mappings (TCL only). |
199 # A mapping has the form "name=value". For example adding | 234 # A mapping has the form "name=value". For example adding "class=itcl::class" |
200 # "class=itcl::class" will allow you to use the command class in the | 235 # will allow you to use the command class in the itcl::class meaning. |
201 # itcl::class meaning. | |
202 | 236 |
203 TCL_SUBST = | 237 TCL_SUBST = |
204 | 238 |
205 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C | 239 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources |
206 # sources only. Doxygen will then generate output that is more tailored for C. | 240 # only. Doxygen will then generate output that is more tailored for C. For |
207 # For instance, some of the names that are used will be different. The list | 241 # instance, some of the names that are used will be different. The list of all |
208 # of all members will be omitted, etc. | 242 # members will be omitted, etc. |
243 # The default value is: NO. | |
209 | 244 |
210 OPTIMIZE_OUTPUT_FOR_C = NO | 245 OPTIMIZE_OUTPUT_FOR_C = NO |
211 | 246 |
212 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java | 247 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or |
213 # sources only. Doxygen will then generate output that is more tailored for | 248 # Python sources only. Doxygen will then generate output that is more tailored |
214 # Java. For instance, namespaces will be presented as packages, qualified | 249 # for that language. For instance, namespaces will be presented as packages, |
215 # scopes will look different, etc. | 250 # qualified scopes will look different, etc. |
251 # The default value is: NO. | |
216 | 252 |
217 OPTIMIZE_OUTPUT_JAVA = NO | 253 OPTIMIZE_OUTPUT_JAVA = NO |
218 | 254 |
219 # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran | 255 # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran |
220 # sources only. Doxygen will then generate output that is more tailored for | 256 # sources. Doxygen will then generate output that is tailored for Fortran. |
221 # Fortran. | 257 # The default value is: NO. |
222 | 258 |
223 OPTIMIZE_FOR_FORTRAN = NO | 259 OPTIMIZE_FOR_FORTRAN = NO |
224 | 260 |
225 # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL | 261 # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL |
226 # sources. Doxygen will then generate output that is tailored for | 262 # sources. Doxygen will then generate output that is tailored for VHDL. |
227 # VHDL. | 263 # The default value is: NO. |
228 | 264 |
229 OPTIMIZE_OUTPUT_VHDL = NO | 265 OPTIMIZE_OUTPUT_VHDL = NO |
230 | 266 |
231 # Doxygen selects the parser to use depending on the extension of the files it | 267 # Doxygen selects the parser to use depending on the extension of the files it |
232 # parses. With this tag you can assign which parser to use for a given extension. | 268 # parses. With this tag you can assign which parser to use for a given |
233 # Doxygen has a built-in mapping, but you can override or extend it using this | 269 # extension. Doxygen has a built-in mapping, but you can override or extend it |
234 # tag. The format is ext=language, where ext is a file extension, and language | 270 # using this tag. The format is ext=language, where ext is a file extension, and |
235 # is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, | 271 # language is one of the parsers supported by doxygen: IDL, Java, Javascript, |
236 # C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make | 272 # C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: |
237 # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C | 273 # FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: |
238 # (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions | 274 # Fortran. In the later case the parser tries to guess whether the code is fixed |
239 # you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. | 275 # or free formatted code, this is the default for Fortran type files), VHDL. For |
276 # instance to make doxygen treat .inc files as Fortran files (default is PHP), | |
277 # and .f files as C (default is Fortran), use: inc=Fortran f=C. | |
278 # | |
279 # Note: For files without extension you can use no_extension as a placeholder. | |
280 # | |
281 # Note that for custom extensions you also need to set FILE_PATTERNS otherwise | |
282 # the files are not read by doxygen. | |
240 | 283 |
241 EXTENSION_MAPPING = | 284 EXTENSION_MAPPING = |
242 | 285 |
286 # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments | |
287 # according to the Markdown format, which allows for more readable | |
288 # documentation. See http://daringfireball.net/projects/markdown/ for details. | |
289 # The output of markdown processing is further processed by doxygen, so you can | |
290 # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in | |
291 # case of backward compatibilities issues. | |
292 # The default value is: YES. | |
293 | |
294 MARKDOWN_SUPPORT = YES | |
295 | |
296 # When enabled doxygen tries to link words that correspond to documented | |
297 # classes, or namespaces to their corresponding documentation. Such a link can | |
298 # be prevented in individual cases by putting a % sign in front of the word or | |
299 # globally by setting AUTOLINK_SUPPORT to NO. | |
300 # The default value is: YES. | |
301 | |
302 AUTOLINK_SUPPORT = YES | |
303 | |
243 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want | 304 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want |
244 # to include (a tag file for) the STL sources as input, then you should | 305 # to include (a tag file for) the STL sources as input, then you should set this |
245 # set this tag to YES in order to let doxygen match functions declarations and | 306 # tag to YES in order to let doxygen match functions declarations and |
246 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. | 307 # definitions whose arguments contain STL classes (e.g. func(std::string); |
247 # func(std::string) {}). This also makes the inheritance and collaboration | 308 # versus func(std::string) {}). This also make the inheritance and collaboration |
248 # diagrams that involve STL classes more complete and accurate. | 309 # diagrams that involve STL classes more complete and accurate. |
310 # The default value is: NO. | |
249 | 311 |
250 BUILTIN_STL_SUPPORT = NO | 312 BUILTIN_STL_SUPPORT = NO |
251 | 313 |
252 # If you use Microsoft's C++/CLI language, you should set this option to YES to | 314 # If you use Microsoft's C++/CLI language, you should set this option to YES to |
253 # enable parsing support. | 315 # enable parsing support. |
316 # The default value is: NO. | |
254 | 317 |
255 CPP_CLI_SUPPORT = NO | 318 CPP_CLI_SUPPORT = NO |
256 | 319 |
257 # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. | 320 # Set the SIP_SUPPORT tag to YES if your project consists of sip (see: |
258 # Doxygen will parse them like normal C++ but will assume all classes use public | 321 # http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen |
259 # instead of private inheritance when no explicit protection keyword is present. | 322 # will parse them like normal C++ but will assume all classes use public instead |
323 # of private inheritance when no explicit protection keyword is present. | |
324 # The default value is: NO. | |
260 | 325 |
261 SIP_SUPPORT = NO | 326 SIP_SUPPORT = NO |
262 | 327 |
263 # For Microsoft's IDL there are propget and propput attributes to indicate getter | 328 # For Microsoft's IDL there are propget and propput attributes to indicate |
264 # and setter methods for a property. Setting this option to YES (the default) | 329 # getter and setter methods for a property. Setting this option to YES will make |
265 # will make doxygen replace the get and set methods by a property in the | 330 # doxygen to replace the get and set methods by a property in the documentation. |
266 # documentation. This will only work if the methods are indeed getting or | 331 # This will only work if the methods are indeed getting or setting a simple |
267 # setting a simple type. If this is not the case, or you want to show the | 332 # type. If this is not the case, or you want to show the methods anyway, you |
268 # methods anyway, you should set this option to NO. | 333 # should set this option to NO. |
334 # The default value is: YES. | |
269 | 335 |
270 IDL_PROPERTY_SUPPORT = YES | 336 IDL_PROPERTY_SUPPORT = YES |
271 | 337 |
272 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC | 338 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC |
273 # tag is set to YES, then doxygen will reuse the documentation of the first | 339 # tag is set to YES then doxygen will reuse the documentation of the first |
274 # member in the group (if any) for the other members of the group. By default | 340 # member in the group (if any) for the other members of the group. By default |
275 # all members of a group must be documented explicitly. | 341 # all members of a group must be documented explicitly. |
342 # The default value is: NO. | |
276 | 343 |
277 DISTRIBUTE_GROUP_DOC = NO | 344 DISTRIBUTE_GROUP_DOC = NO |
278 | 345 |
279 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of | 346 # If one adds a struct or class to a group and this option is enabled, then also |
280 # the same type (for instance a group of public functions) to be put as a | 347 # any nested class or struct is added to the same group. By default this option |
281 # subgroup of that type (e.g. under the Public Functions section). Set it to | 348 # is disabled and one has to add nested compounds explicitly via \ingroup. |
282 # NO to prevent subgrouping. Alternatively, this can be done per class using | 349 # The default value is: NO. |
283 # the \nosubgrouping command. | 350 |
351 GROUP_NESTED_COMPOUNDS = NO | |
352 | |
353 # Set the SUBGROUPING tag to YES to allow class member groups of the same type | |
354 # (for instance a group of public functions) to be put as a subgroup of that | |
355 # type (e.g. under the Public Functions section). Set it to NO to prevent | |
356 # subgrouping. Alternatively, this can be done per class using the | |
357 # \nosubgrouping command. | |
358 # The default value is: YES. | |
284 | 359 |
285 SUBGROUPING = YES | 360 SUBGROUPING = YES |
286 | 361 |
287 # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and | 362 # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions |
288 # unions are shown inside the group in which they are included (e.g. using | 363 # are shown inside the group in which they are included (e.g. using \ingroup) |
289 # @ingroup) instead of on a separate page (for HTML and Man pages) or | 364 # instead of on a separate page (for HTML and Man pages) or section (for LaTeX |
290 # section (for LaTeX and RTF). | 365 # and RTF). |
366 # | |
367 # Note that this feature does not work in combination with | |
368 # SEPARATE_MEMBER_PAGES. | |
369 # The default value is: NO. | |
291 | 370 |
292 INLINE_GROUPED_CLASSES = NO | 371 INLINE_GROUPED_CLASSES = NO |
293 | 372 |
294 # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and | 373 # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions |
295 # unions with only public data fields will be shown inline in the documentation | 374 # with only public data fields or simple typedef fields will be shown inline in |
296 # of the scope in which they are defined (i.e. file, namespace, or group | 375 # the documentation of the scope in which they are defined (i.e. file, |
297 # documentation), provided this scope is documented. If set to NO (the default), | 376 # namespace, or group documentation), provided this scope is documented. If set |
298 # structs, classes, and unions are shown on a separate page (for HTML and Man | 377 # to NO, structs, classes, and unions are shown on a separate page (for HTML and |
299 # pages) or section (for LaTeX and RTF). | 378 # Man pages) or section (for LaTeX and RTF). |
379 # The default value is: NO. | |
300 | 380 |
301 INLINE_SIMPLE_STRUCTS = NO | 381 INLINE_SIMPLE_STRUCTS = NO |
302 | 382 |
303 # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum | 383 # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or |
304 # is documented as struct, union, or enum with the name of the typedef. So | 384 # enum is documented as struct, union, or enum with the name of the typedef. So |
305 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct | 385 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct |
306 # with name TypeT. When disabled the typedef will appear as a member of a file, | 386 # with name TypeT. When disabled the typedef will appear as a member of a file, |
307 # namespace, or class. And the struct will be named TypeS. This can typically | 387 # namespace, or class. And the struct will be named TypeS. This can typically be |
308 # be useful for C code in case the coding convention dictates that all compound | 388 # useful for C code in case the coding convention dictates that all compound |
309 # types are typedef'ed and only the typedef is referenced, never the tag name. | 389 # types are typedef'ed and only the typedef is referenced, never the tag name. |
390 # The default value is: NO. | |
310 | 391 |
311 TYPEDEF_HIDES_STRUCT = NO | 392 TYPEDEF_HIDES_STRUCT = NO |
312 | 393 |
313 # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to | 394 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This |
314 # determine which symbols to keep in memory and which to flush to disk. | 395 # cache is used to resolve symbols given their name and scope. Since this can be |
315 # When the cache is full, less often used symbols will be written to disk. | 396 # an expensive process and often the same symbol appears multiple times in the |
316 # For small to medium size projects (<1000 input files) the default value is | 397 # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small |
317 # probably good enough. For larger projects a too small cache size can cause | 398 # doxygen will become slower. If the cache is too large, memory is wasted. The |
318 # doxygen to be busy swapping symbols to and from disk most of the time | 399 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range |
319 # causing a significant performance penalty. | 400 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 |
320 # If the system has enough physical memory increasing the cache will improve the | 401 # symbols. At the end of a run doxygen will report the cache usage and suggest |
321 # performance by keeping more symbols in memory. Note that the value works on | 402 # the optimal cache size from a speed point of view. |
322 # a logarithmic scale so increasing the size by one will roughly double the | 403 # Minimum value: 0, maximum value: 9, default value: 0. |
323 # memory usage. The cache size is given by this formula: | |
324 # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, | |
325 # corresponding to a cache size of 2^16 = 65536 symbols. | |
326 | |
327 SYMBOL_CACHE_SIZE = 0 | |
328 | |
329 # Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be | |
330 # set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given | |
331 # their name and scope. Since this can be an expensive process and often the | |
332 # same symbol appear multiple times in the code, doxygen keeps a cache of | |
333 # pre-resolved symbols. If the cache is too small doxygen will become slower. | |
334 # If the cache is too large, memory is wasted. The cache size is given by this | |
335 # formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, | |
336 # corresponding to a cache size of 2^16 = 65536 symbols. | |
337 | 404 |
338 LOOKUP_CACHE_SIZE = 0 | 405 LOOKUP_CACHE_SIZE = 0 |
339 | 406 |
340 #--------------------------------------------------------------------------- | 407 #--------------------------------------------------------------------------- |
341 # Build related configuration options | 408 # Build related configuration options |
342 #--------------------------------------------------------------------------- | 409 #--------------------------------------------------------------------------- |
343 | 410 |
344 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in | 411 # If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in |
345 # documentation are documented, even if no documentation was available. | 412 # documentation are documented, even if no documentation was available. Private |
346 # Private class members and static file members will be hidden unless | 413 # class members and static file members will be hidden unless the |
347 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES | 414 # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. |
415 # Note: This will also disable the warnings about undocumented members that are | |
416 # normally produced when WARNINGS is set to YES. | |
417 # The default value is: NO. | |
348 | 418 |
349 EXTRACT_ALL = NO | 419 EXTRACT_ALL = NO |
350 | 420 |
351 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class | 421 # If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will |
352 # will be included in the documentation. | 422 # be included in the documentation. |
423 # The default value is: NO. | |
353 | 424 |
354 EXTRACT_PRIVATE = NO | 425 EXTRACT_PRIVATE = NO |
355 | 426 |
356 # If the EXTRACT_STATIC tag is set to YES all static members of a file | 427 # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal |
357 # will be included in the documentation. | 428 # scope will be included in the documentation. |
429 # The default value is: NO. | |
430 | |
431 EXTRACT_PACKAGE = NO | |
432 | |
433 # If the EXTRACT_STATIC tag is set to YES, all static members of a file will be | |
434 # included in the documentation. | |
435 # The default value is: NO. | |
358 | 436 |
359 EXTRACT_STATIC = YES | 437 EXTRACT_STATIC = YES |
360 | 438 |
361 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) | 439 # If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined |
362 # defined locally in source files will be included in the documentation. | 440 # locally in source files will be included in the documentation. If set to NO, |
363 # If set to NO only classes defined in header files are included. | 441 # only classes defined in header files are included. Does not have any effect |
442 # for Java sources. | |
443 # The default value is: YES. | |
364 | 444 |
365 EXTRACT_LOCAL_CLASSES = YES | 445 EXTRACT_LOCAL_CLASSES = YES |
366 | 446 |
367 # This flag is only useful for Objective-C code. When set to YES local | 447 # This flag is only useful for Objective-C code. If set to YES, local methods, |
368 # methods, which are defined in the implementation section but not in | 448 # which are defined in the implementation section but not in the interface are |
369 # the interface are included in the documentation. | 449 # included in the documentation. If set to NO, only methods in the interface are |
370 # If set to NO (the default) only methods in the interface are included. | 450 # included. |
451 # The default value is: NO. | |
371 | 452 |
372 EXTRACT_LOCAL_METHODS = NO | 453 EXTRACT_LOCAL_METHODS = NO |
373 | 454 |
374 # If this flag is set to YES, the members of anonymous namespaces will be | 455 # If this flag is set to YES, the members of anonymous namespaces will be |
375 # extracted and appear in the documentation as a namespace called | 456 # extracted and appear in the documentation as a namespace called |
376 # 'anonymous_namespace{file}', where file will be replaced with the base | 457 # 'anonymous_namespace{file}', where file will be replaced with the base name of |
377 # name of the file that contains the anonymous namespace. By default | 458 # the file that contains the anonymous namespace. By default anonymous namespace |
378 # anonymous namespaces are hidden. | 459 # are hidden. |
460 # The default value is: NO. | |
379 | 461 |
380 EXTRACT_ANON_NSPACES = NO | 462 EXTRACT_ANON_NSPACES = NO |
381 | 463 |
382 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all | 464 # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all |
383 # undocumented members of documented classes, files or namespaces. | 465 # undocumented members inside documented classes or files. If set to NO these |
384 # If set to NO (the default) these members will be included in the | 466 # members will be included in the various overviews, but no documentation |
385 # various overviews, but no documentation section is generated. | 467 # section is generated. This option has no effect if EXTRACT_ALL is enabled. |
386 # This option has no effect if EXTRACT_ALL is enabled. | 468 # The default value is: NO. |
387 | 469 |
388 HIDE_UNDOC_MEMBERS = NO | 470 HIDE_UNDOC_MEMBERS = NO |
389 | 471 |
390 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all | 472 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all |
391 # undocumented classes that are normally visible in the class hierarchy. | 473 # undocumented classes that are normally visible in the class hierarchy. If set |
392 # If set to NO (the default) these classes will be included in the various | 474 # to NO, these classes will be included in the various overviews. This option |
393 # overviews. This option has no effect if EXTRACT_ALL is enabled. | 475 # has no effect if EXTRACT_ALL is enabled. |
476 # The default value is: NO. | |
394 | 477 |
395 HIDE_UNDOC_CLASSES = NO | 478 HIDE_UNDOC_CLASSES = NO |
396 | 479 |
397 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all | 480 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend |
398 # friend (class|struct|union) declarations. | 481 # (class|struct|union) declarations. If set to NO, these declarations will be |
399 # If set to NO (the default) these declarations will be included in the | 482 # included in the documentation. |
400 # documentation. | 483 # The default value is: NO. |
401 | 484 |
402 HIDE_FRIEND_COMPOUNDS = NO | 485 HIDE_FRIEND_COMPOUNDS = NO |
403 | 486 |
404 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any | 487 # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any |
405 # documentation blocks found inside the body of a function. | 488 # documentation blocks found inside the body of a function. If set to NO, these |
406 # If set to NO (the default) these blocks will be appended to the | 489 # blocks will be appended to the function's detailed documentation block. |
407 # function's detailed documentation block. | 490 # The default value is: NO. |
408 | 491 |
409 HIDE_IN_BODY_DOCS = NO | 492 HIDE_IN_BODY_DOCS = NO |
410 | 493 |
411 # The INTERNAL_DOCS tag determines if documentation | 494 # The INTERNAL_DOCS tag determines if documentation that is typed after a |
412 # that is typed after a \internal command is included. If the tag is set | 495 # \internal command is included. If the tag is set to NO then the documentation |
413 # to NO (the default) then the documentation will be excluded. | 496 # will be excluded. Set it to YES to include the internal documentation. |
414 # Set it to YES to include the internal documentation. | 497 # The default value is: NO. |
415 | 498 |
416 INTERNAL_DOCS = NO | 499 INTERNAL_DOCS = NO |
417 | 500 |
418 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate | 501 # If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file |
419 # file names in lower-case letters. If set to YES upper-case letters are also | 502 # names in lower-case letters. If set to YES, upper-case letters are also |
420 # allowed. This is useful if you have classes or files whose names only differ | 503 # allowed. This is useful if you have classes or files whose names only differ |
421 # in case and if your file system supports case sensitive file names. Windows | 504 # in case and if your file system supports case sensitive file names. Windows |
422 # and Mac users are advised to set this option to NO. | 505 # and Mac users are advised to set this option to NO. |
506 # The default value is: system dependent. | |
423 | 507 |
424 CASE_SENSE_NAMES = YES | 508 CASE_SENSE_NAMES = YES |
425 | 509 |
426 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen | 510 # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with |
427 # will show members with their full class and namespace scopes in the | 511 # their full class and namespace scopes in the documentation. If set to YES, the |
428 # documentation. If set to YES the scope will be hidden. | 512 # scope will be hidden. |
513 # The default value is: NO. | |
429 | 514 |
430 HIDE_SCOPE_NAMES = NO | 515 HIDE_SCOPE_NAMES = NO |
431 | 516 |
432 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen | 517 # If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will |
433 # will put a list of the files that are included by a file in the documentation | 518 # append additional text to a page's title, such as Class Reference. If set to |
434 # of that file. | 519 # YES the compound reference will be hidden. |
520 # The default value is: NO. | |
521 | |
522 HIDE_COMPOUND_REFERENCE= NO | |
523 | |
524 # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of | |
525 # the files that are included by a file in the documentation of that file. | |
526 # The default value is: YES. | |
435 | 527 |
436 SHOW_INCLUDE_FILES = YES | 528 SHOW_INCLUDE_FILES = YES |
437 | 529 |
438 # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen | 530 # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each |
439 # will list include files with double quotes in the documentation | 531 # grouped member an include statement to the documentation, telling the reader |
440 # rather than with sharp brackets. | 532 # which file to include in order to use the member. |
533 # The default value is: NO. | |
534 | |
535 SHOW_GROUPED_MEMB_INC = NO | |
536 | |
537 # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include | |
538 # files with double quotes in the documentation rather than with sharp brackets. | |
539 # The default value is: NO. | |
441 | 540 |
442 FORCE_LOCAL_INCLUDES = NO | 541 FORCE_LOCAL_INCLUDES = NO |
443 | 542 |
444 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] | 543 # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the |
445 # is inserted in the documentation for inline members. | 544 # documentation for inline members. |
545 # The default value is: YES. | |
446 | 546 |
447 INLINE_INFO = YES | 547 INLINE_INFO = YES |
448 | 548 |
449 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen | 549 # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the |
450 # will sort the (detailed) documentation of file and class members | 550 # (detailed) documentation of file and class members alphabetically by member |
451 # alphabetically by member name. If set to NO the members will appear in | 551 # name. If set to NO, the members will appear in declaration order. |
452 # declaration order. | 552 # The default value is: YES. |
453 | 553 |
454 SORT_MEMBER_DOCS = NO | 554 SORT_MEMBER_DOCS = NO |
455 | 555 |
456 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the | 556 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief |
457 # brief documentation of file, namespace and class members alphabetically | 557 # descriptions of file, namespace and class members alphabetically by member |
458 # by member name. If set to NO (the default) the members will appear in | 558 # name. If set to NO, the members will appear in declaration order. Note that |
459 # declaration order. | 559 # this will also influence the order of the classes in the class list. |
560 # The default value is: NO. | |
460 | 561 |
461 SORT_BRIEF_DOCS = NO | 562 SORT_BRIEF_DOCS = NO |
462 | 563 |
463 # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen | 564 # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the |
464 # will sort the (brief and detailed) documentation of class members so that | 565 # (brief and detailed) documentation of class members so that constructors and |
465 # constructors and destructors are listed first. If set to NO (the default) | 566 # destructors are listed first. If set to NO the constructors will appear in the |
466 # the constructors will appear in the respective orders defined by | 567 # respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. |
467 # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. | 568 # Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief |
468 # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO | 569 # member documentation. |
469 # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. | 570 # Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting |
571 # detailed member documentation. | |
572 # The default value is: NO. | |
470 | 573 |
471 SORT_MEMBERS_CTORS_1ST = NO | 574 SORT_MEMBERS_CTORS_1ST = NO |
472 | 575 |
473 # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the | 576 # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy |
474 # hierarchy of group names into alphabetical order. If set to NO (the default) | 577 # of group names into alphabetical order. If set to NO the group names will |
475 # the group names will appear in their defined order. | 578 # appear in their defined order. |
579 # The default value is: NO. | |
476 | 580 |
477 SORT_GROUP_NAMES = NO | 581 SORT_GROUP_NAMES = NO |
478 | 582 |
479 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be | 583 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by |
480 # sorted by fully-qualified names, including namespaces. If set to | 584 # fully-qualified names, including namespaces. If set to NO, the class list will |
481 # NO (the default), the class list will be sorted only by class name, | 585 # be sorted only by class name, not including the namespace part. |
482 # not including the namespace part. | |
483 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. | 586 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. |
484 # Note: This option applies only to the class list, not to the | 587 # Note: This option applies only to the class list, not to the alphabetical |
485 # alphabetical list. | 588 # list. |
589 # The default value is: NO. | |
486 | 590 |
487 SORT_BY_SCOPE_NAME = NO | 591 SORT_BY_SCOPE_NAME = NO |
488 | 592 |
489 # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to | 593 # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper |
490 # do proper type resolution of all parameters of a function it will reject a | 594 # type resolution of all parameters of a function it will reject a match between |
491 # match between the prototype and the implementation of a member function even | 595 # the prototype and the implementation of a member function even if there is |
492 # if there is only one candidate or it is obvious which candidate to choose | 596 # only one candidate or it is obvious which candidate to choose by doing a |
493 # by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen | 597 # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still |
494 # will still accept a match between prototype and implementation in such cases. | 598 # accept a match between prototype and implementation in such cases. |
599 # The default value is: NO. | |
495 | 600 |
496 STRICT_PROTO_MATCHING = NO | 601 STRICT_PROTO_MATCHING = NO |
497 | 602 |
498 # The GENERATE_TODOLIST tag can be used to enable (YES) or | 603 # The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo |
499 # disable (NO) the todo list. This list is created by putting \todo | 604 # list. This list is created by putting \todo commands in the documentation. |
500 # commands in the documentation. | 605 # The default value is: YES. |
501 | 606 |
502 GENERATE_TODOLIST = YES | 607 GENERATE_TODOLIST = YES |
503 | 608 |
504 # The GENERATE_TESTLIST tag can be used to enable (YES) or | 609 # The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test |
505 # disable (NO) the test list. This list is created by putting \test | 610 # list. This list is created by putting \test commands in the documentation. |
506 # commands in the documentation. | 611 # The default value is: YES. |
507 | 612 |
508 GENERATE_TESTLIST = YES | 613 GENERATE_TESTLIST = YES |
509 | 614 |
510 # The GENERATE_BUGLIST tag can be used to enable (YES) or | 615 # The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug |
511 # disable (NO) the bug list. This list is created by putting \bug | 616 # list. This list is created by putting \bug commands in the documentation. |
512 # commands in the documentation. | 617 # The default value is: YES. |
513 | 618 |
514 GENERATE_BUGLIST = YES | 619 GENERATE_BUGLIST = YES |
515 | 620 |
516 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or | 621 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) |
517 # disable (NO) the deprecated list. This list is created by putting | 622 # the deprecated list. This list is created by putting \deprecated commands in |
518 # \deprecated commands in the documentation. | 623 # the documentation. |
624 # The default value is: YES. | |
519 | 625 |
520 GENERATE_DEPRECATEDLIST= YES | 626 GENERATE_DEPRECATEDLIST= YES |
521 | 627 |
522 # The ENABLED_SECTIONS tag can be used to enable conditional | 628 # The ENABLED_SECTIONS tag can be used to enable conditional documentation |
523 # documentation sections, marked by \if sectionname ... \endif. | 629 # sections, marked by \if <section_label> ... \endif and \cond <section_label> |
630 # ... \endcond blocks. | |
524 | 631 |
525 ENABLED_SECTIONS = | 632 ENABLED_SECTIONS = |
526 | 633 |
527 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines | 634 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the |
528 # the initial value of a variable or macro consists of for it to appear in | 635 # initial value of a variable or macro / define can have for it to appear in the |
529 # the documentation. If the initializer consists of more lines than specified | 636 # documentation. If the initializer consists of more lines than specified here |
530 # here it will be hidden. Use a value of 0 to hide initializers completely. | 637 # it will be hidden. Use a value of 0 to hide initializers completely. The |
531 # The appearance of the initializer of individual variables and macros in the | 638 # appearance of the value of individual variables and macros / defines can be |
532 # documentation can be controlled using \showinitializer or \hideinitializer | 639 # controlled using \showinitializer or \hideinitializer command in the |
533 # command in the documentation regardless of this setting. | 640 # documentation regardless of this setting. |
641 # Minimum value: 0, maximum value: 10000, default value: 30. | |
534 | 642 |
535 MAX_INITIALIZER_LINES = 30 | 643 MAX_INITIALIZER_LINES = 30 |
536 | 644 |
537 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated | 645 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at |
538 # at the bottom of the documentation of classes and structs. If set to YES the | 646 # the bottom of the documentation of classes and structs. If set to YES, the |
539 # list will mention the files that were used to generate the documentation. | 647 # list will mention the files that were used to generate the documentation. |
648 # The default value is: YES. | |
540 | 649 |
541 SHOW_USED_FILES = YES | 650 SHOW_USED_FILES = YES |
542 | 651 |
543 # If the sources in your project are distributed over multiple directories | 652 # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This |
544 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy | 653 # will remove the Files entry from the Quick Index and from the Folder Tree View |
545 # in the documentation. The default is NO. | 654 # (if specified). |
546 | 655 # The default value is: YES. |
547 SHOW_DIRECTORIES = NO | |
548 | |
549 # Set the SHOW_FILES tag to NO to disable the generation of the Files page. | |
550 # This will remove the Files entry from the Quick Index and from the | |
551 # Folder Tree View (if specified). The default is YES. | |
552 | 656 |
553 SHOW_FILES = YES | 657 SHOW_FILES = YES |
554 | 658 |
555 # Set the SHOW_NAMESPACES tag to NO to disable the generation of the | 659 # Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces |
556 # Namespaces page. | 660 # page. This will remove the Namespaces entry from the Quick Index and from the |
557 # This will remove the Namespaces entry from the Quick Index | 661 # Folder Tree View (if specified). |
558 # and from the Folder Tree View (if specified). The default is YES. | 662 # The default value is: YES. |
559 | 663 |
560 SHOW_NAMESPACES = YES | 664 SHOW_NAMESPACES = YES |
561 | 665 |
562 # The FILE_VERSION_FILTER tag can be used to specify a program or script that | 666 # The FILE_VERSION_FILTER tag can be used to specify a program or script that |
563 # doxygen should invoke to get the current version for each file (typically from | 667 # doxygen should invoke to get the current version for each file (typically from |
564 # the version control system). Doxygen will invoke the program by executing (via | 668 # the version control system). Doxygen will invoke the program by executing (via |
565 # popen()) the command <command> <input-file>, where <command> is the value of | 669 # popen()) the command command input-file, where command is the value of the |
566 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file | 670 # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided |
567 # provided by doxygen. Whatever the program writes to standard output | 671 # by doxygen. Whatever the program writes to standard output is used as the file |
568 # is used as the file version. See the manual for examples. | 672 # version. For an example see the documentation. |
569 | 673 |
570 FILE_VERSION_FILTER = | 674 FILE_VERSION_FILTER = |
571 | 675 |
572 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed | 676 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed |
573 # by doxygen. The layout file controls the global structure of the generated | 677 # by doxygen. The layout file controls the global structure of the generated |
574 # output files in an output format independent way. The create the layout file | 678 # output files in an output format independent way. To create the layout file |
575 # that represents doxygen's defaults, run doxygen with the -l option. | 679 # that represents doxygen's defaults, run doxygen with the -l option. You can |
576 # You can optionally specify a file name after the option, if omitted | 680 # optionally specify a file name after the option, if omitted DoxygenLayout.xml |
577 # DoxygenLayout.xml will be used as the name of the layout file. | 681 # will be used as the name of the layout file. |
682 # | |
683 # Note that if you run doxygen from a directory containing a file called | |
684 # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE | |
685 # tag is left empty. | |
578 | 686 |
579 LAYOUT_FILE = | 687 LAYOUT_FILE = |
580 | 688 |
581 # The CITE_BIB_FILES tag can be used to specify one or more bib files | 689 # The CITE_BIB_FILES tag can be used to specify one or more bib files containing |
582 # containing the references data. This must be a list of .bib files. The | 690 # the reference definitions. This must be a list of .bib files. The .bib |
583 # .bib extension is automatically appended if omitted. Using this command | 691 # extension is automatically appended if omitted. This requires the bibtex tool |
584 # requires the bibtex tool to be installed. See also | 692 # to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. |
585 # http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style | 693 # For LaTeX the style of the bibliography can be controlled using |
586 # of the bibliography can be controlled using LATEX_BIB_STYLE. To use this | 694 # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the |
587 # feature you need bibtex and perl available in the search path. | 695 # search path. See also \cite for info how to create references. |
588 | 696 |
589 CITE_BIB_FILES = | 697 CITE_BIB_FILES = |
590 | 698 |
591 #--------------------------------------------------------------------------- | 699 #--------------------------------------------------------------------------- |
592 # configuration options related to warning and progress messages | 700 # Configuration options related to warning and progress messages |
593 #--------------------------------------------------------------------------- | 701 #--------------------------------------------------------------------------- |
594 | 702 |
595 # The QUIET tag can be used to turn on/off the messages that are generated | 703 # The QUIET tag can be used to turn on/off the messages that are generated to |
596 # by doxygen. Possible values are YES and NO. If left blank NO is used. | 704 # standard output by doxygen. If QUIET is set to YES this implies that the |
705 # messages are off. | |
706 # The default value is: NO. | |
597 | 707 |
598 QUIET = NO | 708 QUIET = NO |
599 | 709 |
600 # The WARNINGS tag can be used to turn on/off the warning messages that are | 710 # The WARNINGS tag can be used to turn on/off the warning messages that are |
601 # generated by doxygen. Possible values are YES and NO. If left blank | 711 # generated to standard error (stderr) by doxygen. If WARNINGS is set to YES |
602 # NO is used. | 712 # this implies that the warnings are on. |
713 # | |
714 # Tip: Turn warnings on while writing the documentation. | |
715 # The default value is: YES. | |
603 | 716 |
604 WARNINGS = YES | 717 WARNINGS = YES |
605 | 718 |
606 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings | 719 # If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate |
607 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will | 720 # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag |
608 # automatically be disabled. | 721 # will automatically be disabled. |
722 # The default value is: YES. | |
609 | 723 |
610 WARN_IF_UNDOCUMENTED = YES | 724 WARN_IF_UNDOCUMENTED = YES |
611 | 725 |
612 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for | 726 # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for |
613 # potential errors in the documentation, such as not documenting some | 727 # potential errors in the documentation, such as not documenting some parameters |
614 # parameters in a documented function, or documenting parameters that | 728 # in a documented function, or documenting parameters that don't exist or using |
615 # don't exist or using markup commands wrongly. | 729 # markup commands wrongly. |
730 # The default value is: YES. | |
616 | 731 |
617 WARN_IF_DOC_ERROR = YES | 732 WARN_IF_DOC_ERROR = YES |
618 | 733 |
619 # The WARN_NO_PARAMDOC option can be enabled to get warnings for | 734 # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that |
620 # functions that are documented, but have no documentation for their parameters | 735 # are documented, but have no documentation for their parameters or return |
621 # or return value. If set to NO (the default) doxygen will only warn about | 736 # value. If set to NO, doxygen will only warn about wrong or incomplete |
622 # wrong or incomplete parameter documentation, but not about the absence of | 737 # parameter documentation, but not about the absence of documentation. |
623 # documentation. | 738 # The default value is: NO. |
624 | 739 |
625 WARN_NO_PARAMDOC = NO | 740 WARN_NO_PARAMDOC = NO |
626 | 741 |
627 # The WARN_FORMAT tag determines the format of the warning messages that | 742 # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when |
628 # doxygen can produce. The string should contain the $file, $line, and $text | 743 # a warning is encountered. |
629 # tags, which will be replaced by the file and line number from which the | 744 # The default value is: NO. |
630 # warning originated and the warning text. Optionally the format may contain | 745 |
631 # $version, which will be replaced by the version of the file (if it could | 746 WARN_AS_ERROR = NO |
632 # be obtained via FILE_VERSION_FILTER) | 747 |
748 # The WARN_FORMAT tag determines the format of the warning messages that doxygen | |
749 # can produce. The string should contain the $file, $line, and $text tags, which | |
750 # will be replaced by the file and line number from which the warning originated | |
751 # and the warning text. Optionally the format may contain $version, which will | |
752 # be replaced by the version of the file (if it could be obtained via | |
753 # FILE_VERSION_FILTER) | |
754 # The default value is: $file:$line: $text. | |
633 | 755 |
634 WARN_FORMAT = "$file:$line: $text" | 756 WARN_FORMAT = "$file:$line: $text" |
635 | 757 |
636 # The WARN_LOGFILE tag can be used to specify a file to which warning | 758 # The WARN_LOGFILE tag can be used to specify a file to which warning and error |
637 # and error messages should be written. If left blank the output is written | 759 # messages should be written. If left blank the output is written to standard |
638 # to stderr. | 760 # error (stderr). |
639 | 761 |
640 WARN_LOGFILE = | 762 WARN_LOGFILE = |
641 | 763 |
642 #--------------------------------------------------------------------------- | 764 #--------------------------------------------------------------------------- |
643 # configuration options related to the input files | 765 # Configuration options related to the input files |
644 #--------------------------------------------------------------------------- | 766 #--------------------------------------------------------------------------- |
645 | 767 |
646 # The INPUT tag can be used to specify the files and/or directories that contain | 768 # The INPUT tag is used to specify the files and/or directories that contain |
647 # documented source files. You may enter file names like "myfile.cpp" or | 769 # documented source files. You may enter file names like myfile.cpp or |
648 # directories like "/usr/src/myproject". Separate the files or directories | 770 # directories like /usr/src/myproject. Separate the files or directories with |
649 # with spaces. | 771 # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING |
650 | 772 # Note: If this tag is empty the current directory is searched. |
651 INPUT = include/ examples/ | 773 |
774 INPUT = include/ \ | |
775 examples/ | |
652 | 776 |
653 # This tag can be used to specify the character encoding of the source files | 777 # This tag can be used to specify the character encoding of the source files |
654 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is | 778 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses |
655 # also the default input encoding. Doxygen uses libiconv (or the iconv built | 779 # libiconv (or the iconv built into libc) for the transcoding. See the libiconv |
656 # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for | 780 # documentation (see: http://www.gnu.org/software/libiconv) for the list of |
657 # the list of possible encodings. | 781 # possible encodings. |
782 # The default value is: UTF-8. | |
658 | 783 |
659 INPUT_ENCODING = UTF-8 | 784 INPUT_ENCODING = UTF-8 |
660 | 785 |
661 # If the value of the INPUT tag contains directories, you can use the | 786 # If the value of the INPUT tag contains directories, you can use the |
662 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp | 787 # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and |
663 # and *.h) to filter out the source-files in the directories. If left | 788 # *.h) to filter out the source-files in the directories. |
664 # blank the following patterns are tested: | 789 # |
665 # *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh | 790 # Note that for custom extensions or not directly supported extensions you also |
666 # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py | 791 # need to set EXTENSION_MAPPING for the extension otherwise the files are not |
667 # *.f90 *.f *.for *.vhd *.vhdl | 792 # read by doxygen. |
793 # | |
794 # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, | |
795 # *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, | |
796 # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, | |
797 # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f, *.for, *.tcl, | |
798 # *.vhd, *.vhdl, *.ucf, *.qsf, *.as and *.js. | |
668 | 799 |
669 FILE_PATTERNS = | 800 FILE_PATTERNS = |
670 | 801 |
671 # The RECURSIVE tag can be used to turn specify whether or not subdirectories | 802 # The RECURSIVE tag can be used to specify whether or not subdirectories should |
672 # should be searched for input files as well. Possible values are YES and NO. | 803 # be searched for input files as well. |
673 # If left blank NO is used. | 804 # The default value is: NO. |
674 | 805 |
675 RECURSIVE = YES | 806 RECURSIVE = YES |
676 | 807 |
677 # The EXCLUDE tag can be used to specify files and/or directories that should be | 808 # The EXCLUDE tag can be used to specify files and/or directories that should be |
678 # excluded from the INPUT source files. This way you can easily exclude a | 809 # excluded from the INPUT source files. This way you can easily exclude a |
679 # subdirectory from a directory tree whose root is specified with the INPUT tag. | 810 # subdirectory from a directory tree whose root is specified with the INPUT tag. |
811 # | |
680 # Note that relative paths are relative to the directory from which doxygen is | 812 # Note that relative paths are relative to the directory from which doxygen is |
681 # run. | 813 # run. |
682 | 814 |
683 EXCLUDE = include/ne10/ include/oscpkt.hh include/libpd include/prussdrv.h examples/10-Instruments/d-box/main.cpp | 815 EXCLUDE = include/ne10/ include/oscpkt.hh include/libpd include/prussdrv.h examples/10-Instruments/d-box/main.cpp |
684 | 816 |
685 # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or | 817 # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or |
686 # directories that are symbolic links (a Unix file system feature) are excluded | 818 # directories that are symbolic links (a Unix file system feature) are excluded |
687 # from the input. | 819 # from the input. |
820 # The default value is: NO. | |
688 | 821 |
689 EXCLUDE_SYMLINKS = NO | 822 EXCLUDE_SYMLINKS = NO |
690 | 823 |
691 # If the value of the INPUT tag contains directories, you can use the | 824 # If the value of the INPUT tag contains directories, you can use the |
692 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude | 825 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude |
693 # certain files from those directories. Note that the wildcards are matched | 826 # certain files from those directories. |
694 # against the file with absolute path, so to exclude all test directories | 827 # |
695 # for example use the pattern */test/* | 828 # Note that the wildcards are matched against the file with absolute path, so to |
829 # exclude all test directories for example use the pattern */test/* | |
696 | 830 |
697 EXCLUDE_PATTERNS = | 831 EXCLUDE_PATTERNS = |
698 | 832 |
699 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names | 833 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names |
700 # (namespaces, classes, functions, etc.) that should be excluded from the | 834 # (namespaces, classes, functions, etc.) that should be excluded from the |
701 # output. The symbol name can be a fully qualified name, a word, or if the | 835 # output. The symbol name can be a fully qualified name, a word, or if the |
702 # wildcard * is used, a substring. Examples: ANamespace, AClass, | 836 # wildcard * is used, a substring. Examples: ANamespace, AClass, |
703 # AClass::ANamespace, ANamespace::*Test | 837 # AClass::ANamespace, ANamespace::*Test |
838 # | |
839 # Note that the wildcards are matched against the file with absolute path, so to | |
840 # exclude all test directories use the pattern */test/* | |
704 | 841 |
705 EXCLUDE_SYMBOLS = | 842 EXCLUDE_SYMBOLS = |
706 | 843 |
707 # The EXAMPLE_PATH tag can be used to specify one or more files or | 844 # The EXAMPLE_PATH tag can be used to specify one or more files or directories |
708 # directories that contain example code fragments that are included (see | 845 # that contain example code fragments that are included (see the \include |
709 # the \include command). | 846 # command). |
710 | 847 |
711 EXAMPLE_PATH = | 848 EXAMPLE_PATH = examples/01-Basics \ |
849 examples/02-Digital \ | |
850 examples/03-Analog \ | |
851 examples/04-Audio \ | |
852 examples/05-Communication \ | |
853 examples/06-Sensors \ | |
854 examples/07-DataLogging \ | |
855 examples/08-PureData \ | |
856 examples/09-Capelets \ | |
857 examples/10-Instruments \ | |
858 examples/11-Extras | |
712 | 859 |
713 # If the value of the EXAMPLE_PATH tag contains directories, you can use the | 860 # If the value of the EXAMPLE_PATH tag contains directories, you can use the |
714 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp | 861 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and |
715 # and *.h) to filter out the source-files in the directories. If left | 862 # *.h) to filter out the source-files in the directories. If left blank all |
716 # blank all files are included. | 863 # files are included. |
717 | 864 |
718 EXAMPLE_PATTERNS = | 865 EXAMPLE_PATTERNS = |
719 | 866 |
720 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be | 867 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be |
721 # searched for input files to be used with the \include or \dontinclude | 868 # searched for input files to be used with the \include or \dontinclude commands |
722 # commands irrespective of the value of the RECURSIVE tag. | 869 # irrespective of the value of the RECURSIVE tag. |
723 # Possible values are YES and NO. If left blank NO is used. | 870 # The default value is: NO. |
724 | 871 |
725 EXAMPLE_RECURSIVE = NO | 872 EXAMPLE_RECURSIVE = NO |
726 | 873 |
727 # The IMAGE_PATH tag can be used to specify one or more files or | 874 # The IMAGE_PATH tag can be used to specify one or more files or directories |
728 # directories that contain image that are included in the documentation (see | 875 # that contain images that are to be included in the documentation (see the |
729 # the \image command). | 876 # \image command). |
730 | 877 |
731 IMAGE_PATH = | 878 IMAGE_PATH = |
732 | 879 |
733 # The INPUT_FILTER tag can be used to specify a program that doxygen should | 880 # The INPUT_FILTER tag can be used to specify a program that doxygen should |
734 # invoke to filter for each input file. Doxygen will invoke the filter program | 881 # invoke to filter for each input file. Doxygen will invoke the filter program |
735 # by executing (via popen()) the command <filter> <input-file>, where <filter> | 882 # by executing (via popen()) the command: |
736 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an | 883 # |
737 # input file. Doxygen will then use the output that the filter program writes | 884 # <filter> <input-file> |
738 # to standard output. | 885 # |
739 # If FILTER_PATTERNS is specified, this tag will be | 886 # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the |
740 # ignored. | 887 # name of an input file. Doxygen will then use the output that the filter |
888 # program writes to standard output. If FILTER_PATTERNS is specified, this tag | |
889 # will be ignored. | |
890 # | |
891 # Note that the filter must not add or remove lines; it is applied before the | |
892 # code is scanned, but not when the output code is generated. If lines are added | |
893 # or removed, the anchors will not be placed correctly. | |
894 # | |
895 # Note that for custom extensions or not directly supported extensions you also | |
896 # need to set EXTENSION_MAPPING for the extension otherwise the files are not | |
897 # properly processed by doxygen. | |
741 | 898 |
742 INPUT_FILTER = | 899 INPUT_FILTER = |
743 | 900 |
744 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern | 901 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern |
745 # basis. | 902 # basis. Doxygen will compare the file name with each pattern and apply the |
746 # Doxygen will compare the file name with each pattern and apply the | 903 # filter if there is a match. The filters are a list of the form: pattern=filter |
747 # filter if there is a match. | 904 # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how |
748 # The filters are a list of the form: | 905 # filters are used. If the FILTER_PATTERNS tag is empty or if none of the |
749 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further | 906 # patterns match the file name, INPUT_FILTER is applied. |
750 # info on how filters are used. If FILTER_PATTERNS is empty or if | 907 # |
751 # non of the patterns match the file name, INPUT_FILTER is applied. | 908 # Note that for custom extensions or not directly supported extensions you also |
909 # need to set EXTENSION_MAPPING for the extension otherwise the files are not | |
910 # properly processed by doxygen. | |
752 | 911 |
753 FILTER_PATTERNS = | 912 FILTER_PATTERNS = |
754 | 913 |
755 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using | 914 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using |
756 # INPUT_FILTER) will be used to filter the input files when producing source | 915 # INPUT_FILTER) will also be used to filter the input files that are used for |
757 # files to browse (i.e. when SOURCE_BROWSER is set to YES). | 916 # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). |
917 # The default value is: NO. | |
758 | 918 |
759 FILTER_SOURCE_FILES = NO | 919 FILTER_SOURCE_FILES = NO |
760 | 920 |
761 # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file | 921 # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file |
762 # pattern. A pattern will override the setting for FILTER_PATTERN (if any) | 922 # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and |
763 # and it is also possible to disable source filtering for a specific pattern | 923 # it is also possible to disable source filtering for a specific pattern using |
764 # using *.ext= (so without naming a filter). This option only has effect when | 924 # *.ext= (so without naming a filter). |
765 # FILTER_SOURCE_FILES is enabled. | 925 # This tag requires that the tag FILTER_SOURCE_FILES is set to YES. |
766 | 926 |
767 FILTER_SOURCE_PATTERNS = | 927 FILTER_SOURCE_PATTERNS = |
768 | 928 |
769 #--------------------------------------------------------------------------- | 929 # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that |
770 # configuration options related to source browsing | 930 # is part of the input, its contents will be placed on the main page |
771 #--------------------------------------------------------------------------- | 931 # (index.html). This can be useful if you have a project on for instance GitHub |
772 | 932 # and want to reuse the introduction page also for the doxygen output. |
773 # If the SOURCE_BROWSER tag is set to YES then a list of source files will | 933 |
774 # be generated. Documented entities will be cross-referenced with these sources. | 934 USE_MDFILE_AS_MAINPAGE = |
775 # Note: To get rid of all source code in the generated output, make sure also | 935 |
776 # VERBATIM_HEADERS is set to NO. | 936 #--------------------------------------------------------------------------- |
937 # Configuration options related to source browsing | |
938 #--------------------------------------------------------------------------- | |
939 | |
940 # If the SOURCE_BROWSER tag is set to YES then a list of source files will be | |
941 # generated. Documented entities will be cross-referenced with these sources. | |
942 # | |
943 # Note: To get rid of all source code in the generated output, make sure that | |
944 # also VERBATIM_HEADERS is set to NO. | |
945 # The default value is: NO. | |
777 | 946 |
778 SOURCE_BROWSER = NO | 947 SOURCE_BROWSER = NO |
779 | 948 |
780 # Setting the INLINE_SOURCES tag to YES will include the body | 949 # Setting the INLINE_SOURCES tag to YES will include the body of functions, |
781 # of functions and classes directly in the documentation. | 950 # classes and enums directly into the documentation. |
951 # The default value is: NO. | |
782 | 952 |
783 INLINE_SOURCES = NO | 953 INLINE_SOURCES = NO |
784 | 954 |
785 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct | 955 # Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any |
786 # doxygen to hide any special comment blocks from generated source code | 956 # special comment blocks from generated source code fragments. Normal C, C++ and |
787 # fragments. Normal C and C++ comments will always remain visible. | 957 # Fortran comments will always remain visible. |
958 # The default value is: YES. | |
788 | 959 |
789 STRIP_CODE_COMMENTS = YES | 960 STRIP_CODE_COMMENTS = YES |
790 | 961 |
791 # If the REFERENCED_BY_RELATION tag is set to YES | 962 # If the REFERENCED_BY_RELATION tag is set to YES then for each documented |
792 # then for each documented function all documented | 963 # function all documented functions referencing it will be listed. |
793 # functions referencing it will be listed. | 964 # The default value is: NO. |
794 | 965 |
795 REFERENCED_BY_RELATION = NO | 966 REFERENCED_BY_RELATION = NO |
796 | 967 |
797 # If the REFERENCES_RELATION tag is set to YES | 968 # If the REFERENCES_RELATION tag is set to YES then for each documented function |
798 # then for each documented function all documented entities | 969 # all documented entities called/used by that function will be listed. |
799 # called/used by that function will be listed. | 970 # The default value is: NO. |
800 | 971 |
801 REFERENCES_RELATION = NO | 972 REFERENCES_RELATION = NO |
802 | 973 |
803 # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) | 974 # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set |
804 # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from | 975 # to YES then the hyperlinks from functions in REFERENCES_RELATION and |
805 # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will | 976 # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will |
806 # link to the source code. | 977 # link to the documentation. |
807 # Otherwise they will link to the documentation. | 978 # The default value is: YES. |
808 | 979 |
809 REFERENCES_LINK_SOURCE = YES | 980 REFERENCES_LINK_SOURCE = YES |
810 | 981 |
811 # If the USE_HTAGS tag is set to YES then the references to source code | 982 # If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the |
812 # will point to the HTML generated by the htags(1) tool instead of doxygen | 983 # source code will show a tooltip with additional information such as prototype, |
813 # built-in source browser. The htags tool is part of GNU's global source | 984 # brief description and links to the definition and documentation. Since this |
814 # tagging system (see http://www.gnu.org/software/global/global.html). You | 985 # will make the HTML file larger and loading of large files a bit slower, you |
815 # will need version 4.8.6 or higher. | 986 # can opt to disable this feature. |
987 # The default value is: YES. | |
988 # This tag requires that the tag SOURCE_BROWSER is set to YES. | |
989 | |
990 SOURCE_TOOLTIPS = YES | |
991 | |
992 # If the USE_HTAGS tag is set to YES then the references to source code will | |
993 # point to the HTML generated by the htags(1) tool instead of doxygen built-in | |
994 # source browser. The htags tool is part of GNU's global source tagging system | |
995 # (see http://www.gnu.org/software/global/global.html). You will need version | |
996 # 4.8.6 or higher. | |
997 # | |
998 # To use it do the following: | |
999 # - Install the latest version of global | |
1000 # - Enable SOURCE_BROWSER and USE_HTAGS in the config file | |
1001 # - Make sure the INPUT points to the root of the source tree | |
1002 # - Run doxygen as normal | |
1003 # | |
1004 # Doxygen will invoke htags (and that will in turn invoke gtags), so these | |
1005 # tools must be available from the command line (i.e. in the search path). | |
1006 # | |
1007 # The result: instead of the source browser generated by doxygen, the links to | |
1008 # source code will now point to the output of htags. | |
1009 # The default value is: NO. | |
1010 # This tag requires that the tag SOURCE_BROWSER is set to YES. | |
816 | 1011 |
817 USE_HTAGS = NO | 1012 USE_HTAGS = NO |
818 | 1013 |
819 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen | 1014 # If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a |
820 # will generate a verbatim copy of the header file for each class for | 1015 # verbatim copy of the header file for each class for which an include is |
821 # which an include is specified. Set to NO to disable this. | 1016 # specified. Set to NO to disable this. |
1017 # See also: Section \class. | |
1018 # The default value is: YES. | |
822 | 1019 |
823 VERBATIM_HEADERS = YES | 1020 VERBATIM_HEADERS = YES |
824 | 1021 |
825 #--------------------------------------------------------------------------- | 1022 #--------------------------------------------------------------------------- |
826 # configuration options related to the alphabetical class index | 1023 # Configuration options related to the alphabetical class index |
827 #--------------------------------------------------------------------------- | 1024 #--------------------------------------------------------------------------- |
828 | 1025 |
829 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index | 1026 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all |
830 # of all compounds will be generated. Enable this if the project | 1027 # compounds will be generated. Enable this if the project contains a lot of |
831 # contains a lot of classes, structs, unions or interfaces. | 1028 # classes, structs, unions or interfaces. |
1029 # The default value is: YES. | |
832 | 1030 |
833 ALPHABETICAL_INDEX = YES | 1031 ALPHABETICAL_INDEX = YES |
834 | 1032 |
835 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then | 1033 # The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in |
836 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns | 1034 # which the alphabetical index list will be split. |
837 # in which this list will be split (can be a number in the range [1..20]) | 1035 # Minimum value: 1, maximum value: 20, default value: 5. |
1036 # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. | |
838 | 1037 |
839 COLS_IN_ALPHA_INDEX = 5 | 1038 COLS_IN_ALPHA_INDEX = 5 |
840 | 1039 |
841 # In case all classes in a project start with a common prefix, all | 1040 # In case all classes in a project start with a common prefix, all classes will |
842 # classes will be put under the same header in the alphabetical index. | 1041 # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag |
843 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that | 1042 # can be used to specify a prefix (or a list of prefixes) that should be ignored |
844 # should be ignored while generating the index headers. | 1043 # while generating the index headers. |
1044 # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. | |
845 | 1045 |
846 IGNORE_PREFIX = | 1046 IGNORE_PREFIX = |
847 | 1047 |
848 #--------------------------------------------------------------------------- | 1048 #--------------------------------------------------------------------------- |
849 # configuration options related to the HTML output | 1049 # Configuration options related to the HTML output |
850 #--------------------------------------------------------------------------- | 1050 #--------------------------------------------------------------------------- |
851 | 1051 |
852 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will | 1052 # If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output |
853 # generate HTML output. | 1053 # The default value is: YES. |
854 | 1054 |
855 GENERATE_HTML = YES | 1055 GENERATE_HTML = YES |
856 | 1056 |
857 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. | 1057 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a |
858 # If a relative path is entered the value of OUTPUT_DIRECTORY will be | 1058 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of |
859 # put in front of it. If left blank `html' will be used as the default path. | 1059 # it. |
1060 # The default directory is: html. | |
1061 # This tag requires that the tag GENERATE_HTML is set to YES. | |
860 | 1062 |
861 HTML_OUTPUT = html | 1063 HTML_OUTPUT = html |
862 | 1064 |
863 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for | 1065 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each |
864 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank | 1066 # generated HTML page (for example: .htm, .php, .asp). |
865 # doxygen will generate files with .html extension. | 1067 # The default value is: .html. |
1068 # This tag requires that the tag GENERATE_HTML is set to YES. | |
866 | 1069 |
867 HTML_FILE_EXTENSION = .html | 1070 HTML_FILE_EXTENSION = .html |
868 | 1071 |
869 # The HTML_HEADER tag can be used to specify a personal HTML header for | 1072 # The HTML_HEADER tag can be used to specify a user-defined HTML header file for |
870 # each generated HTML page. If it is left blank doxygen will generate a | 1073 # each generated HTML page. If the tag is left blank doxygen will generate a |
871 # standard header. Note that when using a custom header you are responsible | 1074 # standard header. |
872 # for the proper inclusion of any scripts and style sheets that doxygen | 1075 # |
873 # needs, which is dependent on the configuration options used. | 1076 # To get valid HTML the header file that includes any scripts and style sheets |
874 # It is advised to generate a default header using "doxygen -w html | 1077 # that doxygen needs, which is dependent on the configuration options used (e.g. |
875 # header.html footer.html stylesheet.css YourConfigFile" and then modify | 1078 # the setting GENERATE_TREEVIEW). It is highly recommended to start with a |
876 # that header. Note that the header is subject to change so you typically | 1079 # default header using |
877 # have to redo this when upgrading to a newer version of doxygen or when | 1080 # doxygen -w html new_header.html new_footer.html new_stylesheet.css |
878 # changing the value of configuration settings such as GENERATE_TREEVIEW! | 1081 # YourConfigFile |
1082 # and then modify the file new_header.html. See also section "Doxygen usage" | |
1083 # for information on how to generate the default header that doxygen normally | |
1084 # uses. | |
1085 # Note: The header is subject to change so you typically have to regenerate the | |
1086 # default header when upgrading to a newer version of doxygen. For a description | |
1087 # of the possible markers and block names see the documentation. | |
1088 # This tag requires that the tag GENERATE_HTML is set to YES. | |
879 | 1089 |
880 HTML_HEADER = | 1090 HTML_HEADER = |
881 | 1091 |
882 # The HTML_FOOTER tag can be used to specify a personal HTML footer for | 1092 # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each |
883 # each generated HTML page. If it is left blank doxygen will generate a | 1093 # generated HTML page. If the tag is left blank doxygen will generate a standard |
884 # standard footer. | 1094 # footer. See HTML_HEADER for more information on how to generate a default |
1095 # footer and what special commands can be used inside the footer. See also | |
1096 # section "Doxygen usage" for information on how to generate the default footer | |
1097 # that doxygen normally uses. | |
1098 # This tag requires that the tag GENERATE_HTML is set to YES. | |
885 | 1099 |
886 HTML_FOOTER = | 1100 HTML_FOOTER = |
887 | 1101 |
888 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading | 1102 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style |
889 # style sheet that is used by each HTML page. It can be used to | 1103 # sheet that is used by each HTML page. It can be used to fine-tune the look of |
890 # fine-tune the look of the HTML output. If the tag is left blank doxygen | 1104 # the HTML output. If left blank doxygen will generate a default style sheet. |
891 # will generate a default style sheet. Note that doxygen will try to copy | 1105 # See also section "Doxygen usage" for information on how to generate the style |
892 # the style sheet file to the HTML output directory, so don't put your own | 1106 # sheet that doxygen normally uses. |
893 # style sheet in the HTML output directory as well, or it will be erased! | 1107 # Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as |
1108 # it is more robust and this tag (HTML_STYLESHEET) will in the future become | |
1109 # obsolete. | |
1110 # This tag requires that the tag GENERATE_HTML is set to YES. | |
894 | 1111 |
895 HTML_STYLESHEET = | 1112 HTML_STYLESHEET = |
1113 | |
1114 # The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined | |
1115 # cascading style sheets that are included after the standard style sheets | |
1116 # created by doxygen. Using this option one can overrule certain style aspects. | |
1117 # This is preferred over using HTML_STYLESHEET since it does not replace the | |
1118 # standard style sheet and is therefore more robust against future updates. | |
1119 # Doxygen will copy the style sheet files to the output directory. | |
1120 # Note: The order of the extra style sheet files is of importance (e.g. the last | |
1121 # style sheet in the list overrules the setting of the previous ones in the | |
1122 # list). For an example see the documentation. | |
1123 # This tag requires that the tag GENERATE_HTML is set to YES. | |
1124 | |
1125 HTML_EXTRA_STYLESHEET = | |
896 | 1126 |
897 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or | 1127 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or |
898 # other source files which should be copied to the HTML output directory. Note | 1128 # other source files which should be copied to the HTML output directory. Note |
899 # that these files will be copied to the base HTML output directory. Use the | 1129 # that these files will be copied to the base HTML output directory. Use the |
900 # $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these | 1130 # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these |
901 # files. In the HTML_STYLESHEET file, use the file name only. Also note that | 1131 # files. In the HTML_STYLESHEET file, use the file name only. Also note that the |
902 # the files will be copied as-is; there are no commands or markers available. | 1132 # files will be copied as-is; there are no commands or markers available. |
1133 # This tag requires that the tag GENERATE_HTML is set to YES. | |
903 | 1134 |
904 HTML_EXTRA_FILES = | 1135 HTML_EXTRA_FILES = |
905 | 1136 |
906 # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. | 1137 # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen |
907 # Doxygen will adjust the colors in the style sheet and background images | 1138 # will adjust the colors in the style sheet and background images according to |
908 # according to this color. Hue is specified as an angle on a colorwheel, | 1139 # this color. Hue is specified as an angle on a colorwheel, see |
909 # see http://en.wikipedia.org/wiki/Hue for more information. | 1140 # http://en.wikipedia.org/wiki/Hue for more information. For instance the value |
910 # For instance the value 0 represents red, 60 is yellow, 120 is green, | 1141 # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 |
911 # 180 is cyan, 240 is blue, 300 purple, and 360 is red again. | 1142 # purple, and 360 is red again. |
912 # The allowed range is 0 to 359. | 1143 # Minimum value: 0, maximum value: 359, default value: 220. |
1144 # This tag requires that the tag GENERATE_HTML is set to YES. | |
913 | 1145 |
914 HTML_COLORSTYLE_HUE = 220 | 1146 HTML_COLORSTYLE_HUE = 220 |
915 | 1147 |
916 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of | 1148 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors |
917 # the colors in the HTML output. For a value of 0 the output will use | 1149 # in the HTML output. For a value of 0 the output will use grayscales only. A |
918 # grayscales only. A value of 255 will produce the most vivid colors. | 1150 # value of 255 will produce the most vivid colors. |
1151 # Minimum value: 0, maximum value: 255, default value: 100. | |
1152 # This tag requires that the tag GENERATE_HTML is set to YES. | |
919 | 1153 |
920 HTML_COLORSTYLE_SAT = 100 | 1154 HTML_COLORSTYLE_SAT = 100 |
921 | 1155 |
922 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to | 1156 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the |
923 # the luminance component of the colors in the HTML output. Values below | 1157 # luminance component of the colors in the HTML output. Values below 100 |
924 # 100 gradually make the output lighter, whereas values above 100 make | 1158 # gradually make the output lighter, whereas values above 100 make the output |
925 # the output darker. The value divided by 100 is the actual gamma applied, | 1159 # darker. The value divided by 100 is the actual gamma applied, so 80 represents |
926 # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, | 1160 # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not |
927 # and 100 does not change the gamma. | 1161 # change the gamma. |
1162 # Minimum value: 40, maximum value: 240, default value: 80. | |
1163 # This tag requires that the tag GENERATE_HTML is set to YES. | |
928 | 1164 |
929 HTML_COLORSTYLE_GAMMA = 80 | 1165 HTML_COLORSTYLE_GAMMA = 80 |
930 | 1166 |
931 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML | 1167 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML |
932 # page will contain the date and time when the page was generated. Setting | 1168 # page will contain the date and time when the page was generated. Setting this |
933 # this to NO can help when comparing the output of multiple runs. | 1169 # to YES can help to show when doxygen was last run and thus if the |
1170 # documentation is up to date. | |
1171 # The default value is: NO. | |
1172 # This tag requires that the tag GENERATE_HTML is set to YES. | |
934 | 1173 |
935 HTML_TIMESTAMP = YES | 1174 HTML_TIMESTAMP = YES |
936 | |
937 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, | |
938 # files or namespaces will be aligned in HTML using tables. If set to | |
939 # NO a bullet list will be used. | |
940 | |
941 HTML_ALIGN_MEMBERS = YES | |
942 | 1175 |
943 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML | 1176 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML |
944 # documentation will contain sections that can be hidden and shown after the | 1177 # documentation will contain sections that can be hidden and shown after the |
945 # page has loaded. For this to work a browser that supports | 1178 # page has loaded. |
946 # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox | 1179 # The default value is: NO. |
947 # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). | 1180 # This tag requires that the tag GENERATE_HTML is set to YES. |
948 | 1181 |
949 HTML_DYNAMIC_SECTIONS = NO | 1182 HTML_DYNAMIC_SECTIONS = NO |
950 | 1183 |
951 # If the GENERATE_DOCSET tag is set to YES, additional index files | 1184 # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries |
952 # will be generated that can be used as input for Apple's Xcode 3 | 1185 # shown in the various tree structured indices initially; the user can expand |
953 # integrated development environment, introduced with OSX 10.5 (Leopard). | 1186 # and collapse entries dynamically later on. Doxygen will expand the tree to |
954 # To create a documentation set, doxygen will generate a Makefile in the | 1187 # such a level that at most the specified number of entries are visible (unless |
955 # HTML output directory. Running make will produce the docset in that | 1188 # a fully collapsed tree already exceeds this amount). So setting the number of |
956 # directory and running "make install" will install the docset in | 1189 # entries 1 will produce a full collapsed tree by default. 0 is a special value |
957 # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find | 1190 # representing an infinite number of entries and will result in a full expanded |
958 # it at startup. | 1191 # tree by default. |
959 # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html | 1192 # Minimum value: 0, maximum value: 9999, default value: 100. |
1193 # This tag requires that the tag GENERATE_HTML is set to YES. | |
1194 | |
1195 HTML_INDEX_NUM_ENTRIES = 100 | |
1196 | |
1197 # If the GENERATE_DOCSET tag is set to YES, additional index files will be | |
1198 # generated that can be used as input for Apple's Xcode 3 integrated development | |
1199 # environment (see: http://developer.apple.com/tools/xcode/), introduced with | |
1200 # OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a | |
1201 # Makefile in the HTML output directory. Running make will produce the docset in | |
1202 # that directory and running make install will install the docset in | |
1203 # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at | |
1204 # startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html | |
960 # for more information. | 1205 # for more information. |
1206 # The default value is: NO. | |
1207 # This tag requires that the tag GENERATE_HTML is set to YES. | |
961 | 1208 |
962 GENERATE_DOCSET = NO | 1209 GENERATE_DOCSET = NO |
963 | 1210 |
964 # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the | 1211 # This tag determines the name of the docset feed. A documentation feed provides |
965 # feed. A documentation feed provides an umbrella under which multiple | 1212 # an umbrella under which multiple documentation sets from a single provider |
966 # documentation sets from a single provider (such as a company or product suite) | 1213 # (such as a company or product suite) can be grouped. |
967 # can be grouped. | 1214 # The default value is: Doxygen generated docs. |
1215 # This tag requires that the tag GENERATE_DOCSET is set to YES. | |
968 | 1216 |
969 DOCSET_FEEDNAME = "Doxygen generated docs" | 1217 DOCSET_FEEDNAME = "Doxygen generated docs" |
970 | 1218 |
971 # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that | 1219 # This tag specifies a string that should uniquely identify the documentation |
972 # should uniquely identify the documentation set bundle. This should be a | 1220 # set bundle. This should be a reverse domain-name style string, e.g. |
973 # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen | 1221 # com.mycompany.MyDocSet. Doxygen will append .docset to the name. |
974 # will append .docset to the name. | 1222 # The default value is: org.doxygen.Project. |
1223 # This tag requires that the tag GENERATE_DOCSET is set to YES. | |
975 | 1224 |
976 DOCSET_BUNDLE_ID = org.doxygen.Project | 1225 DOCSET_BUNDLE_ID = org.doxygen.Project |
977 | 1226 |
978 # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify | 1227 # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify |
979 # the documentation publisher. This should be a reverse domain-name style | 1228 # the documentation publisher. This should be a reverse domain-name style |
980 # string, e.g. com.mycompany.MyDocSet.documentation. | 1229 # string, e.g. com.mycompany.MyDocSet.documentation. |
1230 # The default value is: org.doxygen.Publisher. | |
1231 # This tag requires that the tag GENERATE_DOCSET is set to YES. | |
981 | 1232 |
982 DOCSET_PUBLISHER_ID = org.doxygen.Publisher | 1233 DOCSET_PUBLISHER_ID = org.doxygen.Publisher |
983 | 1234 |
984 # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. | 1235 # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. |
1236 # The default value is: Publisher. | |
1237 # This tag requires that the tag GENERATE_DOCSET is set to YES. | |
985 | 1238 |
986 DOCSET_PUBLISHER_NAME = Publisher | 1239 DOCSET_PUBLISHER_NAME = Publisher |
987 | 1240 |
988 # If the GENERATE_HTMLHELP tag is set to YES, additional index files | 1241 # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three |
989 # will be generated that can be used as input for tools like the | 1242 # additional HTML index files: index.hhp, index.hhc, and index.hhk. The |
990 # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) | 1243 # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop |
991 # of the generated HTML documentation. | 1244 # (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on |
1245 # Windows. | |
1246 # | |
1247 # The HTML Help Workshop contains a compiler that can convert all HTML output | |
1248 # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML | |
1249 # files are now used as the Windows 98 help format, and will replace the old | |
1250 # Windows help format (.hlp) on all Windows platforms in the future. Compressed | |
1251 # HTML files also contain an index, a table of contents, and you can search for | |
1252 # words in the documentation. The HTML workshop also contains a viewer for | |
1253 # compressed HTML files. | |
1254 # The default value is: NO. | |
1255 # This tag requires that the tag GENERATE_HTML is set to YES. | |
992 | 1256 |
993 GENERATE_HTMLHELP = NO | 1257 GENERATE_HTMLHELP = NO |
994 | 1258 |
995 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can | 1259 # The CHM_FILE tag can be used to specify the file name of the resulting .chm |
996 # be used to specify the file name of the resulting .chm file. You | 1260 # file. You can add a path in front of the file if the result should not be |
997 # can add a path in front of the file if the result should not be | |
998 # written to the html output directory. | 1261 # written to the html output directory. |
1262 # This tag requires that the tag GENERATE_HTMLHELP is set to YES. | |
999 | 1263 |
1000 CHM_FILE = | 1264 CHM_FILE = |
1001 | 1265 |
1002 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can | 1266 # The HHC_LOCATION tag can be used to specify the location (absolute path |
1003 # be used to specify the location (absolute path including file name) of | 1267 # including file name) of the HTML help compiler (hhc.exe). If non-empty, |
1004 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run | 1268 # doxygen will try to run the HTML help compiler on the generated index.hhp. |
1005 # the HTML help compiler on the generated index.hhp. | 1269 # The file has to be specified with full path. |
1270 # This tag requires that the tag GENERATE_HTMLHELP is set to YES. | |
1006 | 1271 |
1007 HHC_LOCATION = | 1272 HHC_LOCATION = |
1008 | 1273 |
1009 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag | 1274 # The GENERATE_CHI flag controls if a separate .chi index file is generated |
1010 # controls if a separate .chi index file is generated (YES) or that | 1275 # (YES) or that it should be included in the master .chm file (NO). |
1011 # it should be included in the master .chm file (NO). | 1276 # The default value is: NO. |
1277 # This tag requires that the tag GENERATE_HTMLHELP is set to YES. | |
1012 | 1278 |
1013 GENERATE_CHI = NO | 1279 GENERATE_CHI = NO |
1014 | 1280 |
1015 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING | 1281 # The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) |
1016 # is used to encode HtmlHelp index (hhk), content (hhc) and project file | 1282 # and project file content. |
1017 # content. | 1283 # This tag requires that the tag GENERATE_HTMLHELP is set to YES. |
1018 | 1284 |
1019 CHM_INDEX_ENCODING = | 1285 CHM_INDEX_ENCODING = |
1020 | 1286 |
1021 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag | 1287 # The BINARY_TOC flag controls whether a binary table of contents is generated |
1022 # controls whether a binary table of contents is generated (YES) or a | 1288 # (YES) or a normal table of contents (NO) in the .chm file. Furthermore it |
1023 # normal table of contents (NO) in the .chm file. | 1289 # enables the Previous and Next buttons. |
1290 # The default value is: NO. | |
1291 # This tag requires that the tag GENERATE_HTMLHELP is set to YES. | |
1024 | 1292 |
1025 BINARY_TOC = NO | 1293 BINARY_TOC = NO |
1026 | 1294 |
1027 # The TOC_EXPAND flag can be set to YES to add extra items for group members | 1295 # The TOC_EXPAND flag can be set to YES to add extra items for group members to |
1028 # to the contents of the HTML help documentation and to the tree view. | 1296 # the table of contents of the HTML help documentation and to the tree view. |
1297 # The default value is: NO. | |
1298 # This tag requires that the tag GENERATE_HTMLHELP is set to YES. | |
1029 | 1299 |
1030 TOC_EXPAND = NO | 1300 TOC_EXPAND = NO |
1031 | 1301 |
1032 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and | 1302 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and |
1033 # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated | 1303 # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that |
1034 # that can be used as input for Qt's qhelpgenerator to generate a | 1304 # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help |
1035 # Qt Compressed Help (.qch) of the generated HTML documentation. | 1305 # (.qch) of the generated HTML documentation. |
1306 # The default value is: NO. | |
1307 # This tag requires that the tag GENERATE_HTML is set to YES. | |
1036 | 1308 |
1037 GENERATE_QHP = NO | 1309 GENERATE_QHP = NO |
1038 | 1310 |
1039 # If the QHG_LOCATION tag is specified, the QCH_FILE tag can | 1311 # If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify |
1040 # be used to specify the file name of the resulting .qch file. | 1312 # the file name of the resulting .qch file. The path specified is relative to |
1041 # The path specified is relative to the HTML output folder. | 1313 # the HTML output folder. |
1314 # This tag requires that the tag GENERATE_QHP is set to YES. | |
1042 | 1315 |
1043 QCH_FILE = | 1316 QCH_FILE = |
1044 | 1317 |
1045 # The QHP_NAMESPACE tag specifies the namespace to use when generating | 1318 # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help |
1046 # Qt Help Project output. For more information please see | 1319 # Project output. For more information please see Qt Help Project / Namespace |
1047 # http://doc.trolltech.com/qthelpproject.html#namespace | 1320 # (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). |
1321 # The default value is: org.doxygen.Project. | |
1322 # This tag requires that the tag GENERATE_QHP is set to YES. | |
1048 | 1323 |
1049 QHP_NAMESPACE = org.doxygen.Project | 1324 QHP_NAMESPACE = org.doxygen.Project |
1050 | 1325 |
1051 # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating | 1326 # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt |
1052 # Qt Help Project output. For more information please see | 1327 # Help Project output. For more information please see Qt Help Project / Virtual |
1053 # http://doc.trolltech.com/qthelpproject.html#virtual-folders | 1328 # Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- |
1329 # folders). | |
1330 # The default value is: doc. | |
1331 # This tag requires that the tag GENERATE_QHP is set to YES. | |
1054 | 1332 |
1055 QHP_VIRTUAL_FOLDER = doc | 1333 QHP_VIRTUAL_FOLDER = doc |
1056 | 1334 |
1057 # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to | 1335 # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom |
1058 # add. For more information please see | 1336 # filter to add. For more information please see Qt Help Project / Custom |
1059 # http://doc.trolltech.com/qthelpproject.html#custom-filters | 1337 # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- |
1338 # filters). | |
1339 # This tag requires that the tag GENERATE_QHP is set to YES. | |
1060 | 1340 |
1061 QHP_CUST_FILTER_NAME = | 1341 QHP_CUST_FILTER_NAME = |
1062 | 1342 |
1063 # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the | 1343 # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the |
1064 # custom filter to add. For more information please see | 1344 # custom filter to add. For more information please see Qt Help Project / Custom |
1065 # <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters"> | 1345 # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- |
1066 # Qt Help Project / Custom Filters</a>. | 1346 # filters). |
1347 # This tag requires that the tag GENERATE_QHP is set to YES. | |
1067 | 1348 |
1068 QHP_CUST_FILTER_ATTRS = | 1349 QHP_CUST_FILTER_ATTRS = |
1069 | 1350 |
1070 # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this | 1351 # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this |
1071 # project's | 1352 # project's filter section matches. Qt Help Project / Filter Attributes (see: |
1072 # filter section matches. | 1353 # http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). |
1073 # <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes"> | 1354 # This tag requires that the tag GENERATE_QHP is set to YES. |
1074 # Qt Help Project / Filter Attributes</a>. | |
1075 | 1355 |
1076 QHP_SECT_FILTER_ATTRS = | 1356 QHP_SECT_FILTER_ATTRS = |
1077 | 1357 |
1078 # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can | 1358 # The QHG_LOCATION tag can be used to specify the location of Qt's |
1079 # be used to specify the location of Qt's qhelpgenerator. | 1359 # qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the |
1080 # If non-empty doxygen will try to run qhelpgenerator on the generated | 1360 # generated .qhp file. |
1081 # .qhp file. | 1361 # This tag requires that the tag GENERATE_QHP is set to YES. |
1082 | 1362 |
1083 QHG_LOCATION = | 1363 QHG_LOCATION = |
1084 | 1364 |
1085 # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files | 1365 # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be |
1086 # will be generated, which together with the HTML files, form an Eclipse help | 1366 # generated, together with the HTML files, they form an Eclipse help plugin. To |
1087 # plugin. To install this plugin and make it available under the help contents | 1367 # install this plugin and make it available under the help contents menu in |
1088 # menu in Eclipse, the contents of the directory containing the HTML and XML | 1368 # Eclipse, the contents of the directory containing the HTML and XML files needs |
1089 # files needs to be copied into the plugins directory of eclipse. The name of | 1369 # to be copied into the plugins directory of eclipse. The name of the directory |
1090 # the directory within the plugins directory should be the same as | 1370 # within the plugins directory should be the same as the ECLIPSE_DOC_ID value. |
1091 # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before | 1371 # After copying Eclipse needs to be restarted before the help appears. |
1092 # the help appears. | 1372 # The default value is: NO. |
1373 # This tag requires that the tag GENERATE_HTML is set to YES. | |
1093 | 1374 |
1094 GENERATE_ECLIPSEHELP = NO | 1375 GENERATE_ECLIPSEHELP = NO |
1095 | 1376 |
1096 # A unique identifier for the eclipse help plugin. When installing the plugin | 1377 # A unique identifier for the Eclipse help plugin. When installing the plugin |
1097 # the directory name containing the HTML and XML files should also have | 1378 # the directory name containing the HTML and XML files should also have this |
1098 # this name. | 1379 # name. Each documentation set should have its own identifier. |
1380 # The default value is: org.doxygen.Project. | |
1381 # This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. | |
1099 | 1382 |
1100 ECLIPSE_DOC_ID = org.doxygen.Project | 1383 ECLIPSE_DOC_ID = org.doxygen.Project |
1101 | 1384 |
1102 # The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) | 1385 # If you want full control over the layout of the generated HTML pages it might |
1103 # at top of each HTML page. The value NO (the default) enables the index and | 1386 # be necessary to disable the index and replace it with your own. The |
1104 # the value YES disables it. Since the tabs have the same information as the | 1387 # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top |
1105 # navigation tree you can set this option to NO if you already set | 1388 # of each HTML page. A value of NO enables the index and the value YES disables |
1106 # GENERATE_TREEVIEW to YES. | 1389 # it. Since the tabs in the index contain the same information as the navigation |
1390 # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. | |
1391 # The default value is: NO. | |
1392 # This tag requires that the tag GENERATE_HTML is set to YES. | |
1107 | 1393 |
1108 DISABLE_INDEX = NO | 1394 DISABLE_INDEX = NO |
1109 | 1395 |
1110 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index | 1396 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index |
1111 # structure should be generated to display hierarchical information. | 1397 # structure should be generated to display hierarchical information. If the tag |
1112 # If the tag value is set to YES, a side panel will be generated | 1398 # value is set to YES, a side panel will be generated containing a tree-like |
1113 # containing a tree-like index structure (just like the one that | 1399 # index structure (just like the one that is generated for HTML Help). For this |
1114 # is generated for HTML Help). For this to work a browser that supports | 1400 # to work a browser that supports JavaScript, DHTML, CSS and frames is required |
1115 # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). | 1401 # (i.e. any modern browser). Windows users are probably better off using the |
1116 # Windows users are probably better off using the HTML help feature. | 1402 # HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can |
1117 # Since the tree basically has the same information as the tab index you | 1403 # further fine-tune the look of the index. As an example, the default style |
1118 # could consider to set DISABLE_INDEX to NO when enabling this option. | 1404 # sheet generated by doxygen has an example that shows how to put an image at |
1405 # the root of the tree instead of the PROJECT_NAME. Since the tree basically has | |
1406 # the same information as the tab index, you could consider setting | |
1407 # DISABLE_INDEX to YES when enabling this option. | |
1408 # The default value is: NO. | |
1409 # This tag requires that the tag GENERATE_HTML is set to YES. | |
1119 | 1410 |
1120 GENERATE_TREEVIEW = NO | 1411 GENERATE_TREEVIEW = NO |
1121 | 1412 |
1122 # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values | 1413 # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that |
1123 # (range [0,1..20]) that doxygen will group on one line in the generated HTML | 1414 # doxygen will group on one line in the generated HTML documentation. |
1124 # documentation. Note that a value of 0 will completely suppress the enum | 1415 # |
1125 # values from appearing in the overview section. | 1416 # Note that a value of 0 will completely suppress the enum values from appearing |
1417 # in the overview section. | |
1418 # Minimum value: 0, maximum value: 20, default value: 4. | |
1419 # This tag requires that the tag GENERATE_HTML is set to YES. | |
1126 | 1420 |
1127 ENUM_VALUES_PER_LINE = 4 | 1421 ENUM_VALUES_PER_LINE = 4 |
1128 | 1422 |
1129 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, | 1423 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used |
1130 # and Class Hierarchy pages using a tree view instead of an ordered list. | 1424 # to set the initial width (in pixels) of the frame in which the tree is shown. |
1131 | 1425 # Minimum value: 0, maximum value: 1500, default value: 250. |
1132 USE_INLINE_TREES = NO | 1426 # This tag requires that the tag GENERATE_HTML is set to YES. |
1133 | |
1134 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be | |
1135 # used to set the initial width (in pixels) of the frame in which the tree | |
1136 # is shown. | |
1137 | 1427 |
1138 TREEVIEW_WIDTH = 250 | 1428 TREEVIEW_WIDTH = 250 |
1139 | 1429 |
1140 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open | 1430 # If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to |
1141 # links to external symbols imported via tag files in a separate window. | 1431 # external symbols imported via tag files in a separate window. |
1432 # The default value is: NO. | |
1433 # This tag requires that the tag GENERATE_HTML is set to YES. | |
1142 | 1434 |
1143 EXT_LINKS_IN_WINDOW = NO | 1435 EXT_LINKS_IN_WINDOW = NO |
1144 | 1436 |
1145 # Use this tag to change the font size of Latex formulas included | 1437 # Use this tag to change the font size of LaTeX formulas included as images in |
1146 # as images in the HTML documentation. The default is 10. Note that | 1438 # the HTML documentation. When you change the font size after a successful |
1147 # when you change the font size after a successful doxygen run you need | 1439 # doxygen run you need to manually remove any form_*.png images from the HTML |
1148 # to manually remove any form_*.png images from the HTML output directory | 1440 # output directory to force them to be regenerated. |
1149 # to force them to be regenerated. | 1441 # Minimum value: 8, maximum value: 50, default value: 10. |
1442 # This tag requires that the tag GENERATE_HTML is set to YES. | |
1150 | 1443 |
1151 FORMULA_FONTSIZE = 10 | 1444 FORMULA_FONTSIZE = 10 |
1152 | 1445 |
1153 # Use the FORMULA_TRANPARENT tag to determine whether or not the images | 1446 # Use the FORMULA_TRANPARENT tag to determine whether or not the images |
1154 # generated for formulas are transparent PNGs. Transparent PNGs are | 1447 # generated for formulas are transparent PNGs. Transparent PNGs are not |
1155 # not supported properly for IE 6.0, but are supported on all modern browsers. | 1448 # supported properly for IE 6.0, but are supported on all modern browsers. |
1156 # Note that when changing this option you need to delete any form_*.png files | 1449 # |
1157 # in the HTML output before the changes have effect. | 1450 # Note that when changing this option you need to delete any form_*.png files in |
1451 # the HTML output directory before the changes have effect. | |
1452 # The default value is: YES. | |
1453 # This tag requires that the tag GENERATE_HTML is set to YES. | |
1158 | 1454 |
1159 FORMULA_TRANSPARENT = YES | 1455 FORMULA_TRANSPARENT = YES |
1160 | 1456 |
1161 # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax | 1457 # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see |
1162 # (see http://www.mathjax.org) which uses client side Javascript for the | 1458 # http://www.mathjax.org) which uses client side Javascript for the rendering |
1163 # rendering instead of using prerendered bitmaps. Use this if you do not | 1459 # instead of using pre-rendered bitmaps. Use this if you do not have LaTeX |
1164 # have LaTeX installed or if you want to formulas look prettier in the HTML | 1460 # installed or if you want to formulas look prettier in the HTML output. When |
1165 # output. When enabled you also need to install MathJax separately and | 1461 # enabled you may also need to install MathJax separately and configure the path |
1166 # configure the path to it using the MATHJAX_RELPATH option. | 1462 # to it using the MATHJAX_RELPATH option. |
1463 # The default value is: NO. | |
1464 # This tag requires that the tag GENERATE_HTML is set to YES. | |
1167 | 1465 |
1168 USE_MATHJAX = NO | 1466 USE_MATHJAX = NO |
1169 | 1467 |
1170 # When MathJax is enabled you need to specify the location relative to the | 1468 # When MathJax is enabled you can set the default output format to be used for |
1171 # HTML output directory using the MATHJAX_RELPATH option. The destination | 1469 # the MathJax output. See the MathJax site (see: |
1172 # directory should contain the MathJax.js script. For instance, if the mathjax | 1470 # http://docs.mathjax.org/en/latest/output.html) for more details. |
1173 # directory is located at the same level as the HTML output directory, then | 1471 # Possible values are: HTML-CSS (which is slower, but has the best |
1174 # MATHJAX_RELPATH should be ../mathjax. The default value points to the | 1472 # compatibility), NativeMML (i.e. MathML) and SVG. |
1175 # mathjax.org site, so you can quickly see the result without installing | 1473 # The default value is: HTML-CSS. |
1176 # MathJax, but it is strongly recommended to install a local copy of MathJax | 1474 # This tag requires that the tag USE_MATHJAX is set to YES. |
1177 # before deployment. | 1475 |
1476 MATHJAX_FORMAT = HTML-CSS | |
1477 | |
1478 # When MathJax is enabled you need to specify the location relative to the HTML | |
1479 # output directory using the MATHJAX_RELPATH option. The destination directory | |
1480 # should contain the MathJax.js script. For instance, if the mathjax directory | |
1481 # is located at the same level as the HTML output directory, then | |
1482 # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax | |
1483 # Content Delivery Network so you can quickly see the result without installing | |
1484 # MathJax. However, it is strongly recommended to install a local copy of | |
1485 # MathJax from http://www.mathjax.org before deployment. | |
1486 # The default value is: http://cdn.mathjax.org/mathjax/latest. | |
1487 # This tag requires that the tag USE_MATHJAX is set to YES. | |
1178 | 1488 |
1179 MATHJAX_RELPATH = http://www.mathjax.org/mathjax | 1489 MATHJAX_RELPATH = http://www.mathjax.org/mathjax |
1180 | 1490 |
1181 # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension | 1491 # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax |
1182 # names that should be enabled during MathJax rendering. | 1492 # extension names that should be enabled during MathJax rendering. For example |
1493 # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols | |
1494 # This tag requires that the tag USE_MATHJAX is set to YES. | |
1183 | 1495 |
1184 MATHJAX_EXTENSIONS = | 1496 MATHJAX_EXTENSIONS = |
1185 | 1497 |
1186 # When the SEARCHENGINE tag is enabled doxygen will generate a search box | 1498 # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces |
1187 # for the HTML output. The underlying search engine uses javascript | 1499 # of code that will be used on startup of the MathJax code. See the MathJax site |
1188 # and DHTML and should work on any modern browser. Note that when using | 1500 # (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an |
1189 # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets | 1501 # example see the documentation. |
1190 # (GENERATE_DOCSET) there is already a search function so this one should | 1502 # This tag requires that the tag USE_MATHJAX is set to YES. |
1191 # typically be disabled. For large projects the javascript based search engine | 1503 |
1192 # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. | 1504 MATHJAX_CODEFILE = |
1505 | |
1506 # When the SEARCHENGINE tag is enabled doxygen will generate a search box for | |
1507 # the HTML output. The underlying search engine uses javascript and DHTML and | |
1508 # should work on any modern browser. Note that when using HTML help | |
1509 # (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) | |
1510 # there is already a search function so this one should typically be disabled. | |
1511 # For large projects the javascript based search engine can be slow, then | |
1512 # enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to | |
1513 # search using the keyboard; to jump to the search box use <access key> + S | |
1514 # (what the <access key> is depends on the OS and browser, but it is typically | |
1515 # <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down | |
1516 # key> to jump into the search results window, the results can be navigated | |
1517 # using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel | |
1518 # the search. The filter options can be selected when the cursor is inside the | |
1519 # search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> | |
1520 # to select a filter and <Enter> or <escape> to activate or cancel the filter | |
1521 # option. | |
1522 # The default value is: YES. | |
1523 # This tag requires that the tag GENERATE_HTML is set to YES. | |
1193 | 1524 |
1194 SEARCHENGINE = YES | 1525 SEARCHENGINE = YES |
1195 | 1526 |
1196 # When the SERVER_BASED_SEARCH tag is enabled the search engine will be | 1527 # When the SERVER_BASED_SEARCH tag is enabled the search engine will be |
1197 # implemented using a PHP enabled web server instead of at the web client | 1528 # implemented using a web server instead of a web client using Javascript. There |
1198 # using Javascript. Doxygen will generate the search PHP script and index | 1529 # are two flavors of web server based searching depending on the EXTERNAL_SEARCH |
1199 # file to put on the web server. The advantage of the server | 1530 # setting. When disabled, doxygen will generate a PHP script for searching and |
1200 # based approach is that it scales better to large projects and allows | 1531 # an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing |
1201 # full text search. The disadvantages are that it is more difficult to setup | 1532 # and searching needs to be provided by external tools. See the section |
1202 # and does not have live searching capabilities. | 1533 # "External Indexing and Searching" for details. |
1534 # The default value is: NO. | |
1535 # This tag requires that the tag SEARCHENGINE is set to YES. | |
1203 | 1536 |
1204 SERVER_BASED_SEARCH = NO | 1537 SERVER_BASED_SEARCH = NO |
1205 | 1538 |
1206 #--------------------------------------------------------------------------- | 1539 # When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP |
1207 # configuration options related to the LaTeX output | 1540 # script for searching. Instead the search results are written to an XML file |
1208 #--------------------------------------------------------------------------- | 1541 # which needs to be processed by an external indexer. Doxygen will invoke an |
1209 | 1542 # external search engine pointed to by the SEARCHENGINE_URL option to obtain the |
1210 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will | 1543 # search results. |
1211 # generate Latex output. | 1544 # |
1545 # Doxygen ships with an example indexer (doxyindexer) and search engine | |
1546 # (doxysearch.cgi) which are based on the open source search engine library | |
1547 # Xapian (see: http://xapian.org/). | |
1548 # | |
1549 # See the section "External Indexing and Searching" for details. | |
1550 # The default value is: NO. | |
1551 # This tag requires that the tag SEARCHENGINE is set to YES. | |
1552 | |
1553 EXTERNAL_SEARCH = NO | |
1554 | |
1555 # The SEARCHENGINE_URL should point to a search engine hosted by a web server | |
1556 # which will return the search results when EXTERNAL_SEARCH is enabled. | |
1557 # | |
1558 # Doxygen ships with an example indexer (doxyindexer) and search engine | |
1559 # (doxysearch.cgi) which are based on the open source search engine library | |
1560 # Xapian (see: http://xapian.org/). See the section "External Indexing and | |
1561 # Searching" for details. | |
1562 # This tag requires that the tag SEARCHENGINE is set to YES. | |
1563 | |
1564 SEARCHENGINE_URL = | |
1565 | |
1566 # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed | |
1567 # search data is written to a file for indexing by an external tool. With the | |
1568 # SEARCHDATA_FILE tag the name of this file can be specified. | |
1569 # The default file is: searchdata.xml. | |
1570 # This tag requires that the tag SEARCHENGINE is set to YES. | |
1571 | |
1572 SEARCHDATA_FILE = searchdata.xml | |
1573 | |
1574 # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the | |
1575 # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is | |
1576 # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple | |
1577 # projects and redirect the results back to the right project. | |
1578 # This tag requires that the tag SEARCHENGINE is set to YES. | |
1579 | |
1580 EXTERNAL_SEARCH_ID = | |
1581 | |
1582 # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen | |
1583 # projects other than the one defined by this configuration file, but that are | |
1584 # all added to the same external search index. Each project needs to have a | |
1585 # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of | |
1586 # to a relative location where the documentation can be found. The format is: | |
1587 # EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... | |
1588 # This tag requires that the tag SEARCHENGINE is set to YES. | |
1589 | |
1590 EXTRA_SEARCH_MAPPINGS = | |
1591 | |
1592 #--------------------------------------------------------------------------- | |
1593 # Configuration options related to the LaTeX output | |
1594 #--------------------------------------------------------------------------- | |
1595 | |
1596 # If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. | |
1597 # The default value is: YES. | |
1212 | 1598 |
1213 GENERATE_LATEX = NO | 1599 GENERATE_LATEX = NO |
1214 | 1600 |
1215 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. | 1601 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a |
1216 # If a relative path is entered the value of OUTPUT_DIRECTORY will be | 1602 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of |
1217 # put in front of it. If left blank `latex' will be used as the default path. | 1603 # it. |
1604 # The default directory is: latex. | |
1605 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1218 | 1606 |
1219 LATEX_OUTPUT = latex | 1607 LATEX_OUTPUT = latex |
1220 | 1608 |
1221 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be | 1609 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be |
1222 # invoked. If left blank `latex' will be used as the default command name. | 1610 # invoked. |
1223 # Note that when enabling USE_PDFLATEX this option is only used for | 1611 # |
1224 # generating bitmaps for formulas in the HTML output, but not in the | 1612 # Note that when enabling USE_PDFLATEX this option is only used for generating |
1225 # Makefile that is written to the output directory. | 1613 # bitmaps for formulas in the HTML output, but not in the Makefile that is |
1614 # written to the output directory. | |
1615 # The default file is: latex. | |
1616 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1226 | 1617 |
1227 LATEX_CMD_NAME = latex | 1618 LATEX_CMD_NAME = latex |
1228 | 1619 |
1229 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to | 1620 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate |
1230 # generate index for LaTeX. If left blank `makeindex' will be used as the | 1621 # index for LaTeX. |
1231 # default command name. | 1622 # The default file is: makeindex. |
1623 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1232 | 1624 |
1233 MAKEINDEX_CMD_NAME = makeindex | 1625 MAKEINDEX_CMD_NAME = makeindex |
1234 | 1626 |
1235 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact | 1627 # If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX |
1236 # LaTeX documents. This may be useful for small projects and may help to | 1628 # documents. This may be useful for small projects and may help to save some |
1237 # save some trees in general. | 1629 # trees in general. |
1630 # The default value is: NO. | |
1631 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1238 | 1632 |
1239 COMPACT_LATEX = NO | 1633 COMPACT_LATEX = NO |
1240 | 1634 |
1241 # The PAPER_TYPE tag can be used to set the paper type that is used | 1635 # The PAPER_TYPE tag can be used to set the paper type that is used by the |
1242 # by the printer. Possible values are: a4, letter, legal and | 1636 # printer. |
1243 # executive. If left blank a4wide will be used. | 1637 # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x |
1638 # 14 inches) and executive (7.25 x 10.5 inches). | |
1639 # The default value is: a4. | |
1640 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1244 | 1641 |
1245 PAPER_TYPE = a4 | 1642 PAPER_TYPE = a4 |
1246 | 1643 |
1247 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX | 1644 # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names |
1248 # packages that should be included in the LaTeX output. | 1645 # that should be included in the LaTeX output. The package can be specified just |
1646 # by its name or with the correct syntax as to be used with the LaTeX | |
1647 # \usepackage command. To get the times font for instance you can specify : | |
1648 # EXTRA_PACKAGES=times or EXTRA_PACKAGES={times} | |
1649 # To use the option intlimits with the amsmath package you can specify: | |
1650 # EXTRA_PACKAGES=[intlimits]{amsmath} | |
1651 # If left blank no extra packages will be included. | |
1652 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1249 | 1653 |
1250 EXTRA_PACKAGES = | 1654 EXTRA_PACKAGES = |
1251 | 1655 |
1252 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for | 1656 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for the |
1253 # the generated latex document. The header should contain everything until | 1657 # generated LaTeX document. The header should contain everything until the first |
1254 # the first chapter. If it is left blank doxygen will generate a | 1658 # chapter. If it is left blank doxygen will generate a standard header. See |
1255 # standard header. Notice: only use this tag if you know what you are doing! | 1659 # section "Doxygen usage" for information on how to let doxygen write the |
1660 # default header to a separate file. | |
1661 # | |
1662 # Note: Only use a user-defined header if you know what you are doing! The | |
1663 # following commands have a special meaning inside the header: $title, | |
1664 # $datetime, $date, $doxygenversion, $projectname, $projectnumber, | |
1665 # $projectbrief, $projectlogo. Doxygen will replace $title with the empty | |
1666 # string, for the replacement values of the other commands the user is referred | |
1667 # to HTML_HEADER. | |
1668 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1256 | 1669 |
1257 LATEX_HEADER = | 1670 LATEX_HEADER = |
1258 | 1671 |
1259 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for | 1672 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the |
1260 # the generated latex document. The footer should contain everything after | 1673 # generated LaTeX document. The footer should contain everything after the last |
1261 # the last chapter. If it is left blank doxygen will generate a | 1674 # chapter. If it is left blank doxygen will generate a standard footer. See |
1262 # standard footer. Notice: only use this tag if you know what you are doing! | 1675 # LATEX_HEADER for more information on how to generate a default footer and what |
1676 # special commands can be used inside the footer. | |
1677 # | |
1678 # Note: Only use a user-defined footer if you know what you are doing! | |
1679 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1263 | 1680 |
1264 LATEX_FOOTER = | 1681 LATEX_FOOTER = |
1265 | 1682 |
1266 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated | 1683 # The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined |
1267 # is prepared for conversion to pdf (using ps2pdf). The pdf file will | 1684 # LaTeX style sheets that are included after the standard style sheets created |
1268 # contain links (just like the HTML output) instead of page references | 1685 # by doxygen. Using this option one can overrule certain style aspects. Doxygen |
1269 # This makes the output suitable for online browsing using a pdf viewer. | 1686 # will copy the style sheet files to the output directory. |
1687 # Note: The order of the extra style sheet files is of importance (e.g. the last | |
1688 # style sheet in the list overrules the setting of the previous ones in the | |
1689 # list). | |
1690 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1691 | |
1692 LATEX_EXTRA_STYLESHEET = | |
1693 | |
1694 # The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or | |
1695 # other source files which should be copied to the LATEX_OUTPUT output | |
1696 # directory. Note that the files will be copied as-is; there are no commands or | |
1697 # markers available. | |
1698 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1699 | |
1700 LATEX_EXTRA_FILES = | |
1701 | |
1702 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is | |
1703 # prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will | |
1704 # contain links (just like the HTML output) instead of page references. This | |
1705 # makes the output suitable for online browsing using a PDF viewer. | |
1706 # The default value is: YES. | |
1707 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1270 | 1708 |
1271 PDF_HYPERLINKS = YES | 1709 PDF_HYPERLINKS = YES |
1272 | 1710 |
1273 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of | 1711 # If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate |
1274 # plain latex in the generated Makefile. Set this option to YES to get a | 1712 # the PDF file directly from the LaTeX files. Set this option to YES, to get a |
1275 # higher quality PDF documentation. | 1713 # higher quality PDF documentation. |
1714 # The default value is: YES. | |
1715 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1276 | 1716 |
1277 USE_PDFLATEX = YES | 1717 USE_PDFLATEX = YES |
1278 | 1718 |
1279 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. | 1719 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode |
1280 # command to the generated LaTeX files. This will instruct LaTeX to keep | 1720 # command to the generated LaTeX files. This will instruct LaTeX to keep running |
1281 # running if errors occur, instead of asking the user for help. | 1721 # if errors occur, instead of asking the user for help. This option is also used |
1282 # This option is also used when generating formulas in HTML. | 1722 # when generating formulas in HTML. |
1723 # The default value is: NO. | |
1724 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1283 | 1725 |
1284 LATEX_BATCHMODE = NO | 1726 LATEX_BATCHMODE = NO |
1285 | 1727 |
1286 # If LATEX_HIDE_INDICES is set to YES then doxygen will not | 1728 # If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the |
1287 # include the index chapters (such as File Index, Compound Index, etc.) | 1729 # index chapters (such as File Index, Compound Index, etc.) in the output. |
1288 # in the output. | 1730 # The default value is: NO. |
1731 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1289 | 1732 |
1290 LATEX_HIDE_INDICES = NO | 1733 LATEX_HIDE_INDICES = NO |
1291 | 1734 |
1292 # If LATEX_SOURCE_CODE is set to YES then doxygen will include | 1735 # If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source |
1293 # source code with syntax highlighting in the LaTeX output. | 1736 # code with syntax highlighting in the LaTeX output. |
1294 # Note that which sources are shown also depends on other settings | 1737 # |
1295 # such as SOURCE_BROWSER. | 1738 # Note that which sources are shown also depends on other settings such as |
1739 # SOURCE_BROWSER. | |
1740 # The default value is: NO. | |
1741 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1296 | 1742 |
1297 LATEX_SOURCE_CODE = NO | 1743 LATEX_SOURCE_CODE = NO |
1298 | 1744 |
1299 # The LATEX_BIB_STYLE tag can be used to specify the style to use for the | 1745 # The LATEX_BIB_STYLE tag can be used to specify the style to use for the |
1300 # bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See | 1746 # bibliography, e.g. plainnat, or ieeetr. See |
1301 # http://en.wikipedia.org/wiki/BibTeX for more info. | 1747 # http://en.wikipedia.org/wiki/BibTeX and \cite for more info. |
1748 # The default value is: plain. | |
1749 # This tag requires that the tag GENERATE_LATEX is set to YES. | |
1302 | 1750 |
1303 LATEX_BIB_STYLE = plain | 1751 LATEX_BIB_STYLE = plain |
1304 | 1752 |
1305 #--------------------------------------------------------------------------- | 1753 # If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated |
1306 # configuration options related to the RTF output | 1754 # page will contain the date and time when the page was generated. Setting this |
1307 #--------------------------------------------------------------------------- | 1755 # to NO can help when comparing the output of multiple runs. |
1308 | 1756 # The default value is: NO. |
1309 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output | 1757 # This tag requires that the tag GENERATE_LATEX is set to YES. |
1310 # The RTF output is optimized for Word 97 and may not look very pretty with | 1758 |
1311 # other RTF readers or editors. | 1759 LATEX_TIMESTAMP = NO |
1760 | |
1761 #--------------------------------------------------------------------------- | |
1762 # Configuration options related to the RTF output | |
1763 #--------------------------------------------------------------------------- | |
1764 | |
1765 # If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The | |
1766 # RTF output is optimized for Word 97 and may not look too pretty with other RTF | |
1767 # readers/editors. | |
1768 # The default value is: NO. | |
1312 | 1769 |
1313 GENERATE_RTF = NO | 1770 GENERATE_RTF = NO |
1314 | 1771 |
1315 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. | 1772 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a |
1316 # If a relative path is entered the value of OUTPUT_DIRECTORY will be | 1773 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of |
1317 # put in front of it. If left blank `rtf' will be used as the default path. | 1774 # it. |
1775 # The default directory is: rtf. | |
1776 # This tag requires that the tag GENERATE_RTF is set to YES. | |
1318 | 1777 |
1319 RTF_OUTPUT = rtf | 1778 RTF_OUTPUT = rtf |
1320 | 1779 |
1321 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact | 1780 # If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF |
1322 # RTF documents. This may be useful for small projects and may help to | 1781 # documents. This may be useful for small projects and may help to save some |
1323 # save some trees in general. | 1782 # trees in general. |
1783 # The default value is: NO. | |
1784 # This tag requires that the tag GENERATE_RTF is set to YES. | |
1324 | 1785 |
1325 COMPACT_RTF = NO | 1786 COMPACT_RTF = NO |
1326 | 1787 |
1327 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated | 1788 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will |
1328 # will contain hyperlink fields. The RTF file will | 1789 # contain hyperlink fields. The RTF file will contain links (just like the HTML |
1329 # contain links (just like the HTML output) instead of page references. | 1790 # output) instead of page references. This makes the output suitable for online |
1330 # This makes the output suitable for online browsing using WORD or other | 1791 # browsing using Word or some other Word compatible readers that support those |
1331 # programs which support those fields. | 1792 # fields. |
1332 # Note: wordpad (write) and others do not support links. | 1793 # |
1794 # Note: WordPad (write) and others do not support links. | |
1795 # The default value is: NO. | |
1796 # This tag requires that the tag GENERATE_RTF is set to YES. | |
1333 | 1797 |
1334 RTF_HYPERLINKS = NO | 1798 RTF_HYPERLINKS = NO |
1335 | 1799 |
1336 # Load style sheet definitions from file. Syntax is similar to doxygen's | 1800 # Load stylesheet definitions from file. Syntax is similar to doxygen's config |
1337 # config file, i.e. a series of assignments. You only have to provide | 1801 # file, i.e. a series of assignments. You only have to provide replacements, |
1338 # replacements, missing definitions are set to their default value. | 1802 # missing definitions are set to their default value. |
1803 # | |
1804 # See also section "Doxygen usage" for information on how to generate the | |
1805 # default style sheet that doxygen normally uses. | |
1806 # This tag requires that the tag GENERATE_RTF is set to YES. | |
1339 | 1807 |
1340 RTF_STYLESHEET_FILE = | 1808 RTF_STYLESHEET_FILE = |
1341 | 1809 |
1342 # Set optional variables used in the generation of an rtf document. | 1810 # Set optional variables used in the generation of an RTF document. Syntax is |
1343 # Syntax is similar to doxygen's config file. | 1811 # similar to doxygen's config file. A template extensions file can be generated |
1812 # using doxygen -e rtf extensionFile. | |
1813 # This tag requires that the tag GENERATE_RTF is set to YES. | |
1344 | 1814 |
1345 RTF_EXTENSIONS_FILE = | 1815 RTF_EXTENSIONS_FILE = |
1346 | 1816 |
1347 #--------------------------------------------------------------------------- | 1817 # If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code |
1348 # configuration options related to the man page output | 1818 # with syntax highlighting in the RTF output. |
1349 #--------------------------------------------------------------------------- | 1819 # |
1350 | 1820 # Note that which sources are shown also depends on other settings such as |
1351 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will | 1821 # SOURCE_BROWSER. |
1352 # generate man pages | 1822 # The default value is: NO. |
1823 # This tag requires that the tag GENERATE_RTF is set to YES. | |
1824 | |
1825 RTF_SOURCE_CODE = NO | |
1826 | |
1827 #--------------------------------------------------------------------------- | |
1828 # Configuration options related to the man page output | |
1829 #--------------------------------------------------------------------------- | |
1830 | |
1831 # If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for | |
1832 # classes and files. | |
1833 # The default value is: NO. | |
1353 | 1834 |
1354 GENERATE_MAN = NO | 1835 GENERATE_MAN = NO |
1355 | 1836 |
1356 # The MAN_OUTPUT tag is used to specify where the man pages will be put. | 1837 # The MAN_OUTPUT tag is used to specify where the man pages will be put. If a |
1357 # If a relative path is entered the value of OUTPUT_DIRECTORY will be | 1838 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of |
1358 # put in front of it. If left blank `man' will be used as the default path. | 1839 # it. A directory man3 will be created inside the directory specified by |
1840 # MAN_OUTPUT. | |
1841 # The default directory is: man. | |
1842 # This tag requires that the tag GENERATE_MAN is set to YES. | |
1359 | 1843 |
1360 MAN_OUTPUT = man | 1844 MAN_OUTPUT = man |
1361 | 1845 |
1362 # The MAN_EXTENSION tag determines the extension that is added to | 1846 # The MAN_EXTENSION tag determines the extension that is added to the generated |
1363 # the generated man pages (default is the subroutine's section .3) | 1847 # man pages. In case the manual section does not start with a number, the number |
1848 # 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is | |
1849 # optional. | |
1850 # The default value is: .3. | |
1851 # This tag requires that the tag GENERATE_MAN is set to YES. | |
1364 | 1852 |
1365 MAN_EXTENSION = .3 | 1853 MAN_EXTENSION = .3 |
1366 | 1854 |
1367 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, | 1855 # The MAN_SUBDIR tag determines the name of the directory created within |
1368 # then it will generate one additional man file for each entity | 1856 # MAN_OUTPUT in which the man pages are placed. If defaults to man followed by |
1369 # documented in the real man page(s). These additional files | 1857 # MAN_EXTENSION with the initial . removed. |
1370 # only source the real man page, but without them the man command | 1858 # This tag requires that the tag GENERATE_MAN is set to YES. |
1371 # would be unable to find the correct page. The default is NO. | 1859 |
1860 MAN_SUBDIR = | |
1861 | |
1862 # If the MAN_LINKS tag is set to YES and doxygen generates man output, then it | |
1863 # will generate one additional man file for each entity documented in the real | |
1864 # man page(s). These additional files only source the real man page, but without | |
1865 # them the man command would be unable to find the correct page. | |
1866 # The default value is: NO. | |
1867 # This tag requires that the tag GENERATE_MAN is set to YES. | |
1372 | 1868 |
1373 MAN_LINKS = NO | 1869 MAN_LINKS = NO |
1374 | 1870 |
1375 #--------------------------------------------------------------------------- | 1871 #--------------------------------------------------------------------------- |
1376 # configuration options related to the XML output | 1872 # Configuration options related to the XML output |
1377 #--------------------------------------------------------------------------- | 1873 #--------------------------------------------------------------------------- |
1378 | 1874 |
1379 # If the GENERATE_XML tag is set to YES Doxygen will | 1875 # If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that |
1380 # generate an XML file that captures the structure of | 1876 # captures the structure of the code including all documentation. |
1381 # the code including all documentation. | 1877 # The default value is: NO. |
1382 | 1878 |
1383 GENERATE_XML = YES | 1879 GENERATE_XML = YES |
1384 | 1880 |
1385 # The XML_OUTPUT tag is used to specify where the XML pages will be put. | 1881 # The XML_OUTPUT tag is used to specify where the XML pages will be put. If a |
1386 # If a relative path is entered the value of OUTPUT_DIRECTORY will be | 1882 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of |
1387 # put in front of it. If left blank `xml' will be used as the default path. | 1883 # it. |
1884 # The default directory is: xml. | |
1885 # This tag requires that the tag GENERATE_XML is set to YES. | |
1388 | 1886 |
1389 XML_OUTPUT = xml | 1887 XML_OUTPUT = xml |
1390 | 1888 |
1391 # The XML_SCHEMA tag can be used to specify an XML schema, | 1889 # If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program |
1392 # which can be used by a validating XML parser to check the | 1890 # listings (including syntax highlighting and cross-referencing information) to |
1393 # syntax of the XML files. | 1891 # the XML output. Note that enabling this will significantly increase the size |
1394 | 1892 # of the XML output. |
1395 XML_SCHEMA = | 1893 # The default value is: YES. |
1396 | 1894 # This tag requires that the tag GENERATE_XML is set to YES. |
1397 # The XML_DTD tag can be used to specify an XML DTD, | |
1398 # which can be used by a validating XML parser to check the | |
1399 # syntax of the XML files. | |
1400 | |
1401 XML_DTD = | |
1402 | |
1403 # If the XML_PROGRAMLISTING tag is set to YES Doxygen will | |
1404 # dump the program listings (including syntax highlighting | |
1405 # and cross-referencing information) to the XML output. Note that | |
1406 # enabling this will significantly increase the size of the XML output. | |
1407 | 1895 |
1408 XML_PROGRAMLISTING = YES | 1896 XML_PROGRAMLISTING = YES |
1409 | 1897 |
1410 #--------------------------------------------------------------------------- | 1898 #--------------------------------------------------------------------------- |
1411 # configuration options for the AutoGen Definitions output | 1899 # Configuration options related to the DOCBOOK output |
1412 #--------------------------------------------------------------------------- | 1900 #--------------------------------------------------------------------------- |
1413 | 1901 |
1414 # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will | 1902 # If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files |
1415 # generate an AutoGen Definitions (see autogen.sf.net) file | 1903 # that can be used to generate PDF. |
1416 # that captures the structure of the code including all | 1904 # The default value is: NO. |
1417 # documentation. Note that this feature is still experimental | 1905 |
1418 # and incomplete at the moment. | 1906 GENERATE_DOCBOOK = NO |
1907 | |
1908 # The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. | |
1909 # If a relative path is entered the value of OUTPUT_DIRECTORY will be put in | |
1910 # front of it. | |
1911 # The default directory is: docbook. | |
1912 # This tag requires that the tag GENERATE_DOCBOOK is set to YES. | |
1913 | |
1914 DOCBOOK_OUTPUT = docbook | |
1915 | |
1916 # If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the | |
1917 # program listings (including syntax highlighting and cross-referencing | |
1918 # information) to the DOCBOOK output. Note that enabling this will significantly | |
1919 # increase the size of the DOCBOOK output. | |
1920 # The default value is: NO. | |
1921 # This tag requires that the tag GENERATE_DOCBOOK is set to YES. | |
1922 | |
1923 DOCBOOK_PROGRAMLISTING = NO | |
1924 | |
1925 #--------------------------------------------------------------------------- | |
1926 # Configuration options for the AutoGen Definitions output | |
1927 #--------------------------------------------------------------------------- | |
1928 | |
1929 # If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an | |
1930 # AutoGen Definitions (see http://autogen.sf.net) file that captures the | |
1931 # structure of the code including all documentation. Note that this feature is | |
1932 # still experimental and incomplete at the moment. | |
1933 # The default value is: NO. | |
1419 | 1934 |
1420 GENERATE_AUTOGEN_DEF = NO | 1935 GENERATE_AUTOGEN_DEF = NO |
1421 | 1936 |
1422 #--------------------------------------------------------------------------- | 1937 #--------------------------------------------------------------------------- |
1423 # configuration options related to the Perl module output | 1938 # Configuration options related to the Perl module output |
1424 #--------------------------------------------------------------------------- | 1939 #--------------------------------------------------------------------------- |
1425 | 1940 |
1426 # If the GENERATE_PERLMOD tag is set to YES Doxygen will | 1941 # If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module |
1427 # generate a Perl module file that captures the structure of | 1942 # file that captures the structure of the code including all documentation. |
1428 # the code including all documentation. Note that this | 1943 # |
1429 # feature is still experimental and incomplete at the | 1944 # Note that this feature is still experimental and incomplete at the moment. |
1430 # moment. | 1945 # The default value is: NO. |
1431 | 1946 |
1432 GENERATE_PERLMOD = NO | 1947 GENERATE_PERLMOD = NO |
1433 | 1948 |
1434 # If the PERLMOD_LATEX tag is set to YES Doxygen will generate | 1949 # If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary |
1435 # the necessary Makefile rules, Perl scripts and LaTeX code to be able | 1950 # Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI |
1436 # to generate PDF and DVI output from the Perl module output. | 1951 # output from the Perl module output. |
1952 # The default value is: NO. | |
1953 # This tag requires that the tag GENERATE_PERLMOD is set to YES. | |
1437 | 1954 |
1438 PERLMOD_LATEX = NO | 1955 PERLMOD_LATEX = NO |
1439 | 1956 |
1440 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be | 1957 # If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely |
1441 # nicely formatted so it can be parsed by a human reader. | 1958 # formatted so it can be parsed by a human reader. This is useful if you want to |
1442 # This is useful | 1959 # understand what is going on. On the other hand, if this tag is set to NO, the |
1443 # if you want to understand what is going on. | 1960 # size of the Perl module output will be much smaller and Perl will parse it |
1444 # On the other hand, if this | 1961 # just the same. |
1445 # tag is set to NO the size of the Perl module output will be much smaller | 1962 # The default value is: YES. |
1446 # and Perl will parse it just the same. | 1963 # This tag requires that the tag GENERATE_PERLMOD is set to YES. |
1447 | 1964 |
1448 PERLMOD_PRETTY = YES | 1965 PERLMOD_PRETTY = YES |
1449 | 1966 |
1450 # The names of the make variables in the generated doxyrules.make file | 1967 # The names of the make variables in the generated doxyrules.make file are |
1451 # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. | 1968 # prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful |
1452 # This is useful so different doxyrules.make files included by the same | 1969 # so different doxyrules.make files included by the same Makefile don't |
1453 # Makefile don't overwrite each other's variables. | 1970 # overwrite each other's variables. |
1971 # This tag requires that the tag GENERATE_PERLMOD is set to YES. | |
1454 | 1972 |
1455 PERLMOD_MAKEVAR_PREFIX = | 1973 PERLMOD_MAKEVAR_PREFIX = |
1456 | 1974 |
1457 #--------------------------------------------------------------------------- | 1975 #--------------------------------------------------------------------------- |
1458 # Configuration options related to the preprocessor | 1976 # Configuration options related to the preprocessor |
1459 #--------------------------------------------------------------------------- | 1977 #--------------------------------------------------------------------------- |
1460 | 1978 |
1461 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will | 1979 # If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all |
1462 # evaluate all C-preprocessor directives found in the sources and include | 1980 # C-preprocessor directives found in the sources and include files. |
1463 # files. | 1981 # The default value is: YES. |
1464 | 1982 |
1465 ENABLE_PREPROCESSING = YES | 1983 ENABLE_PREPROCESSING = YES |
1466 | 1984 |
1467 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro | 1985 # If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names |
1468 # names in the source code. If set to NO (the default) only conditional | 1986 # in the source code. If set to NO, only conditional compilation will be |
1469 # compilation will be performed. Macro expansion can be done in a controlled | 1987 # performed. Macro expansion can be done in a controlled way by setting |
1470 # way by setting EXPAND_ONLY_PREDEF to YES. | 1988 # EXPAND_ONLY_PREDEF to YES. |
1989 # The default value is: NO. | |
1990 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. | |
1471 | 1991 |
1472 MACRO_EXPANSION = NO | 1992 MACRO_EXPANSION = NO |
1473 | 1993 |
1474 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES | 1994 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then |
1475 # then the macro expansion is limited to the macros specified with the | 1995 # the macro expansion is limited to the macros specified with the PREDEFINED and |
1476 # PREDEFINED and EXPAND_AS_DEFINED tags. | 1996 # EXPAND_AS_DEFINED tags. |
1997 # The default value is: NO. | |
1998 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. | |
1477 | 1999 |
1478 EXPAND_ONLY_PREDEF = NO | 2000 EXPAND_ONLY_PREDEF = NO |
1479 | 2001 |
1480 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files | 2002 # If the SEARCH_INCLUDES tag is set to YES, the include files in the |
1481 # pointed to by INCLUDE_PATH will be searched when a #include is found. | 2003 # INCLUDE_PATH will be searched if a #include is found. |
2004 # The default value is: YES. | |
2005 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. | |
1482 | 2006 |
1483 SEARCH_INCLUDES = YES | 2007 SEARCH_INCLUDES = YES |
1484 | 2008 |
1485 # The INCLUDE_PATH tag can be used to specify one or more directories that | 2009 # The INCLUDE_PATH tag can be used to specify one or more directories that |
1486 # contain include files that are not input files but should be processed by | 2010 # contain include files that are not input files but should be processed by the |
1487 # the preprocessor. | 2011 # preprocessor. |
2012 # This tag requires that the tag SEARCH_INCLUDES is set to YES. | |
1488 | 2013 |
1489 INCLUDE_PATH = | 2014 INCLUDE_PATH = |
1490 | 2015 |
1491 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard | 2016 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard |
1492 # patterns (like *.h and *.hpp) to filter out the header-files in the | 2017 # patterns (like *.h and *.hpp) to filter out the header-files in the |
1493 # directories. If left blank, the patterns specified with FILE_PATTERNS will | 2018 # directories. If left blank, the patterns specified with FILE_PATTERNS will be |
1494 # be used. | 2019 # used. |
2020 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. | |
1495 | 2021 |
1496 INCLUDE_FILE_PATTERNS = | 2022 INCLUDE_FILE_PATTERNS = |
1497 | 2023 |
1498 # The PREDEFINED tag can be used to specify one or more macro names that | 2024 # The PREDEFINED tag can be used to specify one or more macro names that are |
1499 # are defined before the preprocessor is started (similar to the -D option of | 2025 # defined before the preprocessor is started (similar to the -D option of e.g. |
1500 # gcc). The argument of the tag is a list of macros of the form: name | 2026 # gcc). The argument of the tag is a list of macros of the form: name or |
1501 # or name=definition (no spaces). If the definition and the = are | 2027 # name=definition (no spaces). If the definition and the "=" are omitted, "=1" |
1502 # omitted =1 is assumed. To prevent a macro definition from being | 2028 # is assumed. To prevent a macro definition from being undefined via #undef or |
1503 # undefined via #undef or recursively expanded use the := operator | 2029 # recursively expanded use the := operator instead of the = operator. |
1504 # instead of the = operator. | 2030 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. |
1505 | 2031 |
1506 PREDEFINED = | 2032 PREDEFINED = |
1507 | 2033 |
1508 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then | 2034 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this |
1509 # this tag can be used to specify a list of macro names that should be expanded. | 2035 # tag can be used to specify a list of macro names that should be expanded. The |
1510 # The macro definition that is found in the sources will be used. | 2036 # macro definition that is found in the sources will be used. Use the PREDEFINED |
1511 # Use the PREDEFINED tag if you want to use a different macro definition that | 2037 # tag if you want to use a different macro definition that overrules the |
1512 # overrules the definition found in the source code. | 2038 # definition found in the source code. |
2039 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. | |
1513 | 2040 |
1514 EXPAND_AS_DEFINED = | 2041 EXPAND_AS_DEFINED = |
1515 | 2042 |
1516 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then | 2043 # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will |
1517 # doxygen's preprocessor will remove all references to function-like macros | 2044 # remove all references to function-like macros that are alone on a line, have |
1518 # that are alone on a line, have an all uppercase name, and do not end with a | 2045 # an all uppercase name, and do not end with a semicolon. Such function macros |
1519 # semicolon, because these will confuse the parser if not removed. | 2046 # are typically used for boiler-plate code, and will confuse the parser if not |
2047 # removed. | |
2048 # The default value is: YES. | |
2049 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. | |
1520 | 2050 |
1521 SKIP_FUNCTION_MACROS = YES | 2051 SKIP_FUNCTION_MACROS = YES |
1522 | 2052 |
1523 #--------------------------------------------------------------------------- | 2053 #--------------------------------------------------------------------------- |
1524 # Configuration::additions related to external references | 2054 # Configuration options related to external references |
1525 #--------------------------------------------------------------------------- | 2055 #--------------------------------------------------------------------------- |
1526 | 2056 |
1527 # The TAGFILES option can be used to specify one or more tagfiles. | 2057 # The TAGFILES tag can be used to specify one or more tag files. For each tag |
1528 # Optionally an initial location of the external documentation | 2058 # file the location of the external documentation should be added. The format of |
1529 # can be added for each tagfile. The format of a tag file without | 2059 # a tag file without this location is as follows: |
1530 # this location is as follows: | |
1531 # | |
1532 # TAGFILES = file1 file2 ... | 2060 # TAGFILES = file1 file2 ... |
1533 # Adding location for the tag files is done as follows: | 2061 # Adding location for the tag files is done as follows: |
1534 # | |
1535 # TAGFILES = file1=loc1 "file2 = loc2" ... | 2062 # TAGFILES = file1=loc1 "file2 = loc2" ... |
1536 # where "loc1" and "loc2" can be relative or absolute paths or | 2063 # where loc1 and loc2 can be relative or absolute paths or URLs. See the |
1537 # URLs. If a location is present for each tag, the installdox tool | 2064 # section "Linking to external documentation" for more information about the use |
1538 # does not have to be run to correct the links. | 2065 # of tag files. |
1539 # Note that each tag file must have a unique name | 2066 # Note: Each tag file must have a unique name (where the name does NOT include |
1540 # (where the name does NOT include the path) | 2067 # the path). If a tag file is not located in the directory in which doxygen is |
1541 # If a tag file is not located in the directory in which doxygen | 2068 # run, you must also specify the path to the tagfile here. |
1542 # is run, you must also specify the path to the tagfile here. | |
1543 | 2069 |
1544 TAGFILES = | 2070 TAGFILES = |
1545 | 2071 |
1546 # When a file name is specified after GENERATE_TAGFILE, doxygen will create | 2072 # When a file name is specified after GENERATE_TAGFILE, doxygen will create a |
1547 # a tag file that is based on the input files it reads. | 2073 # tag file that is based on the input files it reads. See section "Linking to |
2074 # external documentation" for more information about the usage of tag files. | |
1548 | 2075 |
1549 GENERATE_TAGFILE = | 2076 GENERATE_TAGFILE = |
1550 | 2077 |
1551 # If the ALLEXTERNALS tag is set to YES all external classes will be listed | 2078 # If the ALLEXTERNALS tag is set to YES, all external class will be listed in |
1552 # in the class index. If set to NO only the inherited external classes | 2079 # the class index. If set to NO, only the inherited external classes will be |
1553 # will be listed. | 2080 # listed. |
2081 # The default value is: NO. | |
1554 | 2082 |
1555 ALLEXTERNALS = NO | 2083 ALLEXTERNALS = NO |
1556 | 2084 |
1557 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed | 2085 # If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed |
1558 # in the modules index. If set to NO, only the current project's groups will | 2086 # in the modules index. If set to NO, only the current project's groups will be |
2087 # listed. | |
2088 # The default value is: YES. | |
2089 | |
2090 EXTERNAL_GROUPS = YES | |
2091 | |
2092 # If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in | |
2093 # the related pages index. If set to NO, only the current project's pages will | |
1559 # be listed. | 2094 # be listed. |
1560 | 2095 # The default value is: YES. |
1561 EXTERNAL_GROUPS = YES | 2096 |
2097 EXTERNAL_PAGES = YES | |
1562 | 2098 |
1563 # The PERL_PATH should be the absolute path and name of the perl script | 2099 # The PERL_PATH should be the absolute path and name of the perl script |
1564 # interpreter (i.e. the result of `which perl'). | 2100 # interpreter (i.e. the result of 'which perl'). |
2101 # The default file (with absolute path) is: /usr/bin/perl. | |
1565 | 2102 |
1566 PERL_PATH = /usr/bin/perl | 2103 PERL_PATH = /usr/bin/perl |
1567 | 2104 |
1568 #--------------------------------------------------------------------------- | 2105 #--------------------------------------------------------------------------- |
1569 # Configuration options related to the dot tool | 2106 # Configuration options related to the dot tool |
1570 #--------------------------------------------------------------------------- | 2107 #--------------------------------------------------------------------------- |
1571 | 2108 |
1572 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will | 2109 # If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram |
1573 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base | 2110 # (in HTML and LaTeX) for classes with base or super classes. Setting the tag to |
1574 # or super classes. Setting the tag to NO turns the diagrams off. Note that | 2111 # NO turns the diagrams off. Note that this option also works with HAVE_DOT |
1575 # this option also works with HAVE_DOT disabled, but it is recommended to | 2112 # disabled, but it is recommended to install and use dot, since it yields more |
1576 # install and use dot, since it yields more powerful graphs. | 2113 # powerful graphs. |
2114 # The default value is: YES. | |
1577 | 2115 |
1578 CLASS_DIAGRAMS = YES | 2116 CLASS_DIAGRAMS = YES |
1579 | 2117 |
1580 # You can define message sequence charts within doxygen comments using the \msc | 2118 # You can define message sequence charts within doxygen comments using the \msc |
1581 # command. Doxygen will then run the mscgen tool (see | 2119 # command. Doxygen will then run the mscgen tool (see: |
1582 # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the | 2120 # http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the |
1583 # documentation. The MSCGEN_PATH tag allows you to specify the directory where | 2121 # documentation. The MSCGEN_PATH tag allows you to specify the directory where |
1584 # the mscgen tool resides. If left empty the tool is assumed to be found in the | 2122 # the mscgen tool resides. If left empty the tool is assumed to be found in the |
1585 # default search path. | 2123 # default search path. |
1586 | 2124 |
1587 MSCGEN_PATH = | 2125 MSCGEN_PATH = |
1588 | 2126 |
1589 # If set to YES, the inheritance and collaboration graphs will hide | 2127 # You can include diagrams made with dia in doxygen documentation. Doxygen will |
1590 # inheritance and usage relations if the target is undocumented | 2128 # then run dia to produce the diagram and insert it in the documentation. The |
1591 # or is not a class. | 2129 # DIA_PATH tag allows you to specify the directory where the dia binary resides. |
2130 # If left empty dia is assumed to be found in the default search path. | |
2131 | |
2132 DIA_PATH = | |
2133 | |
2134 # If set to YES the inheritance and collaboration graphs will hide inheritance | |
2135 # and usage relations if the target is undocumented or is not a class. | |
2136 # The default value is: YES. | |
1592 | 2137 |
1593 HIDE_UNDOC_RELATIONS = YES | 2138 HIDE_UNDOC_RELATIONS = YES |
1594 | 2139 |
1595 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is | 2140 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is |
1596 # available from the path. This tool is part of Graphviz, a graph visualization | 2141 # available from the path. This tool is part of Graphviz (see: |
1597 # toolkit from AT&T and Lucent Bell Labs. The other options in this section | 2142 # http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent |
1598 # have no effect if this option is set to NO (the default) | 2143 # Bell Labs. The other options in this section have no effect if this option is |
2144 # set to NO | |
2145 # The default value is: NO. | |
1599 | 2146 |
1600 HAVE_DOT = NO | 2147 HAVE_DOT = NO |
1601 | 2148 |
1602 # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is | 2149 # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed |
1603 # allowed to run in parallel. When set to 0 (the default) doxygen will | 2150 # to run in parallel. When set to 0 doxygen will base this on the number of |
1604 # base this on the number of processors available in the system. You can set it | 2151 # processors available in the system. You can set it explicitly to a value |
1605 # explicitly to a value larger than 0 to get control over the balance | 2152 # larger than 0 to get control over the balance between CPU load and processing |
1606 # between CPU load and processing speed. | 2153 # speed. |
2154 # Minimum value: 0, maximum value: 32, default value: 0. | |
2155 # This tag requires that the tag HAVE_DOT is set to YES. | |
1607 | 2156 |
1608 DOT_NUM_THREADS = 0 | 2157 DOT_NUM_THREADS = 0 |
1609 | 2158 |
1610 # By default doxygen will use the Helvetica font for all dot files that | 2159 # When you want a differently looking font in the dot files that doxygen |
1611 # doxygen generates. When you want a differently looking font you can specify | 2160 # generates you can specify the font name using DOT_FONTNAME. You need to make |
1612 # the font name using DOT_FONTNAME. You need to make sure dot is able to find | 2161 # sure dot is able to find the font, which can be done by putting it in a |
1613 # the font, which can be done by putting it in a standard location or by setting | 2162 # standard location or by setting the DOTFONTPATH environment variable or by |
1614 # the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the | 2163 # setting DOT_FONTPATH to the directory containing the font. |
1615 # directory containing the font. | 2164 # The default value is: Helvetica. |
2165 # This tag requires that the tag HAVE_DOT is set to YES. | |
1616 | 2166 |
1617 DOT_FONTNAME = Helvetica | 2167 DOT_FONTNAME = Helvetica |
1618 | 2168 |
1619 # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. | 2169 # The DOT_FONTSIZE tag can be used to set the size (in points) of the font of |
1620 # The default size is 10pt. | 2170 # dot graphs. |
2171 # Minimum value: 4, maximum value: 24, default value: 10. | |
2172 # This tag requires that the tag HAVE_DOT is set to YES. | |
1621 | 2173 |
1622 DOT_FONTSIZE = 10 | 2174 DOT_FONTSIZE = 10 |
1623 | 2175 |
1624 # By default doxygen will tell dot to use the Helvetica font. | 2176 # By default doxygen will tell dot to use the default font as specified with |
1625 # If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to | 2177 # DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set |
1626 # set the path where dot can find it. | 2178 # the path where dot can find it using this tag. |
2179 # This tag requires that the tag HAVE_DOT is set to YES. | |
1627 | 2180 |
1628 DOT_FONTPATH = | 2181 DOT_FONTPATH = |
1629 | 2182 |
1630 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen | 2183 # If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for |
1631 # will generate a graph for each documented class showing the direct and | 2184 # each documented class showing the direct and indirect inheritance relations. |
1632 # indirect inheritance relations. Setting this tag to YES will force the | 2185 # Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. |
1633 # CLASS_DIAGRAMS tag to NO. | 2186 # The default value is: YES. |
2187 # This tag requires that the tag HAVE_DOT is set to YES. | |
1634 | 2188 |
1635 CLASS_GRAPH = YES | 2189 CLASS_GRAPH = YES |
1636 | 2190 |
1637 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen | 2191 # If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a |
1638 # will generate a graph for each documented class showing the direct and | 2192 # graph for each documented class showing the direct and indirect implementation |
1639 # indirect implementation dependencies (inheritance, containment, and | 2193 # dependencies (inheritance, containment, and class references variables) of the |
1640 # class references variables) of the class with other documented classes. | 2194 # class with other documented classes. |
2195 # The default value is: YES. | |
2196 # This tag requires that the tag HAVE_DOT is set to YES. | |
1641 | 2197 |
1642 COLLABORATION_GRAPH = YES | 2198 COLLABORATION_GRAPH = YES |
1643 | 2199 |
1644 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen | 2200 # If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for |
1645 # will generate a graph for groups, showing the direct groups dependencies | 2201 # groups, showing the direct groups dependencies. |
2202 # The default value is: YES. | |
2203 # This tag requires that the tag HAVE_DOT is set to YES. | |
1646 | 2204 |
1647 GROUP_GRAPHS = YES | 2205 GROUP_GRAPHS = YES |
1648 | 2206 |
1649 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and | 2207 # If the UML_LOOK tag is set to YES, doxygen will generate inheritance and |
1650 # collaboration diagrams in a style similar to the OMG's Unified Modeling | 2208 # collaboration diagrams in a style similar to the OMG's Unified Modeling |
1651 # Language. | 2209 # Language. |
2210 # The default value is: NO. | |
2211 # This tag requires that the tag HAVE_DOT is set to YES. | |
1652 | 2212 |
1653 UML_LOOK = NO | 2213 UML_LOOK = NO |
1654 | 2214 |
1655 # If set to YES, the inheritance and collaboration graphs will show the | 2215 # If the UML_LOOK tag is enabled, the fields and methods are shown inside the |
1656 # relations between templates and their instances. | 2216 # class node. If there are many fields or methods and many nodes the graph may |
2217 # become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the | |
2218 # number of items for each type to make the size more manageable. Set this to 0 | |
2219 # for no limit. Note that the threshold may be exceeded by 50% before the limit | |
2220 # is enforced. So when you set the threshold to 10, up to 15 fields may appear, | |
2221 # but if the number exceeds 15, the total amount of fields shown is limited to | |
2222 # 10. | |
2223 # Minimum value: 0, maximum value: 100, default value: 10. | |
2224 # This tag requires that the tag HAVE_DOT is set to YES. | |
2225 | |
2226 UML_LIMIT_NUM_FIELDS = 10 | |
2227 | |
2228 # If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and | |
2229 # collaboration graphs will show the relations between templates and their | |
2230 # instances. | |
2231 # The default value is: NO. | |
2232 # This tag requires that the tag HAVE_DOT is set to YES. | |
1657 | 2233 |
1658 TEMPLATE_RELATIONS = NO | 2234 TEMPLATE_RELATIONS = NO |
1659 | 2235 |
1660 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT | 2236 # If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to |
1661 # tags are set to YES then doxygen will generate a graph for each documented | 2237 # YES then doxygen will generate a graph for each documented file showing the |
1662 # file showing the direct and indirect include dependencies of the file with | 2238 # direct and indirect include dependencies of the file with other documented |
1663 # other documented files. | 2239 # files. |
2240 # The default value is: YES. | |
2241 # This tag requires that the tag HAVE_DOT is set to YES. | |
1664 | 2242 |
1665 INCLUDE_GRAPH = YES | 2243 INCLUDE_GRAPH = YES |
1666 | 2244 |
1667 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and | 2245 # If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are |
1668 # HAVE_DOT tags are set to YES then doxygen will generate a graph for each | 2246 # set to YES then doxygen will generate a graph for each documented file showing |
1669 # documented header file showing the documented files that directly or | 2247 # the direct and indirect include dependencies of the file with other documented |
1670 # indirectly include this file. | 2248 # files. |
2249 # The default value is: YES. | |
2250 # This tag requires that the tag HAVE_DOT is set to YES. | |
1671 | 2251 |
1672 INCLUDED_BY_GRAPH = YES | 2252 INCLUDED_BY_GRAPH = YES |
1673 | 2253 |
1674 # If the CALL_GRAPH and HAVE_DOT options are set to YES then | 2254 # If the CALL_GRAPH tag is set to YES then doxygen will generate a call |
1675 # doxygen will generate a call dependency graph for every global function | 2255 # dependency graph for every global function or class method. |
1676 # or class method. Note that enabling this option will significantly increase | 2256 # |
1677 # the time of a run. So in most cases it will be better to enable call graphs | 2257 # Note that enabling this option will significantly increase the time of a run. |
1678 # for selected functions only using the \callgraph command. | 2258 # So in most cases it will be better to enable call graphs for selected |
2259 # functions only using the \callgraph command. Disabling a call graph can be | |
2260 # accomplished by means of the command \hidecallgraph. | |
2261 # The default value is: NO. | |
2262 # This tag requires that the tag HAVE_DOT is set to YES. | |
1679 | 2263 |
1680 CALL_GRAPH = NO | 2264 CALL_GRAPH = NO |
1681 | 2265 |
1682 # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then | 2266 # If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller |
1683 # doxygen will generate a caller dependency graph for every global function | 2267 # dependency graph for every global function or class method. |
1684 # or class method. Note that enabling this option will significantly increase | 2268 # |
1685 # the time of a run. So in most cases it will be better to enable caller | 2269 # Note that enabling this option will significantly increase the time of a run. |
1686 # graphs for selected functions only using the \callergraph command. | 2270 # So in most cases it will be better to enable caller graphs for selected |
2271 # functions only using the \callergraph command. Disabling a caller graph can be | |
2272 # accomplished by means of the command \hidecallergraph. | |
2273 # The default value is: NO. | |
2274 # This tag requires that the tag HAVE_DOT is set to YES. | |
1687 | 2275 |
1688 CALLER_GRAPH = NO | 2276 CALLER_GRAPH = NO |
1689 | 2277 |
1690 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen | 2278 # If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical |
1691 # will generate a graphical hierarchy of all classes instead of a textual one. | 2279 # hierarchy of all classes instead of a textual one. |
2280 # The default value is: YES. | |
2281 # This tag requires that the tag HAVE_DOT is set to YES. | |
1692 | 2282 |
1693 GRAPHICAL_HIERARCHY = YES | 2283 GRAPHICAL_HIERARCHY = YES |
1694 | 2284 |
1695 # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES | 2285 # If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the |
1696 # then doxygen will show the dependencies a directory has on other directories | 2286 # dependencies a directory has on other directories in a graphical way. The |
1697 # in a graphical way. The dependency relations are determined by the #include | 2287 # dependency relations are determined by the #include relations between the |
1698 # relations between the files in the directories. | 2288 # files in the directories. |
2289 # The default value is: YES. | |
2290 # This tag requires that the tag HAVE_DOT is set to YES. | |
1699 | 2291 |
1700 DIRECTORY_GRAPH = YES | 2292 DIRECTORY_GRAPH = YES |
1701 | 2293 |
1702 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images | 2294 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images |
1703 # generated by dot. Possible values are svg, png, jpg, or gif. | 2295 # generated by dot. For an explanation of the image formats see the section |
1704 # If left blank png will be used. If you choose svg you need to set | 2296 # output formats in the documentation of the dot tool (Graphviz (see: |
1705 # HTML_FILE_EXTENSION to xhtml in order to make the SVG files | 2297 # http://www.graphviz.org/)). |
1706 # visible in IE 9+ (other browsers do not have this requirement). | 2298 # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order |
2299 # to make the SVG files visible in IE 9+ (other browsers do not have this | |
2300 # requirement). | |
2301 # Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo, | |
2302 # png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and | |
2303 # png:gdiplus:gdiplus. | |
2304 # The default value is: png. | |
2305 # This tag requires that the tag HAVE_DOT is set to YES. | |
1707 | 2306 |
1708 DOT_IMAGE_FORMAT = png | 2307 DOT_IMAGE_FORMAT = png |
1709 | 2308 |
1710 # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to | 2309 # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to |
1711 # enable generation of interactive SVG images that allow zooming and panning. | 2310 # enable generation of interactive SVG images that allow zooming and panning. |
1712 # Note that this requires a modern browser other than Internet Explorer. | 2311 # |
1713 # Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you | 2312 # Note that this requires a modern browser other than Internet Explorer. Tested |
1714 # need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files | 2313 # and working are Firefox, Chrome, Safari, and Opera. |
1715 # visible. Older versions of IE do not have SVG support. | 2314 # Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make |
2315 # the SVG files visible. Older versions of IE do not have SVG support. | |
2316 # The default value is: NO. | |
2317 # This tag requires that the tag HAVE_DOT is set to YES. | |
1716 | 2318 |
1717 INTERACTIVE_SVG = NO | 2319 INTERACTIVE_SVG = NO |
1718 | 2320 |
1719 # The tag DOT_PATH can be used to specify the path where the dot tool can be | 2321 # The DOT_PATH tag can be used to specify the path where the dot tool can be |
1720 # found. If left blank, it is assumed the dot tool can be found in the path. | 2322 # found. If left blank, it is assumed the dot tool can be found in the path. |
2323 # This tag requires that the tag HAVE_DOT is set to YES. | |
1721 | 2324 |
1722 DOT_PATH = | 2325 DOT_PATH = |
1723 | 2326 |
1724 # The DOTFILE_DIRS tag can be used to specify one or more directories that | 2327 # The DOTFILE_DIRS tag can be used to specify one or more directories that |
1725 # contain dot files that are included in the documentation (see the | 2328 # contain dot files that are included in the documentation (see the \dotfile |
1726 # \dotfile command). | 2329 # command). |
2330 # This tag requires that the tag HAVE_DOT is set to YES. | |
1727 | 2331 |
1728 DOTFILE_DIRS = | 2332 DOTFILE_DIRS = |
1729 | 2333 |
1730 # The MSCFILE_DIRS tag can be used to specify one or more directories that | 2334 # The MSCFILE_DIRS tag can be used to specify one or more directories that |
1731 # contain msc files that are included in the documentation (see the | 2335 # contain msc files that are included in the documentation (see the \mscfile |
1732 # \mscfile command). | 2336 # command). |
1733 | 2337 |
1734 MSCFILE_DIRS = | 2338 MSCFILE_DIRS = |
1735 | 2339 |
1736 # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of | 2340 # The DIAFILE_DIRS tag can be used to specify one or more directories that |
1737 # nodes that will be shown in the graph. If the number of nodes in a graph | 2341 # contain dia files that are included in the documentation (see the \diafile |
1738 # becomes larger than this value, doxygen will truncate the graph, which is | 2342 # command). |
1739 # visualized by representing a node as a red box. Note that doxygen if the | 2343 |
1740 # number of direct children of the root node in a graph is already larger than | 2344 DIAFILE_DIRS = |
1741 # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note | 2345 |
1742 # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. | 2346 # When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the |
2347 # path where java can find the plantuml.jar file. If left blank, it is assumed | |
2348 # PlantUML is not used or called during a preprocessing step. Doxygen will | |
2349 # generate a warning when it encounters a \startuml command in this case and | |
2350 # will not generate output for the diagram. | |
2351 | |
2352 PLANTUML_JAR_PATH = | |
2353 | |
2354 # When using plantuml, the specified paths are searched for files specified by | |
2355 # the !include statement in a plantuml block. | |
2356 | |
2357 PLANTUML_INCLUDE_PATH = | |
2358 | |
2359 # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes | |
2360 # that will be shown in the graph. If the number of nodes in a graph becomes | |
2361 # larger than this value, doxygen will truncate the graph, which is visualized | |
2362 # by representing a node as a red box. Note that doxygen if the number of direct | |
2363 # children of the root node in a graph is already larger than | |
2364 # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that | |
2365 # the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. | |
2366 # Minimum value: 0, maximum value: 10000, default value: 50. | |
2367 # This tag requires that the tag HAVE_DOT is set to YES. | |
1743 | 2368 |
1744 DOT_GRAPH_MAX_NODES = 50 | 2369 DOT_GRAPH_MAX_NODES = 50 |
1745 | 2370 |
1746 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the | 2371 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs |
1747 # graphs generated by dot. A depth value of 3 means that only nodes reachable | 2372 # generated by dot. A depth value of 3 means that only nodes reachable from the |
1748 # from the root by following a path via at most 3 edges will be shown. Nodes | 2373 # root by following a path via at most 3 edges will be shown. Nodes that lay |
1749 # that lay further from the root node will be omitted. Note that setting this | 2374 # further from the root node will be omitted. Note that setting this option to 1 |
1750 # option to 1 or 2 may greatly reduce the computation time needed for large | 2375 # or 2 may greatly reduce the computation time needed for large code bases. Also |
1751 # code bases. Also note that the size of a graph can be further restricted by | 2376 # note that the size of a graph can be further restricted by |
1752 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. | 2377 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. |
2378 # Minimum value: 0, maximum value: 1000, default value: 0. | |
2379 # This tag requires that the tag HAVE_DOT is set to YES. | |
1753 | 2380 |
1754 MAX_DOT_GRAPH_DEPTH = 0 | 2381 MAX_DOT_GRAPH_DEPTH = 0 |
1755 | 2382 |
1756 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent | 2383 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent |
1757 # background. This is disabled by default, because dot on Windows does not | 2384 # background. This is disabled by default, because dot on Windows does not seem |
1758 # seem to support this out of the box. Warning: Depending on the platform used, | 2385 # to support this out of the box. |
1759 # enabling this option may lead to badly anti-aliased labels on the edges of | 2386 # |
1760 # a graph (i.e. they become hard to read). | 2387 # Warning: Depending on the platform used, enabling this option may lead to |
2388 # badly anti-aliased labels on the edges of a graph (i.e. they become hard to | |
2389 # read). | |
2390 # The default value is: NO. | |
2391 # This tag requires that the tag HAVE_DOT is set to YES. | |
1761 | 2392 |
1762 DOT_TRANSPARENT = NO | 2393 DOT_TRANSPARENT = NO |
1763 | 2394 |
1764 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output | 2395 # Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output |
1765 # files in one run (i.e. multiple -o and -T options on the command line). This | 2396 # files in one run (i.e. multiple -o and -T options on the command line). This |
1766 # makes dot run faster, but since only newer versions of dot (>1.8.10) | 2397 # makes dot run faster, but since only newer versions of dot (>1.8.10) support |
1767 # support this, this feature is disabled by default. | 2398 # this, this feature is disabled by default. |
2399 # The default value is: NO. | |
2400 # This tag requires that the tag HAVE_DOT is set to YES. | |
1768 | 2401 |
1769 DOT_MULTI_TARGETS = YES | 2402 DOT_MULTI_TARGETS = YES |
1770 | 2403 |
1771 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will | 2404 # If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page |
1772 # generate a legend page explaining the meaning of the various boxes and | 2405 # explaining the meaning of the various boxes and arrows in the dot generated |
1773 # arrows in the dot generated graphs. | 2406 # graphs. |
2407 # The default value is: YES. | |
2408 # This tag requires that the tag HAVE_DOT is set to YES. | |
1774 | 2409 |
1775 GENERATE_LEGEND = YES | 2410 GENERATE_LEGEND = YES |
1776 | 2411 |
1777 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will | 2412 # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot |
1778 # remove the intermediate dot files that are used to generate | 2413 # files that are used to generate the various graphs. |
1779 # the various graphs. | 2414 # The default value is: YES. |
2415 # This tag requires that the tag HAVE_DOT is set to YES. | |
1780 | 2416 |
1781 DOT_CLEANUP = YES | 2417 DOT_CLEANUP = YES |