command: replace printf printf_P
[protos/xbee-avr.git] / Doxygen.conf
1 # Doxyfile 1.6.2\r
2 \r
3 # This file describes the settings to be used by the documentation system\r
4 # doxygen (www.doxygen.org) for a project\r
5 #\r
6 # All text after a hash (#) is considered a comment and will be ignored\r
7 # The format is:\r
8 #       TAG = value [value, ...]\r
9 # For lists items can also be appended using:\r
10 #       TAG += value [value, ...]\r
11 # Values that contain spaces should be placed between quotes (" ")\r
12 \r
13 #---------------------------------------------------------------------------\r
14 # Project related configuration options\r
15 #---------------------------------------------------------------------------\r
16 \r
17 # This tag specifies the encoding used for all characters in the config file\r
18 # that follow. The default is UTF-8 which is also the encoding used for all\r
19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the\r
20 # iconv built into libc) for the transcoding. See\r
21 # http://www.gnu.org/software/libiconv for the list of possible encodings.\r
22 \r
23 DOXYFILE_ENCODING      = UTF-8\r
24 \r
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded\r
26 # by quotes) that should identify the project.\r
27 \r
28 PROJECT_NAME           = "LUFA Library - Dual Virtual Serial Device Demo"\r
29 \r
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.\r
31 # This could be handy for archiving the generated documentation or\r
32 # if some version control system is used.\r
33 \r
34 PROJECT_NUMBER         = 0.0.0\r
35 \r
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)\r
37 # base path where the generated documentation will be put.\r
38 # If a relative path is entered, it will be relative to the location\r
39 # where doxygen was started. If left blank the current directory will be used.\r
40 \r
41 OUTPUT_DIRECTORY       = ./Documentation/\r
42 \r
43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create\r
44 # 4096 sub-directories (in 2 levels) under the output directory of each output\r
45 # format and will distribute the generated files over these directories.\r
46 # Enabling this option can be useful when feeding doxygen a huge amount of\r
47 # source files, where putting all generated files in the same directory would\r
48 # otherwise cause performance problems for the file system.\r
49 \r
50 CREATE_SUBDIRS         = NO\r
51 \r
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all\r
53 # documentation generated by doxygen is written. Doxygen will use this\r
54 # information to generate all constant output in the proper language.\r
55 # The default language is English, other supported languages are:\r
56 # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,\r
57 # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German,\r
58 # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English\r
59 # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian,\r
60 # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak,\r
61 # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.\r
62 \r
63 OUTPUT_LANGUAGE        = English\r
64 \r
65 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will\r
66 # include brief member descriptions after the members that are listed in\r
67 # the file and class documentation (similar to JavaDoc).\r
68 # Set to NO to disable this.\r
69 \r
70 BRIEF_MEMBER_DESC      = YES\r
71 \r
72 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend\r
73 # the brief description of a member or function before the detailed description.\r
74 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the\r
75 # brief descriptions will be completely suppressed.\r
76 \r
77 REPEAT_BRIEF           = YES\r
78 \r
79 # This tag implements a quasi-intelligent brief description abbreviator\r
80 # that is used to form the text in various listings. Each string\r
81 # in this list, if found as the leading text of the brief description, will be\r
82 # stripped from the text and the result after processing the whole list, is\r
83 # used as the annotated text. Otherwise, the brief description is used as-is.\r
84 # If left blank, the following values are used ("$name" is automatically\r
85 # replaced with the name of the entity): "The $name class" "The $name widget"\r
86 # "The $name file" "is" "provides" "specifies" "contains"\r
87 # "represents" "a" "an" "the"\r
88 \r
89 ABBREVIATE_BRIEF       = "The $name class" \\r
90                          "The $name widget" \\r
91                          "The $name file" \\r
92                          is \\r
93                          provides \\r
94                          specifies \\r
95                          contains \\r
96                          represents \\r
97                          a \\r
98                          an \\r
99                          the\r
100 \r
101 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then\r
102 # Doxygen will generate a detailed section even if there is only a brief\r
103 # description.\r
104 \r
105 ALWAYS_DETAILED_SEC    = NO\r
106 \r
107 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all\r
108 # inherited members of a class in the documentation of that class as if those\r
109 # members were ordinary class members. Constructors, destructors and assignment\r
110 # operators of the base classes will not be shown.\r
111 \r
112 INLINE_INHERITED_MEMB  = NO\r
113 \r
114 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full\r
115 # path before files name in the file list and in the header files. If set\r
116 # to NO the shortest path that makes the file name unique will be used.\r
117 \r
118 FULL_PATH_NAMES        = YES\r
119 \r
120 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag\r
121 # can be used to strip a user-defined part of the path. Stripping is\r
122 # only done if one of the specified strings matches the left-hand part of\r
123 # the path. The tag can be used to show relative paths in the file list.\r
124 # If left blank the directory from which doxygen is run is used as the\r
125 # path to strip.\r
126 \r
127 STRIP_FROM_PATH        =\r
128 \r
129 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of\r
130 # the path mentioned in the documentation of a class, which tells\r
131 # the reader which header file to include in order to use a class.\r
132 # If left blank only the name of the header file containing the class\r
133 # definition is used. Otherwise one should specify the include paths that\r
134 # are normally passed to the compiler using the -I flag.\r
135 \r
136 STRIP_FROM_INC_PATH    =\r
137 \r
138 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter\r
139 # (but less readable) file names. This can be useful is your file systems\r
140 # doesn't support long names like on DOS, Mac, or CD-ROM.\r
141 \r
142 SHORT_NAMES            = YES\r
143 \r
144 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen\r
145 # will interpret the first line (until the first dot) of a JavaDoc-style\r
146 # comment as the brief description. If set to NO, the JavaDoc\r
147 # comments will behave just like regular Qt-style comments\r
148 # (thus requiring an explicit @brief command for a brief description.)\r
149 \r
150 JAVADOC_AUTOBRIEF      = NO\r
151 \r
152 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will\r
153 # interpret the first line (until the first dot) of a Qt-style\r
154 # comment as the brief description. If set to NO, the comments\r
155 # will behave just like regular Qt-style comments (thus requiring\r
156 # an explicit \brief command for a brief description.)\r
157 \r
158 QT_AUTOBRIEF           = NO\r
159 \r
160 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen\r
161 # treat a multi-line C++ special comment block (i.e. a block of //! or ///\r
162 # comments) as a brief description. This used to be the default behaviour.\r
163 # The new default is to treat a multi-line C++ comment block as a detailed\r
164 # description. Set this tag to YES if you prefer the old behaviour instead.\r
165 \r
166 MULTILINE_CPP_IS_BRIEF = NO\r
167 \r
168 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented\r
169 # member inherits the documentation from any documented member that it\r
170 # re-implements.\r
171 \r
172 INHERIT_DOCS           = YES\r
173 \r
174 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce\r
175 # a new page for each member. If set to NO, the documentation of a member will\r
176 # be part of the file/class/namespace that contains it.\r
177 \r
178 SEPARATE_MEMBER_PAGES  = NO\r
179 \r
180 # The TAB_SIZE tag can be used to set the number of spaces in a tab.\r
181 # Doxygen uses this value to replace tabs by spaces in code fragments.\r
182 \r
183 TAB_SIZE               = 4\r
184 \r
185 # This tag can be used to specify a number of aliases that acts\r
186 # as commands in the documentation. An alias has the form "name=value".\r
187 # For example adding "sideeffect=\par Side Effects:\n" will allow you to\r
188 # put the command \sideeffect (or @sideeffect) in the documentation, which\r
189 # will result in a user-defined paragraph with heading "Side Effects:".\r
190 # You can put \n's in the value part of an alias to insert newlines.\r
191 \r
192 ALIASES                =\r
193 \r
194 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C\r
195 # sources only. Doxygen will then generate output that is more tailored for C.\r
196 # For instance, some of the names that are used will be different. The list\r
197 # of all members will be omitted, etc.\r
198 \r
199 OPTIMIZE_OUTPUT_FOR_C  = YES\r
200 \r
201 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java\r
202 # sources only. Doxygen will then generate output that is more tailored for\r
203 # Java. For instance, namespaces will be presented as packages, qualified\r
204 # scopes will look different, etc.\r
205 \r
206 OPTIMIZE_OUTPUT_JAVA   = NO\r
207 \r
208 # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran\r
209 # sources only. Doxygen will then generate output that is more tailored for\r
210 # Fortran.\r
211 \r
212 OPTIMIZE_FOR_FORTRAN   = NO\r
213 \r
214 # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL\r
215 # sources. Doxygen will then generate output that is tailored for\r
216 # VHDL.\r
217 \r
218 OPTIMIZE_OUTPUT_VHDL   = NO\r
219 \r
220 # Doxygen selects the parser to use depending on the extension of the files it parses.\r
221 # With this tag you can assign which parser to use for a given extension.\r
222 # Doxygen has a built-in mapping, but you can override or extend it using this tag.\r
223 # The format is ext=language, where ext is a file extension, and language is one of\r
224 # the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP,\r
225 # Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat\r
226 # .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran),\r
227 # use: inc=Fortran f=C. Note that for custom extensions you also need to set FILE_PATTERNS otherwise the files are not read by doxygen.\r
228 \r
229 EXTENSION_MAPPING      =\r
230 \r
231 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want\r
232 # to include (a tag file for) the STL sources as input, then you should\r
233 # set this tag to YES in order to let doxygen match functions declarations and\r
234 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s.\r
235 # func(std::string) {}). This also make the inheritance and collaboration\r
236 # diagrams that involve STL classes more complete and accurate.\r
237 \r
238 BUILTIN_STL_SUPPORT    = NO\r
239 \r
240 # If you use Microsoft's C++/CLI language, you should set this option to YES to\r
241 # enable parsing support.\r
242 \r
243 CPP_CLI_SUPPORT        = NO\r
244 \r
245 # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.\r
246 # Doxygen will parse them like normal C++ but will assume all classes use public\r
247 # instead of private inheritance when no explicit protection keyword is present.\r
248 \r
249 SIP_SUPPORT            = NO\r
250 \r
251 # For Microsoft's IDL there are propget and propput attributes to indicate getter\r
252 # and setter methods for a property. Setting this option to YES (the default)\r
253 # will make doxygen to replace the get and set methods by a property in the\r
254 # documentation. This will only work if the methods are indeed getting or\r
255 # setting a simple type. If this is not the case, or you want to show the\r
256 # methods anyway, you should set this option to NO.\r
257 \r
258 IDL_PROPERTY_SUPPORT   = YES\r
259 \r
260 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC\r
261 # tag is set to YES, then doxygen will reuse the documentation of the first\r
262 # member in the group (if any) for the other members of the group. By default\r
263 # all members of a group must be documented explicitly.\r
264 \r
265 DISTRIBUTE_GROUP_DOC   = NO\r
266 \r
267 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of\r
268 # the same type (for instance a group of public functions) to be put as a\r
269 # subgroup of that type (e.g. under the Public Functions section). Set it to\r
270 # NO to prevent subgrouping. Alternatively, this can be done per class using\r
271 # the \nosubgrouping command.\r
272 \r
273 SUBGROUPING            = YES\r
274 \r
275 # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum\r
276 # is documented as struct, union, or enum with the name of the typedef. So\r
277 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct\r
278 # with name TypeT. When disabled the typedef will appear as a member of a file,\r
279 # namespace, or class. And the struct will be named TypeS. This can typically\r
280 # be useful for C code in case the coding convention dictates that all compound\r
281 # types are typedef'ed and only the typedef is referenced, never the tag name.\r
282 \r
283 TYPEDEF_HIDES_STRUCT   = NO\r
284 \r
285 # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to\r
286 # determine which symbols to keep in memory and which to flush to disk.\r
287 # When the cache is full, less often used symbols will be written to disk.\r
288 # For small to medium size projects (<1000 input files) the default value is\r
289 # probably good enough. For larger projects a too small cache size can cause\r
290 # doxygen to be busy swapping symbols to and from disk most of the time\r
291 # causing a significant performance penality.\r
292 # If the system has enough physical memory increasing the cache will improve the\r
293 # performance by keeping more symbols in memory. Note that the value works on\r
294 # a logarithmic scale so increasing the size by one will rougly double the\r
295 # memory usage. The cache size is given by this formula:\r
296 # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,\r
297 # corresponding to a cache size of 2^16 = 65536 symbols\r
298 \r
299 SYMBOL_CACHE_SIZE      = 0\r
300 \r
301 #---------------------------------------------------------------------------\r
302 # Build related configuration options\r
303 #---------------------------------------------------------------------------\r
304 \r
305 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in\r
306 # documentation are documented, even if no documentation was available.\r
307 # Private class members and static file members will be hidden unless\r
308 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES\r
309 \r
310 EXTRACT_ALL            = YES\r
311 \r
312 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class\r
313 # will be included in the documentation.\r
314 \r
315 EXTRACT_PRIVATE        = YES\r
316 \r
317 # If the EXTRACT_STATIC tag is set to YES all static members of a file\r
318 # will be included in the documentation.\r
319 \r
320 EXTRACT_STATIC         = YES\r
321 \r
322 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)\r
323 # defined locally in source files will be included in the documentation.\r
324 # If set to NO only classes defined in header files are included.\r
325 \r
326 EXTRACT_LOCAL_CLASSES  = YES\r
327 \r
328 # This flag is only useful for Objective-C code. When set to YES local\r
329 # methods, which are defined in the implementation section but not in\r
330 # the interface are included in the documentation.\r
331 # If set to NO (the default) only methods in the interface are included.\r
332 \r
333 EXTRACT_LOCAL_METHODS  = NO\r
334 \r
335 # If this flag is set to YES, the members of anonymous namespaces will be\r
336 # extracted and appear in the documentation as a namespace called\r
337 # 'anonymous_namespace{file}', where file will be replaced with the base\r
338 # name of the file that contains the anonymous namespace. By default\r
339 # anonymous namespace are hidden.\r
340 \r
341 EXTRACT_ANON_NSPACES   = NO\r
342 \r
343 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all\r
344 # undocumented members of documented classes, files or namespaces.\r
345 # If set to NO (the default) these members will be included in the\r
346 # various overviews, but no documentation section is generated.\r
347 # This option has no effect if EXTRACT_ALL is enabled.\r
348 \r
349 HIDE_UNDOC_MEMBERS     = NO\r
350 \r
351 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all\r
352 # undocumented classes that are normally visible in the class hierarchy.\r
353 # If set to NO (the default) these classes will be included in the various\r
354 # overviews. This option has no effect if EXTRACT_ALL is enabled.\r
355 \r
356 HIDE_UNDOC_CLASSES     = NO\r
357 \r
358 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all\r
359 # friend (class|struct|union) declarations.\r
360 # If set to NO (the default) these declarations will be included in the\r
361 # documentation.\r
362 \r
363 HIDE_FRIEND_COMPOUNDS  = NO\r
364 \r
365 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any\r
366 # documentation blocks found inside the body of a function.\r
367 # If set to NO (the default) these blocks will be appended to the\r
368 # function's detailed documentation block.\r
369 \r
370 HIDE_IN_BODY_DOCS      = NO\r
371 \r
372 # The INTERNAL_DOCS tag determines if documentation\r
373 # that is typed after a \internal command is included. If the tag is set\r
374 # to NO (the default) then the documentation will be excluded.\r
375 # Set it to YES to include the internal documentation.\r
376 \r
377 INTERNAL_DOCS          = NO\r
378 \r
379 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate\r
380 # file names in lower-case letters. If set to YES upper-case letters are also\r
381 # allowed. This is useful if you have classes or files whose names only differ\r
382 # in case and if your file system supports case sensitive file names. Windows\r
383 # and Mac users are advised to set this option to NO.\r
384 \r
385 CASE_SENSE_NAMES       = NO\r
386 \r
387 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen\r
388 # will show members with their full class and namespace scopes in the\r
389 # documentation. If set to YES the scope will be hidden.\r
390 \r
391 HIDE_SCOPE_NAMES       = NO\r
392 \r
393 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen\r
394 # will put a list of the files that are included by a file in the documentation\r
395 # of that file.\r
396 \r
397 SHOW_INCLUDE_FILES     = YES\r
398 \r
399 # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen\r
400 # will list include files with double quotes in the documentation\r
401 # rather than with sharp brackets.\r
402 \r
403 FORCE_LOCAL_INCLUDES   = NO\r
404 \r
405 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]\r
406 # is inserted in the documentation for inline members.\r
407 \r
408 INLINE_INFO            = YES\r
409 \r
410 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen\r
411 # will sort the (detailed) documentation of file and class members\r
412 # alphabetically by member name. If set to NO the members will appear in\r
413 # declaration order.\r
414 \r
415 SORT_MEMBER_DOCS       = YES\r
416 \r
417 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the\r
418 # brief documentation of file, namespace and class members alphabetically\r
419 # by member name. If set to NO (the default) the members will appear in\r
420 # declaration order.\r
421 \r
422 SORT_BRIEF_DOCS        = NO\r
423 \r
424 # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the (brief and detailed) documentation of class members so that constructors and destructors are listed first. If set to NO (the default) the constructors will appear in the respective orders defined by SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.\r
425 \r
426 SORT_MEMBERS_CTORS_1ST = NO\r
427 \r
428 # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the\r
429 # hierarchy of group names into alphabetical order. If set to NO (the default)\r
430 # the group names will appear in their defined order.\r
431 \r
432 SORT_GROUP_NAMES       = NO\r
433 \r
434 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be\r
435 # sorted by fully-qualified names, including namespaces. If set to\r
436 # NO (the default), the class list will be sorted only by class name,\r
437 # not including the namespace part.\r
438 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.\r
439 # Note: This option applies only to the class list, not to the\r
440 # alphabetical list.\r
441 \r
442 SORT_BY_SCOPE_NAME     = NO\r
443 \r
444 # The GENERATE_TODOLIST tag can be used to enable (YES) or\r
445 # disable (NO) the todo list. This list is created by putting \todo\r
446 # commands in the documentation.\r
447 \r
448 GENERATE_TODOLIST      = NO\r
449 \r
450 # The GENERATE_TESTLIST tag can be used to enable (YES) or\r
451 # disable (NO) the test list. This list is created by putting \test\r
452 # commands in the documentation.\r
453 \r
454 GENERATE_TESTLIST      = NO\r
455 \r
456 # The GENERATE_BUGLIST tag can be used to enable (YES) or\r
457 # disable (NO) the bug list. This list is created by putting \bug\r
458 # commands in the documentation.\r
459 \r
460 GENERATE_BUGLIST       = NO\r
461 \r
462 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or\r
463 # disable (NO) the deprecated list. This list is created by putting\r
464 # \deprecated commands in the documentation.\r
465 \r
466 GENERATE_DEPRECATEDLIST= YES\r
467 \r
468 # The ENABLED_SECTIONS tag can be used to enable conditional\r
469 # documentation sections, marked by \if sectionname ... \endif.\r
470 \r
471 ENABLED_SECTIONS       =\r
472 \r
473 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines\r
474 # the initial value of a variable or define consists of for it to appear in\r
475 # the documentation. If the initializer consists of more lines than specified\r
476 # here it will be hidden. Use a value of 0 to hide initializers completely.\r
477 # The appearance of the initializer of individual variables and defines in the\r
478 # documentation can be controlled using \showinitializer or \hideinitializer\r
479 # command in the documentation regardless of this setting.\r
480 \r
481 MAX_INITIALIZER_LINES  = 30\r
482 \r
483 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated\r
484 # at the bottom of the documentation of classes and structs. If set to YES the\r
485 # list will mention the files that were used to generate the documentation.\r
486 \r
487 SHOW_USED_FILES        = YES\r
488 \r
489 # If the sources in your project are distributed over multiple directories\r
490 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy\r
491 # in the documentation. The default is NO.\r
492 \r
493 SHOW_DIRECTORIES       = YES\r
494 \r
495 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.\r
496 # This will remove the Files entry from the Quick Index and from the\r
497 # Folder Tree View (if specified). The default is YES.\r
498 \r
499 SHOW_FILES             = YES\r
500 \r
501 # Set the SHOW_NAMESPACES tag to NO to disable the generation of the\r
502 # Namespaces page.\r
503 # This will remove the Namespaces entry from the Quick Index\r
504 # and from the Folder Tree View (if specified). The default is YES.\r
505 \r
506 SHOW_NAMESPACES        = YES\r
507 \r
508 # The FILE_VERSION_FILTER tag can be used to specify a program or script that\r
509 # doxygen should invoke to get the current version for each file (typically from\r
510 # the version control system). Doxygen will invoke the program by executing (via\r
511 # popen()) the command <command> <input-file>, where <command> is the value of\r
512 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file\r
513 # provided by doxygen. Whatever the program writes to standard output\r
514 # is used as the file version. See the manual for examples.\r
515 \r
516 FILE_VERSION_FILTER    =\r
517 \r
518 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by\r
519 # doxygen. The layout file controls the global structure of the generated output files\r
520 # in an output format independent way. The create the layout file that represents\r
521 # doxygen's defaults, run doxygen with the -l option. You can optionally specify a\r
522 # file name after the option, if omitted DoxygenLayout.xml will be used as the name\r
523 # of the layout file.\r
524 \r
525 LAYOUT_FILE            =\r
526 \r
527 #---------------------------------------------------------------------------\r
528 # configuration options related to warning and progress messages\r
529 #---------------------------------------------------------------------------\r
530 \r
531 # The QUIET tag can be used to turn on/off the messages that are generated\r
532 # by doxygen. Possible values are YES and NO. If left blank NO is used.\r
533 \r
534 QUIET                  = YES\r
535 \r
536 # The WARNINGS tag can be used to turn on/off the warning messages that are\r
537 # generated by doxygen. Possible values are YES and NO. If left blank\r
538 # NO is used.\r
539 \r
540 WARNINGS               = YES\r
541 \r
542 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings\r
543 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will\r
544 # automatically be disabled.\r
545 \r
546 WARN_IF_UNDOCUMENTED   = YES\r
547 \r
548 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for\r
549 # potential errors in the documentation, such as not documenting some\r
550 # parameters in a documented function, or documenting parameters that\r
551 # don't exist or using markup commands wrongly.\r
552 \r
553 WARN_IF_DOC_ERROR      = YES\r
554 \r
555 # This WARN_NO_PARAMDOC option can be abled to get warnings for\r
556 # functions that are documented, but have no documentation for their parameters\r
557 # or return value. If set to NO (the default) doxygen will only warn about\r
558 # wrong or incomplete parameter documentation, but not about the absence of\r
559 # documentation.\r
560 \r
561 WARN_NO_PARAMDOC       = YES\r
562 \r
563 # The WARN_FORMAT tag determines the format of the warning messages that\r
564 # doxygen can produce. The string should contain the $file, $line, and $text\r
565 # tags, which will be replaced by the file and line number from which the\r
566 # warning originated and the warning text. Optionally the format may contain\r
567 # $version, which will be replaced by the version of the file (if it could\r
568 # be obtained via FILE_VERSION_FILTER)\r
569 \r
570 WARN_FORMAT            = "$file:$line: $text"\r
571 \r
572 # The WARN_LOGFILE tag can be used to specify a file to which warning\r
573 # and error messages should be written. If left blank the output is written\r
574 # to stderr.\r
575 \r
576 WARN_LOGFILE           =\r
577 \r
578 #---------------------------------------------------------------------------\r
579 # configuration options related to the input files\r
580 #---------------------------------------------------------------------------\r
581 \r
582 # The INPUT tag can be used to specify the files and/or directories that contain\r
583 # documented source files. You may enter file names like "myfile.cpp" or\r
584 # directories like "/usr/src/myproject". Separate the files or directories\r
585 # with spaces.\r
586 \r
587 INPUT                  = ./\r
588 \r
589 # This tag can be used to specify the character encoding of the source files\r
590 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is\r
591 # also the default input encoding. Doxygen uses libiconv (or the iconv built\r
592 # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for\r
593 # the list of possible encodings.\r
594 \r
595 INPUT_ENCODING         = UTF-8\r
596 \r
597 # If the value of the INPUT tag contains directories, you can use the\r
598 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp\r
599 # and *.h) to filter out the source-files in the directories. If left\r
600 # blank the following patterns are tested:\r
601 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx\r
602 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90\r
603 \r
604 FILE_PATTERNS          = *.h \\r
605                          *.c \\r
606                          *.txt\r
607 \r
608 # The RECURSIVE tag can be used to turn specify whether or not subdirectories\r
609 # should be searched for input files as well. Possible values are YES and NO.\r
610 # If left blank NO is used.\r
611 \r
612 RECURSIVE              = YES\r
613 \r
614 # The EXCLUDE tag can be used to specify files and/or directories that should\r
615 # excluded from the INPUT source files. This way you can easily exclude a\r
616 # subdirectory from a directory tree whose root is specified with the INPUT tag.\r
617 \r
618 EXCLUDE                = Documentation/\r
619 \r
620 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or\r
621 # directories that are symbolic links (a Unix filesystem feature) are excluded\r
622 # from the input.\r
623 \r
624 EXCLUDE_SYMLINKS       = NO\r
625 \r
626 # If the value of the INPUT tag contains directories, you can use the\r
627 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude\r
628 # certain files from those directories. Note that the wildcards are matched\r
629 # against the file with absolute path, so to exclude all test directories\r
630 # for example use the pattern */test/*\r
631 \r
632 EXCLUDE_PATTERNS       = \r
633 \r
634 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names\r
635 # (namespaces, classes, functions, etc.) that should be excluded from the\r
636 # output. The symbol name can be a fully qualified name, a word, or if the\r
637 # wildcard * is used, a substring. Examples: ANamespace, AClass,\r
638 # AClass::ANamespace, ANamespace::*Test\r
639 \r
640 EXCLUDE_SYMBOLS        = __* \\r
641                          INCLUDE_FROM_*\r
642 \r
643 # The EXAMPLE_PATH tag can be used to specify one or more files or\r
644 # directories that contain example code fragments that are included (see\r
645 # the \include command).\r
646 \r
647 EXAMPLE_PATH           =\r
648 \r
649 # If the value of the EXAMPLE_PATH tag contains directories, you can use the\r
650 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp\r
651 # and *.h) to filter out the source-files in the directories. If left\r
652 # blank all files are included.\r
653 \r
654 EXAMPLE_PATTERNS       = *\r
655 \r
656 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be\r
657 # searched for input files to be used with the \include or \dontinclude\r
658 # commands irrespective of the value of the RECURSIVE tag.\r
659 # Possible values are YES and NO. If left blank NO is used.\r
660 \r
661 EXAMPLE_RECURSIVE      = NO\r
662 \r
663 # The IMAGE_PATH tag can be used to specify one or more files or\r
664 # directories that contain image that are included in the documentation (see\r
665 # the \image command).\r
666 \r
667 IMAGE_PATH             =\r
668 \r
669 # The INPUT_FILTER tag can be used to specify a program that doxygen should\r
670 # invoke to filter for each input file. Doxygen will invoke the filter program\r
671 # by executing (via popen()) the command <filter> <input-file>, where <filter>\r
672 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an\r
673 # input file. Doxygen will then use the output that the filter program writes\r
674 # to standard output.\r
675 # If FILTER_PATTERNS is specified, this tag will be\r
676 # ignored.\r
677 \r
678 INPUT_FILTER           =\r
679 \r
680 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern\r
681 # basis.\r
682 # Doxygen will compare the file name with each pattern and apply the\r
683 # filter if there is a match.\r
684 # The filters are a list of the form:\r
685 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further\r
686 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER\r
687 # is applied to all files.\r
688 \r
689 FILTER_PATTERNS        =\r
690 \r
691 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using\r
692 # INPUT_FILTER) will be used to filter the input files when producing source\r
693 # files to browse (i.e. when SOURCE_BROWSER is set to YES).\r
694 \r
695 FILTER_SOURCE_FILES    = NO\r
696 \r
697 #---------------------------------------------------------------------------\r
698 # configuration options related to source browsing\r
699 #---------------------------------------------------------------------------\r
700 \r
701 # If the SOURCE_BROWSER tag is set to YES then a list of source files will\r
702 # be generated. Documented entities will be cross-referenced with these sources.\r
703 # Note: To get rid of all source code in the generated output, make sure also\r
704 # VERBATIM_HEADERS is set to NO.\r
705 \r
706 SOURCE_BROWSER         = NO\r
707 \r
708 # Setting the INLINE_SOURCES tag to YES will include the body\r
709 # of functions and classes directly in the documentation.\r
710 \r
711 INLINE_SOURCES         = NO\r
712 \r
713 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct\r
714 # doxygen to hide any special comment blocks from generated source code\r
715 # fragments. Normal C and C++ comments will always remain visible.\r
716 \r
717 STRIP_CODE_COMMENTS    = YES\r
718 \r
719 # If the REFERENCED_BY_RELATION tag is set to YES\r
720 # then for each documented function all documented\r
721 # functions referencing it will be listed.\r
722 \r
723 REFERENCED_BY_RELATION = NO\r
724 \r
725 # If the REFERENCES_RELATION tag is set to YES\r
726 # then for each documented function all documented entities\r
727 # called/used by that function will be listed.\r
728 \r
729 REFERENCES_RELATION    = NO\r
730 \r
731 # If the REFERENCES_LINK_SOURCE tag is set to YES (the default)\r
732 # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from\r
733 # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will\r
734 # link to the source code.\r
735 # Otherwise they will link to the documentation.\r
736 \r
737 REFERENCES_LINK_SOURCE = NO\r
738 \r
739 # If the USE_HTAGS tag is set to YES then the references to source code\r
740 # will point to the HTML generated by the htags(1) tool instead of doxygen\r
741 # built-in source browser. The htags tool is part of GNU's global source\r
742 # tagging system (see http://www.gnu.org/software/global/global.html). You\r
743 # will need version 4.8.6 or higher.\r
744 \r
745 USE_HTAGS              = NO\r
746 \r
747 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen\r
748 # will generate a verbatim copy of the header file for each class for\r
749 # which an include is specified. Set to NO to disable this.\r
750 \r
751 VERBATIM_HEADERS       = NO\r
752 \r
753 #---------------------------------------------------------------------------\r
754 # configuration options related to the alphabetical class index\r
755 #---------------------------------------------------------------------------\r
756 \r
757 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index\r
758 # of all compounds will be generated. Enable this if the project\r
759 # contains a lot of classes, structs, unions or interfaces.\r
760 \r
761 ALPHABETICAL_INDEX     = YES\r
762 \r
763 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then\r
764 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns\r
765 # in which this list will be split (can be a number in the range [1..20])\r
766 \r
767 COLS_IN_ALPHA_INDEX    = 5\r
768 \r
769 # In case all classes in a project start with a common prefix, all\r
770 # classes will be put under the same header in the alphabetical index.\r
771 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that\r
772 # should be ignored while generating the index headers.\r
773 \r
774 IGNORE_PREFIX          =\r
775 \r
776 #---------------------------------------------------------------------------\r
777 # configuration options related to the HTML output\r
778 #---------------------------------------------------------------------------\r
779 \r
780 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will\r
781 # generate HTML output.\r
782 \r
783 GENERATE_HTML          = YES\r
784 \r
785 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.\r
786 # If a relative path is entered the value of OUTPUT_DIRECTORY will be\r
787 # put in front of it. If left blank `html' will be used as the default path.\r
788 \r
789 HTML_OUTPUT            = html\r
790 \r
791 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for\r
792 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank\r
793 # doxygen will generate files with .html extension.\r
794 \r
795 HTML_FILE_EXTENSION    = .html\r
796 \r
797 # The HTML_HEADER tag can be used to specify a personal HTML header for\r
798 # each generated HTML page. If it is left blank doxygen will generate a\r
799 # standard header.\r
800 \r
801 HTML_HEADER            =\r
802 \r
803 # The HTML_FOOTER tag can be used to specify a personal HTML footer for\r
804 # each generated HTML page. If it is left blank doxygen will generate a\r
805 # standard footer.\r
806 \r
807 HTML_FOOTER            =\r
808 \r
809 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading\r
810 # style sheet that is used by each HTML page. It can be used to\r
811 # fine-tune the look of the HTML output. If the tag is left blank doxygen\r
812 # will generate a default style sheet. Note that doxygen will try to copy\r
813 # the style sheet file to the HTML output directory, so don't put your own\r
814 # stylesheet in the HTML output directory as well, or it will be erased!\r
815 \r
816 HTML_STYLESHEET        =\r
817 \r
818 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML\r
819 # page will contain the date and time when the page was generated. Setting\r
820 # this to NO can help when comparing the output of multiple runs.\r
821 \r
822 HTML_TIMESTAMP         = NO\r
823 \r
824 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,\r
825 # files or namespaces will be aligned in HTML using tables. If set to\r
826 # NO a bullet list will be used.\r
827 \r
828 HTML_ALIGN_MEMBERS     = YES\r
829 \r
830 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML\r
831 # documentation will contain sections that can be hidden and shown after the\r
832 # page has loaded. For this to work a browser that supports\r
833 # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox\r
834 # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).\r
835 \r
836 HTML_DYNAMIC_SECTIONS  = YES\r
837 \r
838 # If the GENERATE_DOCSET tag is set to YES, additional index files\r
839 # will be generated that can be used as input for Apple's Xcode 3\r
840 # integrated development environment, introduced with OSX 10.5 (Leopard).\r
841 # To create a documentation set, doxygen will generate a Makefile in the\r
842 # HTML output directory. Running make will produce the docset in that\r
843 # directory and running "make install" will install the docset in\r
844 # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find\r
845 # it at startup.\r
846 # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information.\r
847 \r
848 GENERATE_DOCSET        = NO\r
849 \r
850 # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the\r
851 # feed. A documentation feed provides an umbrella under which multiple\r
852 # documentation sets from a single provider (such as a company or product suite)\r
853 # can be grouped.\r
854 \r
855 DOCSET_FEEDNAME        = "Doxygen generated docs"\r
856 \r
857 # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that\r
858 # should uniquely identify the documentation set bundle. This should be a\r
859 # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen\r
860 # will append .docset to the name.\r
861 \r
862 DOCSET_BUNDLE_ID       = org.doxygen.Project\r
863 \r
864 # If the GENERATE_HTMLHELP tag is set to YES, additional index files\r
865 # will be generated that can be used as input for tools like the\r
866 # Microsoft HTML help workshop to generate a compiled HTML help file (.chm)\r
867 # of the generated HTML documentation.\r
868 \r
869 GENERATE_HTMLHELP      = NO\r
870 \r
871 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can\r
872 # be used to specify the file name of the resulting .chm file. You\r
873 # can add a path in front of the file if the result should not be\r
874 # written to the html output directory.\r
875 \r
876 CHM_FILE               =\r
877 \r
878 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can\r
879 # be used to specify the location (absolute path including file name) of\r
880 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run\r
881 # the HTML help compiler on the generated index.hhp.\r
882 \r
883 HHC_LOCATION           =\r
884 \r
885 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag\r
886 # controls if a separate .chi index file is generated (YES) or that\r
887 # it should be included in the master .chm file (NO).\r
888 \r
889 GENERATE_CHI           = NO\r
890 \r
891 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING\r
892 # is used to encode HtmlHelp index (hhk), content (hhc) and project file\r
893 # content.\r
894 \r
895 CHM_INDEX_ENCODING     =\r
896 \r
897 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag\r
898 # controls whether a binary table of contents is generated (YES) or a\r
899 # normal table of contents (NO) in the .chm file.\r
900 \r
901 BINARY_TOC             = NO\r
902 \r
903 # The TOC_EXPAND flag can be set to YES to add extra items for group members\r
904 # to the contents of the HTML help documentation and to the tree view.\r
905 \r
906 TOC_EXPAND             = YES\r
907 \r
908 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER\r
909 # are set, an additional index file will be generated that can be used as input for\r
910 # Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated\r
911 # HTML documentation.\r
912 \r
913 GENERATE_QHP           = NO\r
914 \r
915 # If the QHG_LOCATION tag is specified, the QCH_FILE tag can\r
916 # be used to specify the file name of the resulting .qch file.\r
917 # The path specified is relative to the HTML output folder.\r
918 \r
919 QCH_FILE               =\r
920 \r
921 # The QHP_NAMESPACE tag specifies the namespace to use when generating\r
922 # Qt Help Project output. For more information please see\r
923 # http://doc.trolltech.com/qthelpproject.html#namespace\r
924 \r
925 QHP_NAMESPACE          = org.doxygen.Project\r
926 \r
927 # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating\r
928 # Qt Help Project output. For more information please see\r
929 # http://doc.trolltech.com/qthelpproject.html#virtual-folders\r
930 \r
931 QHP_VIRTUAL_FOLDER     = doc\r
932 \r
933 # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add.\r
934 # For more information please see\r
935 # http://doc.trolltech.com/qthelpproject.html#custom-filters\r
936 \r
937 QHP_CUST_FILTER_NAME   =\r
938 \r
939 # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see\r
940 # <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters">Qt Help Project / Custom Filters</a>.\r
941 \r
942 QHP_CUST_FILTER_ATTRS  =\r
943 \r
944 # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this project's\r
945 # filter section matches.\r
946 # <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes">Qt Help Project / Filter Attributes</a>.\r
947 \r
948 QHP_SECT_FILTER_ATTRS  =\r
949 \r
950 # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can\r
951 # be used to specify the location of Qt's qhelpgenerator.\r
952 # If non-empty doxygen will try to run qhelpgenerator on the generated\r
953 # .qhp file.\r
954 \r
955 QHG_LOCATION           =\r
956 \r
957 # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files\r
958 #  will be generated, which together with the HTML files, form an Eclipse help\r
959 #  plugin. To install this plugin and make it available under the help contents\r
960 # menu in Eclipse, the contents of the directory containing the HTML and XML\r
961 # files needs to be copied into the plugins directory of eclipse. The name of\r
962 # the directory within the plugins directory should be the same as\r
963 # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before the help appears.\r
964 \r
965 GENERATE_ECLIPSEHELP   = NO\r
966 \r
967 # A unique identifier for the eclipse help plugin. When installing the plugin\r
968 # the directory name containing the HTML and XML files should also have\r
969 # this name.\r
970 \r
971 ECLIPSE_DOC_ID         = org.doxygen.Project\r
972 \r
973 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at\r
974 # top of each HTML page. The value NO (the default) enables the index and\r
975 # the value YES disables it.\r
976 \r
977 DISABLE_INDEX          = NO\r
978 \r
979 # This tag can be used to set the number of enum values (range [1..20])\r
980 # that doxygen will group on one line in the generated HTML documentation.\r
981 \r
982 ENUM_VALUES_PER_LINE   = 1\r
983 \r
984 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index\r
985 # structure should be generated to display hierarchical information.\r
986 # If the tag value is set to YES, a side panel will be generated\r
987 # containing a tree-like index structure (just like the one that\r
988 # is generated for HTML Help). For this to work a browser that supports\r
989 # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser).\r
990 # Windows users are probably better off using the HTML help feature.\r
991 \r
992 GENERATE_TREEVIEW      = YES\r
993 \r
994 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,\r
995 # and Class Hierarchy pages using a tree view instead of an ordered list.\r
996 \r
997 USE_INLINE_TREES       = NO\r
998 \r
999 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be\r
1000 # used to set the initial width (in pixels) of the frame in which the tree\r
1001 # is shown.\r
1002 \r
1003 TREEVIEW_WIDTH         = 250\r
1004 \r
1005 # Use this tag to change the font size of Latex formulas included\r
1006 # as images in the HTML documentation. The default is 10. Note that\r
1007 # when you change the font size after a successful doxygen run you need\r
1008 # to manually remove any form_*.png images from the HTML output directory\r
1009 # to force them to be regenerated.\r
1010 \r
1011 FORMULA_FONTSIZE       = 10\r
1012 \r
1013 # When the SEARCHENGINE tag is enabled doxygen will generate a search box for the HTML output. The underlying search engine uses javascript\r
1014 # and DHTML and should work on any modern browser. Note that when using HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) there is already a search function so this one should\r
1015 # typically be disabled. For large projects the javascript based search engine\r
1016 # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.\r
1017 \r
1018 SEARCHENGINE           = NO\r
1019 \r
1020 # When the SERVER_BASED_SEARCH tag is enabled the search engine will be implemented using a PHP enabled web server instead of at the web client using Javascript. Doxygen will generate the search PHP script and index\r
1021 # file to put on the web server. The advantage of the server based approach is that it scales better to large projects and allows full text search. The disadvances is that it is more difficult to setup\r
1022 # and does not have live searching capabilities.\r
1023 \r
1024 SERVER_BASED_SEARCH    = NO\r
1025 \r
1026 #---------------------------------------------------------------------------\r
1027 # configuration options related to the LaTeX output\r
1028 #---------------------------------------------------------------------------\r
1029 \r
1030 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will\r
1031 # generate Latex output.\r
1032 \r
1033 GENERATE_LATEX         = NO\r
1034 \r
1035 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.\r
1036 # If a relative path is entered the value of OUTPUT_DIRECTORY will be\r
1037 # put in front of it. If left blank `latex' will be used as the default path.\r
1038 \r
1039 LATEX_OUTPUT           = latex\r
1040 \r
1041 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be\r
1042 # invoked. If left blank `latex' will be used as the default command name.\r
1043 # Note that when enabling USE_PDFLATEX this option is only used for\r
1044 # generating bitmaps for formulas in the HTML output, but not in the\r
1045 # Makefile that is written to the output directory.\r
1046 \r
1047 LATEX_CMD_NAME         = latex\r
1048 \r
1049 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to\r
1050 # generate index for LaTeX. If left blank `makeindex' will be used as the\r
1051 # default command name.\r
1052 \r
1053 MAKEINDEX_CMD_NAME     = makeindex\r
1054 \r
1055 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact\r
1056 # LaTeX documents. This may be useful for small projects and may help to\r
1057 # save some trees in general.\r
1058 \r
1059 COMPACT_LATEX          = NO\r
1060 \r
1061 # The PAPER_TYPE tag can be used to set the paper type that is used\r
1062 # by the printer. Possible values are: a4, a4wide, letter, legal and\r
1063 # executive. If left blank a4wide will be used.\r
1064 \r
1065 PAPER_TYPE             = a4wide\r
1066 \r
1067 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX\r
1068 # packages that should be included in the LaTeX output.\r
1069 \r
1070 EXTRA_PACKAGES         =\r
1071 \r
1072 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for\r
1073 # the generated latex document. The header should contain everything until\r
1074 # the first chapter. If it is left blank doxygen will generate a\r
1075 # standard header. Notice: only use this tag if you know what you are doing!\r
1076 \r
1077 LATEX_HEADER           =\r
1078 \r
1079 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated\r
1080 # is prepared for conversion to pdf (using ps2pdf). The pdf file will\r
1081 # contain links (just like the HTML output) instead of page references\r
1082 # This makes the output suitable for online browsing using a pdf viewer.\r
1083 \r
1084 PDF_HYPERLINKS         = YES\r
1085 \r
1086 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of\r
1087 # plain latex in the generated Makefile. Set this option to YES to get a\r
1088 # higher quality PDF documentation.\r
1089 \r
1090 USE_PDFLATEX           = YES\r
1091 \r
1092 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.\r
1093 # command to the generated LaTeX files. This will instruct LaTeX to keep\r
1094 # running if errors occur, instead of asking the user for help.\r
1095 # This option is also used when generating formulas in HTML.\r
1096 \r
1097 LATEX_BATCHMODE        = NO\r
1098 \r
1099 # If LATEX_HIDE_INDICES is set to YES then doxygen will not\r
1100 # include the index chapters (such as File Index, Compound Index, etc.)\r
1101 # in the output.\r
1102 \r
1103 LATEX_HIDE_INDICES     = NO\r
1104 \r
1105 # If LATEX_SOURCE_CODE is set to YES then doxygen will include source code with syntax highlighting in the LaTeX output. Note that which sources are shown also depends on other settings such as SOURCE_BROWSER.\r
1106 \r
1107 LATEX_SOURCE_CODE      = NO\r
1108 \r
1109 #---------------------------------------------------------------------------\r
1110 # configuration options related to the RTF output\r
1111 #---------------------------------------------------------------------------\r
1112 \r
1113 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output\r
1114 # The RTF output is optimized for Word 97 and may not look very pretty with\r
1115 # other RTF readers or editors.\r
1116 \r
1117 GENERATE_RTF           = NO\r
1118 \r
1119 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put.\r
1120 # If a relative path is entered the value of OUTPUT_DIRECTORY will be\r
1121 # put in front of it. If left blank `rtf' will be used as the default path.\r
1122 \r
1123 RTF_OUTPUT             = rtf\r
1124 \r
1125 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact\r
1126 # RTF documents. This may be useful for small projects and may help to\r
1127 # save some trees in general.\r
1128 \r
1129 COMPACT_RTF            = NO\r
1130 \r
1131 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated\r
1132 # will contain hyperlink fields. The RTF file will\r
1133 # contain links (just like the HTML output) instead of page references.\r
1134 # This makes the output suitable for online browsing using WORD or other\r
1135 # programs which support those fields.\r
1136 # Note: wordpad (write) and others do not support links.\r
1137 \r
1138 RTF_HYPERLINKS         = NO\r
1139 \r
1140 # Load stylesheet definitions from file. Syntax is similar to doxygen's\r
1141 # config file, i.e. a series of assignments. You only have to provide\r
1142 # replacements, missing definitions are set to their default value.\r
1143 \r
1144 RTF_STYLESHEET_FILE    =\r
1145 \r
1146 # Set optional variables used in the generation of an rtf document.\r
1147 # Syntax is similar to doxygen's config file.\r
1148 \r
1149 RTF_EXTENSIONS_FILE    =\r
1150 \r
1151 #---------------------------------------------------------------------------\r
1152 # configuration options related to the man page output\r
1153 #---------------------------------------------------------------------------\r
1154 \r
1155 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will\r
1156 # generate man pages\r
1157 \r
1158 GENERATE_MAN           = NO\r
1159 \r
1160 # The MAN_OUTPUT tag is used to specify where the man pages will be put.\r
1161 # If a relative path is entered the value of OUTPUT_DIRECTORY will be\r
1162 # put in front of it. If left blank `man' will be used as the default path.\r
1163 \r
1164 MAN_OUTPUT             = man\r
1165 \r
1166 # The MAN_EXTENSION tag determines the extension that is added to\r
1167 # the generated man pages (default is the subroutine's section .3)\r
1168 \r
1169 MAN_EXTENSION          = .3\r
1170 \r
1171 # If the MAN_LINKS tag is set to YES and Doxygen generates man output,\r
1172 # then it will generate one additional man file for each entity\r
1173 # documented in the real man page(s). These additional files\r
1174 # only source the real man page, but without them the man command\r
1175 # would be unable to find the correct page. The default is NO.\r
1176 \r
1177 MAN_LINKS              = NO\r
1178 \r
1179 #---------------------------------------------------------------------------\r
1180 # configuration options related to the XML output\r
1181 #---------------------------------------------------------------------------\r
1182 \r
1183 # If the GENERATE_XML tag is set to YES Doxygen will\r
1184 # generate an XML file that captures the structure of\r
1185 # the code including all documentation.\r
1186 \r
1187 GENERATE_XML           = NO\r
1188 \r
1189 # The XML_OUTPUT tag is used to specify where the XML pages will be put.\r
1190 # If a relative path is entered the value of OUTPUT_DIRECTORY will be\r
1191 # put in front of it. If left blank `xml' will be used as the default path.\r
1192 \r
1193 XML_OUTPUT             = xml\r
1194 \r
1195 # The XML_SCHEMA tag can be used to specify an XML schema,\r
1196 # which can be used by a validating XML parser to check the\r
1197 # syntax of the XML files.\r
1198 \r
1199 XML_SCHEMA             =\r
1200 \r
1201 # The XML_DTD tag can be used to specify an XML DTD,\r
1202 # which can be used by a validating XML parser to check the\r
1203 # syntax of the XML files.\r
1204 \r
1205 XML_DTD                =\r
1206 \r
1207 # If the XML_PROGRAMLISTING tag is set to YES Doxygen will\r
1208 # dump the program listings (including syntax highlighting\r
1209 # and cross-referencing information) to the XML output. Note that\r
1210 # enabling this will significantly increase the size of the XML output.\r
1211 \r
1212 XML_PROGRAMLISTING     = YES\r
1213 \r
1214 #---------------------------------------------------------------------------\r
1215 # configuration options for the AutoGen Definitions output\r
1216 #---------------------------------------------------------------------------\r
1217 \r
1218 # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will\r
1219 # generate an AutoGen Definitions (see autogen.sf.net) file\r
1220 # that captures the structure of the code including all\r
1221 # documentation. Note that this feature is still experimental\r
1222 # and incomplete at the moment.\r
1223 \r
1224 GENERATE_AUTOGEN_DEF   = NO\r
1225 \r
1226 #---------------------------------------------------------------------------\r
1227 # configuration options related to the Perl module output\r
1228 #---------------------------------------------------------------------------\r
1229 \r
1230 # If the GENERATE_PERLMOD tag is set to YES Doxygen will\r
1231 # generate a Perl module file that captures the structure of\r
1232 # the code including all documentation. Note that this\r
1233 # feature is still experimental and incomplete at the\r
1234 # moment.\r
1235 \r
1236 GENERATE_PERLMOD       = NO\r
1237 \r
1238 # If the PERLMOD_LATEX tag is set to YES Doxygen will generate\r
1239 # the necessary Makefile rules, Perl scripts and LaTeX code to be able\r
1240 # to generate PDF and DVI output from the Perl module output.\r
1241 \r
1242 PERLMOD_LATEX          = NO\r
1243 \r
1244 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be\r
1245 # nicely formatted so it can be parsed by a human reader.\r
1246 # This is useful\r
1247 # if you want to understand what is going on.\r
1248 # On the other hand, if this\r
1249 # tag is set to NO the size of the Perl module output will be much smaller\r
1250 # and Perl will parse it just the same.\r
1251 \r
1252 PERLMOD_PRETTY         = YES\r
1253 \r
1254 # The names of the make variables in the generated doxyrules.make file\r
1255 # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.\r
1256 # This is useful so different doxyrules.make files included by the same\r
1257 # Makefile don't overwrite each other's variables.\r
1258 \r
1259 PERLMOD_MAKEVAR_PREFIX =\r
1260 \r
1261 #---------------------------------------------------------------------------\r
1262 # Configuration options related to the preprocessor\r
1263 #---------------------------------------------------------------------------\r
1264 \r
1265 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will\r
1266 # evaluate all C-preprocessor directives found in the sources and include\r
1267 # files.\r
1268 \r
1269 ENABLE_PREPROCESSING   = YES\r
1270 \r
1271 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro\r
1272 # names in the source code. If set to NO (the default) only conditional\r
1273 # compilation will be performed. Macro expansion can be done in a controlled\r
1274 # way by setting EXPAND_ONLY_PREDEF to YES.\r
1275 \r
1276 MACRO_EXPANSION        = YES\r
1277 \r
1278 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES\r
1279 # then the macro expansion is limited to the macros specified with the\r
1280 # PREDEFINED and EXPAND_AS_DEFINED tags.\r
1281 \r
1282 EXPAND_ONLY_PREDEF     = YES\r
1283 \r
1284 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files\r
1285 # in the INCLUDE_PATH (see below) will be search if a #include is found.\r
1286 \r
1287 SEARCH_INCLUDES        = YES\r
1288 \r
1289 # The INCLUDE_PATH tag can be used to specify one or more directories that\r
1290 # contain include files that are not input files but should be processed by\r
1291 # the preprocessor.\r
1292 \r
1293 INCLUDE_PATH           =\r
1294 \r
1295 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard\r
1296 # patterns (like *.h and *.hpp) to filter out the header-files in the\r
1297 # directories. If left blank, the patterns specified with FILE_PATTERNS will\r
1298 # be used.\r
1299 \r
1300 INCLUDE_FILE_PATTERNS  =\r
1301 \r
1302 # The PREDEFINED tag can be used to specify one or more macro names that\r
1303 # are defined before the preprocessor is started (similar to the -D option of\r
1304 # gcc). The argument of the tag is a list of macros of the form: name\r
1305 # or name=definition (no spaces). If the definition and the = are\r
1306 # omitted =1 is assumed. To prevent a macro definition from being\r
1307 # undefined via #undef or recursively expanded use the := operator\r
1308 # instead of the = operator.\r
1309 \r
1310 PREDEFINED             = __DOXYGEN__ \\r
1311                          PROGMEM\r
1312 \r
1313 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then\r
1314 # this tag can be used to specify a list of macro names that should be expanded.\r
1315 # The macro definition that is found in the sources will be used.\r
1316 # Use the PREDEFINED tag if you want to use a different macro definition.\r
1317 \r
1318 EXPAND_AS_DEFINED      = \r
1319 \r
1320 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then\r
1321 # doxygen's preprocessor will remove all function-like macros that are alone\r
1322 # on a line, have an all uppercase name, and do not end with a semicolon. Such\r
1323 # function macros are typically used for boiler-plate code, and will confuse\r
1324 # the parser if not removed.\r
1325 \r
1326 SKIP_FUNCTION_MACROS   = YES\r
1327 \r
1328 #---------------------------------------------------------------------------\r
1329 # Configuration::additions related to external references\r
1330 #---------------------------------------------------------------------------\r
1331 \r
1332 # The TAGFILES option can be used to specify one or more tagfiles.\r
1333 # Optionally an initial location of the external documentation\r
1334 # can be added for each tagfile. The format of a tag file without\r
1335 # this location is as follows:\r
1336 #\r
1337 # TAGFILES = file1 file2 ...\r
1338 # Adding location for the tag files is done as follows:\r
1339 #\r
1340 # TAGFILES = file1=loc1 "file2 = loc2" ...\r
1341 # where "loc1" and "loc2" can be relative or absolute paths or\r
1342 # URLs. If a location is present for each tag, the installdox tool\r
1343 # does not have to be run to correct the links.\r
1344 # Note that each tag file must have a unique name\r
1345 # (where the name does NOT include the path)\r
1346 # If a tag file is not located in the directory in which doxygen\r
1347 # is run, you must also specify the path to the tagfile here.\r
1348 \r
1349 TAGFILES               =\r
1350 \r
1351 # When a file name is specified after GENERATE_TAGFILE, doxygen will create\r
1352 # a tag file that is based on the input files it reads.\r
1353 \r
1354 GENERATE_TAGFILE       =\r
1355 \r
1356 # If the ALLEXTERNALS tag is set to YES all external classes will be listed\r
1357 # in the class index. If set to NO only the inherited external classes\r
1358 # will be listed.\r
1359 \r
1360 ALLEXTERNALS           = NO\r
1361 \r
1362 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed\r
1363 # in the modules index. If set to NO, only the current project's groups will\r
1364 # be listed.\r
1365 \r
1366 EXTERNAL_GROUPS        = YES\r
1367 \r
1368 # The PERL_PATH should be the absolute path and name of the perl script\r
1369 # interpreter (i.e. the result of `which perl').\r
1370 \r
1371 PERL_PATH              = /usr/bin/perl\r
1372 \r
1373 #---------------------------------------------------------------------------\r
1374 # Configuration options related to the dot tool\r
1375 #---------------------------------------------------------------------------\r
1376 \r
1377 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will\r
1378 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base\r
1379 # or super classes. Setting the tag to NO turns the diagrams off. Note that\r
1380 # this option is superseded by the HAVE_DOT option below. This is only a\r
1381 # fallback. It is recommended to install and use dot, since it yields more\r
1382 # powerful graphs.\r
1383 \r
1384 CLASS_DIAGRAMS         = NO\r
1385 \r
1386 # You can define message sequence charts within doxygen comments using the \msc\r
1387 # command. Doxygen will then run the mscgen tool (see\r
1388 # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the\r
1389 # documentation. The MSCGEN_PATH tag allows you to specify the directory where\r
1390 # the mscgen tool resides. If left empty the tool is assumed to be found in the\r
1391 # default search path.\r
1392 \r
1393 MSCGEN_PATH            =\r
1394 \r
1395 # If set to YES, the inheritance and collaboration graphs will hide\r
1396 # inheritance and usage relations if the target is undocumented\r
1397 # or is not a class.\r
1398 \r
1399 HIDE_UNDOC_RELATIONS   = YES\r
1400 \r
1401 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is\r
1402 # available from the path. This tool is part of Graphviz, a graph visualization\r
1403 # toolkit from AT&T and Lucent Bell Labs. The other options in this section\r
1404 # have no effect if this option is set to NO (the default)\r
1405 \r
1406 HAVE_DOT               = NO\r
1407 \r
1408 # By default doxygen will write a font called FreeSans.ttf to the output\r
1409 # directory and reference it in all dot files that doxygen generates. This\r
1410 # font does not include all possible unicode characters however, so when you need\r
1411 # these (or just want a differently looking font) you can specify the font name\r
1412 # using DOT_FONTNAME. You need need to make sure dot is able to find the font,\r
1413 # which can be done by putting it in a standard location or by setting the\r
1414 # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory\r
1415 # containing the font.\r
1416 \r
1417 DOT_FONTNAME           = FreeSans\r
1418 \r
1419 # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs.\r
1420 # The default size is 10pt.\r
1421 \r
1422 DOT_FONTSIZE           = 10\r
1423 \r
1424 # By default doxygen will tell dot to use the output directory to look for the\r
1425 # FreeSans.ttf font (which doxygen will put there itself). If you specify a\r
1426 # different font using DOT_FONTNAME you can set the path where dot\r
1427 # can find it using this tag.\r
1428 \r
1429 DOT_FONTPATH           =\r
1430 \r
1431 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen\r
1432 # will generate a graph for each documented class showing the direct and\r
1433 # indirect inheritance relations. Setting this tag to YES will force the\r
1434 # the CLASS_DIAGRAMS tag to NO.\r
1435 \r
1436 CLASS_GRAPH            = NO\r
1437 \r
1438 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen\r
1439 # will generate a graph for each documented class showing the direct and\r
1440 # indirect implementation dependencies (inheritance, containment, and\r
1441 # class references variables) of the class with other documented classes.\r
1442 \r
1443 COLLABORATION_GRAPH    = NO\r
1444 \r
1445 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen\r
1446 # will generate a graph for groups, showing the direct groups dependencies\r
1447 \r
1448 GROUP_GRAPHS           = NO\r
1449 \r
1450 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and\r
1451 # collaboration diagrams in a style similar to the OMG's Unified Modeling\r
1452 # Language.\r
1453 \r
1454 UML_LOOK               = NO\r
1455 \r
1456 # If set to YES, the inheritance and collaboration graphs will show the\r
1457 # relations between templates and their instances.\r
1458 \r
1459 TEMPLATE_RELATIONS     = NO\r
1460 \r
1461 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT\r
1462 # tags are set to YES then doxygen will generate a graph for each documented\r
1463 # file showing the direct and indirect include dependencies of the file with\r
1464 # other documented files.\r
1465 \r
1466 INCLUDE_GRAPH          = NO\r
1467 \r
1468 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and\r
1469 # HAVE_DOT tags are set to YES then doxygen will generate a graph for each\r
1470 # documented header file showing the documented files that directly or\r
1471 # indirectly include this file.\r
1472 \r
1473 INCLUDED_BY_GRAPH      = NO\r
1474 \r
1475 # If the CALL_GRAPH and HAVE_DOT options are set to YES then\r
1476 # doxygen will generate a call dependency graph for every global function\r
1477 # or class method. Note that enabling this option will significantly increase\r
1478 # the time of a run. So in most cases it will be better to enable call graphs\r
1479 # for selected functions only using the \callgraph command.\r
1480 \r
1481 CALL_GRAPH             = NO\r
1482 \r
1483 # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then\r
1484 # doxygen will generate a caller dependency graph for every global function\r
1485 # or class method. Note that enabling this option will significantly increase\r
1486 # the time of a run. So in most cases it will be better to enable caller\r
1487 # graphs for selected functions only using the \callergraph command.\r
1488 \r
1489 CALLER_GRAPH           = NO\r
1490 \r
1491 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen\r
1492 # will graphical hierarchy of all classes instead of a textual one.\r
1493 \r
1494 GRAPHICAL_HIERARCHY    = NO\r
1495 \r
1496 # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES\r
1497 # then doxygen will show the dependencies a directory has on other directories\r
1498 # in a graphical way. The dependency relations are determined by the #include\r
1499 # relations between the files in the directories.\r
1500 \r
1501 DIRECTORY_GRAPH        = NO\r
1502 \r
1503 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images\r
1504 # generated by dot. Possible values are png, jpg, or gif\r
1505 # If left blank png will be used.\r
1506 \r
1507 DOT_IMAGE_FORMAT       = png\r
1508 \r
1509 # The tag DOT_PATH can be used to specify the path where the dot tool can be\r
1510 # found. If left blank, it is assumed the dot tool can be found in the path.\r
1511 \r
1512 DOT_PATH               =\r
1513 \r
1514 # The DOTFILE_DIRS tag can be used to specify one or more directories that\r
1515 # contain dot files that are included in the documentation (see the\r
1516 # \dotfile command).\r
1517 \r
1518 DOTFILE_DIRS           =\r
1519 \r
1520 # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of\r
1521 # nodes that will be shown in the graph. If the number of nodes in a graph\r
1522 # becomes larger than this value, doxygen will truncate the graph, which is\r
1523 # visualized by representing a node as a red box. Note that doxygen if the\r
1524 # number of direct children of the root node in a graph is already larger than\r
1525 # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note\r
1526 # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.\r
1527 \r
1528 DOT_GRAPH_MAX_NODES    = 15\r
1529 \r
1530 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the\r
1531 # graphs generated by dot. A depth value of 3 means that only nodes reachable\r
1532 # from the root by following a path via at most 3 edges will be shown. Nodes\r
1533 # that lay further from the root node will be omitted. Note that setting this\r
1534 # option to 1 or 2 may greatly reduce the computation time needed for large\r
1535 # code bases. Also note that the size of a graph can be further restricted by\r
1536 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.\r
1537 \r
1538 MAX_DOT_GRAPH_DEPTH    = 2\r
1539 \r
1540 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent\r
1541 # background. This is disabled by default, because dot on Windows does not\r
1542 # seem to support this out of the box. Warning: Depending on the platform used,\r
1543 # enabling this option may lead to badly anti-aliased labels on the edges of\r
1544 # a graph (i.e. they become hard to read).\r
1545 \r
1546 DOT_TRANSPARENT        = YES\r
1547 \r
1548 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output\r
1549 # files in one run (i.e. multiple -o and -T options on the command line). This\r
1550 # makes dot run faster, but since only newer versions of dot (>1.8.10)\r
1551 # support this, this feature is disabled by default.\r
1552 \r
1553 DOT_MULTI_TARGETS      = NO\r
1554 \r
1555 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will\r
1556 # generate a legend page explaining the meaning of the various boxes and\r
1557 # arrows in the dot generated graphs.\r
1558 \r
1559 GENERATE_LEGEND        = YES\r
1560 \r
1561 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will\r
1562 # remove the intermediate dot files that are used to generate\r
1563 # the various graphs.\r
1564 \r
1565 DOT_CLEANUP            = YES\r