OSDN Git Service

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