OSDN Git Service

2008-01-21 Matthias Klose <doko@ubuntu.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / doc / doxygen / user.cfg.in
1 # Doxyfile 1.5.4
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
18 # config file that follow. The default is UTF-8 which is also the
19 # encoding used for all text before the first occurrence of this
20 # tag. Doxygen uses libiconv (or the iconv built into libc) for the
21 # transcoding. See http://www.gnu.org/software/libiconv for the list
22 # of possible encodings.
23
24 DOXYFILE_ENCODING      = UTF-8
25
26 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 
27 # by quotes) that should identify the project.
28
29 PROJECT_NAME           = libstdc++
30
31 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 
32 # This could be handy for archiving the generated documentation or 
33 # if some version control system is used.
34
35 PROJECT_NUMBER         = 
36
37 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
38 # base path where the generated documentation will be put. 
39 # If a relative path is entered, it will be relative to the location 
40 # where doxygen was started. If left blank the current directory will be used.
41
42 OUTPUT_DIRECTORY       = @outdir@
43
44 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 
45 # 4096 sub-directories (in 2 levels) under the output directory of each output 
46 # format and will distribute the generated files over these directories. 
47 # Enabling this option can be useful when feeding doxygen a huge amount of 
48 # source files, where putting all generated files in the same directory would 
49 # otherwise cause performance problems for the file system.
50
51 CREATE_SUBDIRS         = NO
52
53 # The OUTPUT_LANGUAGE tag is used to specify the language in which all 
54 # documentation generated by doxygen is written. Doxygen will use this 
55 # information to generate all constant output in the proper language. 
56 # The default language is English, other supported languages are: 
57 # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 
58 # Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian, 
59 # Italian, Japanese, Japanese-en (Japanese with English messages), Korean, 
60 # Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian, 
61 # Serbian, Slovak, Slovene, 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 DETAILS_AT_TOP tag is set to YES then Doxygen 
160 # will output the detailed description near the top, like JavaDoc.
161 # If set to NO, the detailed description appears after the member 
162 # documentation.
163
164 DETAILS_AT_TOP         = YES
165
166 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 
167 # member inherits the documentation from any documented member that it 
168 # re-implements.
169
170 INHERIT_DOCS           = YES
171
172 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 
173 # a new page for each member. If set to NO, the documentation of a member will 
174 # be part of the file/class/namespace that contains it.
175
176 SEPARATE_MEMBER_PAGES  = NO
177
178 # The TAB_SIZE tag can be used to set the number of spaces in a tab. 
179 # Doxygen uses this value to replace tabs by spaces in code fragments.
180
181 TAB_SIZE               = 4
182
183 # This tag can be used to specify a number of aliases that acts 
184 # as commands in the documentation. An alias has the form "name=value". 
185 # For example adding "sideeffect=\par Side Effects:\n" will allow you to 
186 # put the command \sideeffect (or @sideeffect) in the documentation, which 
187 # will result in a user-defined paragraph with heading "Side Effects:". 
188 # You can put \n's in the value part of an alias to insert newlines.
189
190 ALIASES                = "doctodo=@todo\nDoc me!  See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.  " \
191                          "isiosfwd=One of the @link s27_2_iosfwd I/O forward declarations @endlink  "
192
193 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 
194 # sources only. Doxygen will then generate output that is more tailored for C. 
195 # For instance, some of the names that are used will be different. The list 
196 # of all members will be omitted, etc.
197
198 OPTIMIZE_OUTPUT_FOR_C  = NO
199
200 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 
201 # sources only. Doxygen will then generate output that is more tailored for Java. 
202 # For instance, namespaces will be presented as packages, qualified scopes 
203 # will look different, etc.
204
205 OPTIMIZE_OUTPUT_JAVA   = NO
206
207 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to 
208 # include (a tag file for) the STL sources as input, then you should 
209 # set this tag to YES in order to let doxygen match functions declarations and 
210 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 
211 # func(std::string) {}). This also make the inheritance and collaboration 
212 # diagrams that involve STL classes more complete and accurate.
213
214 BUILTIN_STL_SUPPORT    = NO
215
216 # If you use Microsoft's C++/CLI language, you should set this option to YES to
217 # enable parsing support.
218
219 CPP_CLI_SUPPORT        = NO
220
221 # Set the SIP_SUPPORT tag to YES if your project consists of sip
222 # sources only.  Doxygen will parse them like normal C++ but will
223 # assume all classes use public instead of private inheritance when no
224 # explicit protection keyword is present.
225
226 SIP_SUPPORT            = NO
227
228 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 
229 # tag is set to YES, then doxygen will reuse the documentation of the first 
230 # member in the group (if any) for the other members of the group. By default 
231 # all members of a group must be documented explicitly.
232
233 DISTRIBUTE_GROUP_DOC   = YES
234
235 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of 
236 # the same type (for instance a group of public functions) to be put as a 
237 # subgroup of that type (e.g. under the Public Functions section). Set it to 
238 # NO to prevent subgrouping. Alternatively, this can be done per class using 
239 # the \nosubgrouping command.
240
241 SUBGROUPING            = YES
242
243 # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct (or union) is 
244 # documented as struct with the name of the typedef. So 
245 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct 
246 # with name TypeT. When disabled the typedef will appear as a member of a file, 
247 # namespace, or class. And the struct will be named TypeS. This can typically 
248 # be useful for C code where the coding convention is that all structs are 
249 # typedef'ed and only the typedef is referenced never the struct's name.
250
251 TYPEDEF_HIDES_STRUCT   = NO
252
253 #---------------------------------------------------------------------------
254 # Build related configuration options
255 #---------------------------------------------------------------------------
256
257 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 
258 # documentation are documented, even if no documentation was available. 
259 # Private class members and static file members will be hidden unless 
260 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
261
262 EXTRACT_ALL            = NO
263
264 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class 
265 # will be included in the documentation.
266
267 EXTRACT_PRIVATE        = NO
268
269 # If the EXTRACT_STATIC tag is set to YES all static members of a file 
270 # will be included in the documentation.
271
272 EXTRACT_STATIC         = YES
273
274 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 
275 # defined locally in source files will be included in the documentation. 
276 # If set to NO only classes defined in header files are included.
277
278 EXTRACT_LOCAL_CLASSES  = YES
279
280 # This flag is only useful for Objective-C code. When set to YES local 
281 # methods, which are defined in the implementation section but not in 
282 # the interface are included in the documentation. 
283 # If set to NO (the default) only methods in the interface are included.
284
285 EXTRACT_LOCAL_METHODS  = YES
286
287 # If this flag is set to YES, the members of anonymous namespaces will
288 # be extracted and appear in the documentation as a namespace called
289 # 'anonymous_namespace{file}', where file will be replaced with the
290 # base name of the file that contains the anonymous namespace. By
291 # default anonymous namespace are hidden.
292
293 EXTRACT_ANON_NSPACES   = NO
294
295 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 
296 # undocumented members of documented classes, files or namespaces. 
297 # If set to NO (the default) these members will be included in the 
298 # various overviews, but no documentation section is generated. 
299 # This option has no effect if EXTRACT_ALL is enabled.
300
301 HIDE_UNDOC_MEMBERS     = NO
302
303 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 
304 # undocumented classes that are normally visible in the class hierarchy. 
305 # If set to NO (the default) these classes will be included in the various 
306 # overviews. This option has no effect if EXTRACT_ALL is enabled.
307
308 HIDE_UNDOC_CLASSES     = YES
309
310 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 
311 # friend (class|struct|union) declarations. 
312 # If set to NO (the default) these declarations will be included in the 
313 # documentation.
314
315 HIDE_FRIEND_COMPOUNDS  = NO
316
317 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 
318 # documentation blocks found inside the body of a function. 
319 # If set to NO (the default) these blocks will be appended to the 
320 # function's detailed documentation block.
321
322 HIDE_IN_BODY_DOCS      = NO
323
324 # The INTERNAL_DOCS tag determines if documentation 
325 # that is typed after a \internal command is included. If the tag is set 
326 # to NO (the default) then the documentation will be excluded. 
327 # Set it to YES to include the internal documentation.
328
329 INTERNAL_DOCS          = NO
330
331 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 
332 # file names in lower-case letters. If set to YES upper-case letters are also 
333 # allowed. This is useful if you have classes or files whose names only differ 
334 # in case and if your file system supports case sensitive file names. Windows 
335 # and Mac users are advised to set this option to NO.
336
337 CASE_SENSE_NAMES       = NO
338
339 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 
340 # will show members with their full class and namespace scopes in the 
341 # documentation. If set to YES the scope will be hidden.
342
343 HIDE_SCOPE_NAMES       = NO
344
345 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 
346 # will put a list of the files that are included by a file in the documentation 
347 # of that file.
348
349 SHOW_INCLUDE_FILES     = NO
350
351 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 
352 # is inserted in the documentation for inline members.
353
354 INLINE_INFO            = YES
355
356 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 
357 # will sort the (detailed) documentation of file and class members 
358 # alphabetically by member name. If set to NO the members will appear in 
359 # declaration order.
360
361 SORT_MEMBER_DOCS       = YES
362
363 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 
364 # brief documentation of file, namespace and class members alphabetically 
365 # by member name. If set to NO (the default) the members will appear in 
366 # declaration order.
367
368 SORT_BRIEF_DOCS        = YES
369
370 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 
371 # sorted by fully-qualified names, including namespaces. If set to 
372 # NO (the default), the class list will be sorted only by class name, 
373 # not including the namespace part. 
374 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
375 # Note: This option applies only to the class list, not to the 
376 # alphabetical list.
377
378 SORT_BY_SCOPE_NAME     = YES
379
380 # The GENERATE_TODOLIST tag can be used to enable (YES) or 
381 # disable (NO) the todo list. This list is created by putting \todo 
382 # commands in the documentation.
383
384 GENERATE_TODOLIST      = YES
385
386 # The GENERATE_TESTLIST tag can be used to enable (YES) or 
387 # disable (NO) the test list. This list is created by putting \test 
388 # commands in the documentation.
389
390 GENERATE_TESTLIST      = NO
391
392 # The GENERATE_BUGLIST tag can be used to enable (YES) or 
393 # disable (NO) the bug list. This list is created by putting \bug 
394 # commands in the documentation.
395
396 GENERATE_BUGLIST       = YES
397
398 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 
399 # disable (NO) the deprecated list. This list is created by putting 
400 # \deprecated commands in the documentation.
401
402 GENERATE_DEPRECATEDLIST= YES
403
404 # The ENABLED_SECTIONS tag can be used to enable conditional 
405 # documentation sections, marked by \if sectionname ... \endif.
406
407 ENABLED_SECTIONS       = @enabled_sections@
408
409 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines 
410 # the initial value of a variable or define consists of for it to appear in 
411 # the documentation. If the initializer consists of more lines than specified 
412 # here it will be hidden. Use a value of 0 to hide initializers completely. 
413 # The appearance of the initializer of individual variables and defines in the 
414 # documentation can be controlled using \showinitializer or \hideinitializer 
415 # command in the documentation regardless of this setting.
416
417 MAX_INITIALIZER_LINES  = 0
418
419 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated 
420 # at the bottom of the documentation of classes and structs. If set to YES the 
421 # list will mention the files that were used to generate the documentation.
422
423 SHOW_USED_FILES        = YES
424
425 # If the sources in your project are distributed over multiple
426 # directories then setting the SHOW_DIRECTORIES tag to YES will show
427 # the directory hierarchy in the documentation. The default is NO.
428
429 SHOW_DIRECTORIES       = YES
430
431 # The FILE_VERSION_FILTER tag can be used to specify a program or
432 # script that doxygen should invoke to get the current version for
433 # each file (typically from the version control system). Doxygen will
434 # invoke the program by executing (via popen()) the command <command>
435 # <input-file>, where <command> is the value of the
436 # FILE_VERSION_FILTER tag, and <input-file> is the name of an input
437 # file provided by doxygen. Whatever the program writes to standard
438 # output is used as the file version. See the manual for examples.
439
440 FILE_VERSION_FILTER    = 
441
442 #---------------------------------------------------------------------------
443 # configuration options related to warning and progress messages
444 #---------------------------------------------------------------------------
445
446 # The QUIET tag can be used to turn on/off the messages that are generated 
447 # by doxygen. Possible values are YES and NO. If left blank NO is used.
448
449 QUIET                  = NO
450
451 # The WARNINGS tag can be used to turn on/off the warning messages that are 
452 # generated by doxygen. Possible values are YES and NO. If left blank 
453 # NO is used.
454
455 WARNINGS               = YES
456
457 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 
458 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will 
459 # automatically be disabled.
460
461 WARN_IF_UNDOCUMENTED   = NO
462
463 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 
464 # potential errors in the documentation, such as not documenting some 
465 # parameters in a documented function, or documenting parameters that 
466 # don't exist or using markup commands wrongly.
467
468 WARN_IF_DOC_ERROR      = NO
469
470 # This WARN_NO_PARAMDOC option can be abled to get warnings for 
471 # functions that are documented, but have no documentation for their parameters 
472 # or return value. If set to NO (the default) doxygen will only warn about 
473 # wrong or incomplete parameter documentation, but not about the absence of 
474 # documentation.
475
476 WARN_NO_PARAMDOC       = NO
477
478 # The WARN_FORMAT tag determines the format of the warning messages that 
479 # doxygen can produce. The string should contain the $file, $line, and $text 
480 # tags, which will be replaced by the file and line number from which the 
481 # warning originated and the warning text. Optionally the format may contain 
482 # $version, which will be replaced by the version of the file (if it could 
483 # be obtained via FILE_VERSION_FILTER)
484
485 WARN_FORMAT            = "$file:$line: $text  "
486
487 # The WARN_LOGFILE tag can be used to specify a file to which warning 
488 # and error messages should be written. If left blank the output is written 
489 # to stderr.
490
491 WARN_LOGFILE           = 
492
493 #---------------------------------------------------------------------------
494 # configuration options related to the input files
495 #---------------------------------------------------------------------------
496
497 # The INPUT tag can be used to specify the files and/or directories
498 # that contain documented source files. You may enter file names like
499 # "myfile.cpp" or directories like "/usr/src/myproject". Separate the
500 # files or directories with spaces.
501
502 INPUT                  = @srcdir@/doc/doxygen/doxygroups.cc \
503                          @srcdir@/include/precompiled/stdc++.h \
504                          @srcdir@/include/precompiled/stdtr1c++.h \
505                          @srcdir@/include/precompiled/extc++.h \
506                          @srcdir@/libsupc++/cxxabi.h \
507                          @srcdir@/libsupc++/exception \
508                          @srcdir@/libsupc++/new \
509                          @srcdir@/libsupc++/typeinfo \
510                          include/@host_alias@/bits \
511                          include/bits \
512                          include/debug \
513                          include/parallel \
514                          include/ext \
515                          include/tr1 \
516                          include/tr1_impl \
517                          include/algorithm \
518                          include/array \
519                          include/bitset \
520                          include/cassert \
521                          include/ccomplex \
522                          include/cctype \
523                          include/cerrno \
524                          include/cfenv \
525                          include/cfloat \
526                          include/cinttypes \
527                          include/ciso646 \
528                          include/climits \
529                          include/clocale \
530                          include/cmath \
531                          include/csetjmp \
532                          include/csignal \
533                          include/cstdarg \
534                          include/cstdbool \
535                          include/cstddef \
536                          include/cstdint \
537                          include/cstdio \
538                          include/cstdlib \
539                          include/cstring \
540                          include/ctgmath \
541                          include/ctime \
542                          include/cwchar \
543                          include/cwctype \
544                          include/deque \
545                          include/fstream \
546                          include/functional \
547                          include/iomanip \
548                          include/ios \
549                          include/iosfwd \
550                          include/iostream \
551                          include/istream \
552                          include/iterator \
553                          include/limits \
554                          include/list \
555                          include/locale \
556                          include/map \
557                          include/memory \
558                          include/numeric \
559                          include/ostream \
560                          include/queue \
561                          include/random \
562                          include/regex \
563                          include/set \
564                          include/sstream \
565                          include/stack \
566                          include/stdexcept \
567                          include/streambuf \
568                          include/string \
569                          include/system_error \
570                          include/tuple \
571                          include/type_traits \
572                          include/unordered_map \
573                          include/unordered_set \
574                          include/utility \
575                          include/valarray \
576                          include/vector \
577                          include/backward/hash_map \
578                          include/backward/hash_set \
579                          include/debug/bitset \
580                          include/debug/deque \
581                          include/debug/list \
582                          include/debug/map \
583                          include/debug/set \
584                          include/debug/string \
585                          include/debug/vector \
586                          include/ext/algorithm \
587                          include/ext/functional \
588                          include/ext/iterator \
589                          include/ext/memory \
590                          include/ext/numeric \
591                          include/ext/rb_tree \
592                          include/ext/rope \
593                          include/ext/slist \
594                          include/ext/pb_ds \
595                          include/ext/pb_ds/detail \
596                          include/parallel/algorithm \
597                          include/parallel/numeric \
598                          include/tr1/array \
599                          include/tr1/ccomplex \
600                          include/tr1/cctype \
601                          include/tr1/cfenv \
602                          include/tr1/cfloat \
603                          include/tr1/cinttypes \
604                          include/tr1/climits \
605                          include/tr1/cmath \
606                          include/tr1/complex \
607                          include/tr1/cstdarg \
608                          include/tr1/cstdbool \
609                          include/tr1/cstdint \
610                          include/tr1/cstdio \
611                          include/tr1/cstdlib \
612                          include/tr1/ctgmath \
613                          include/tr1/ctime \
614                          include/tr1/cwchar \
615                          include/tr1/cwctype \
616                          include/tr1/functional \
617                          include/tr1/hashtable.h \
618                          include/tr1/memory \
619                          include/tr1/random \
620                          include/tr1/regex \
621                          include/tr1/tuple \
622                          include/tr1/type_traits \
623                          include/tr1/unordered_map \
624                          include/tr1/unordered_set \
625                          include/tr1_impl/utility \
626                          include/tr1_impl/array \
627                          include/tr1_impl/cctype \
628                          include/tr1_impl/cfenv \
629                          include/tr1_impl/cinttypes \
630                          include/tr1_impl/cmath \
631                          include/tr1_impl/complex \
632                          include/tr1_impl/cstdint \
633                          include/tr1_impl/cstdio \
634                          include/tr1_impl/cstdlib \
635                          include/tr1_impl/cwchar \
636                          include/tr1_impl/cwctype \
637                          include/tr1_impl/functional \
638                          include/tr1_impl/hashtable \
639                          include/tr1_impl/random \
640                          include/tr1_impl/regex \
641                          include/tr1_impl/tuple \
642                          include/tr1_impl/type_traits \
643                          include/tr1_impl/unordered_map \
644                          include/tr1_impl/unordered_set \
645                          include/tr1_impl/utility
646
647 # This tag can be used to specify the character encoding of the source
648 # files that doxygen parses. Internally doxygen uses the UTF-8
649 # encoding, which is also the default input encoding. Doxygen uses
650 # libiconv (or the iconv built into libc) for the transcoding.  See
651 # http://www.gnu.org/software/libiconv for the list of possible
652 # encodings.
653
654 INPUT_ENCODING         = UTF-8
655
656 # If the value of the INPUT tag contains directories, you can use the 
657 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
658 # and *.h) to filter out the source-files in the directories. If left 
659 # blank the following patterns are tested: 
660 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 
661 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
662
663 FILE_PATTERNS          = *.h \
664                          *.hpp \
665                          *.tcc
666
667 # The RECURSIVE tag can be used to turn specify whether or not subdirectories 
668 # should be searched for input files as well. Possible values are YES and NO. 
669 # If left blank NO is used.
670
671 RECURSIVE              = NO
672
673 # The EXCLUDE tag can be used to specify files and/or directories that should 
674 # excluded from the INPUT source files. This way you can easily exclude a 
675 # subdirectory from a directory tree whose root is specified with the INPUT tag.
676
677 EXCLUDE                = Makefile
678
679 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or 
680 # directories that are symbolic links (a Unix filesystem feature) are excluded 
681 # from the input.
682
683 EXCLUDE_SYMLINKS       = NO
684
685 # If the value of the INPUT tag contains directories, you can use the 
686 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 
687 # certain files from those directories. Note that the wildcards are matched 
688 # against the file with absolute path, so to exclude all test directories 
689 # for example use the pattern */test/*
690
691 EXCLUDE_PATTERNS       = stamp-* \
692                          *stdc++.h* \
693                          *stdtr1c++.h* \
694                          *extc++.h* \
695                          */.svn/*
696
697 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol
698 # names (namespaces, classes, functions, etc.) that should be excluded
699 # from the output.  The symbol name can be a fully qualified name, a
700 # word, or if the wildcard * is used, a substring. Examples:
701 # ANamespace, AClass, AClass::ANamespace, ANamespace::*Test
702
703 EXCLUDE_SYMBOLS        = 
704
705 # The EXAMPLE_PATH tag can be used to specify one or more files or 
706 # directories that contain example code fragments that are included (see 
707 # the \include command).
708
709 EXAMPLE_PATH           = 
710
711 # If the value of the EXAMPLE_PATH tag contains directories, you can use the 
712 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
713 # and *.h) to filter out the source-files in the directories. If left 
714 # blank all files are included.
715
716 EXAMPLE_PATTERNS       = 
717
718 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 
719 # searched for input files to be used with the \include or \dontinclude 
720 # commands irrespective of the value of the RECURSIVE tag. 
721 # Possible values are YES and NO. If left blank NO is used.
722
723 EXAMPLE_RECURSIVE      = NO
724
725 # The IMAGE_PATH tag can be used to specify one or more files or 
726 # directories that contain image that are included in the documentation (see 
727 # the \image command).
728
729 IMAGE_PATH             = 
730
731 # The INPUT_FILTER tag can be used to specify a program that doxygen should 
732 # invoke to filter for each input file. Doxygen will invoke the filter program 
733 # by executing (via popen()) the command <filter> <input-file>, where <filter> 
734 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an 
735 # input file. Doxygen will then use the output that the filter program writes 
736 # to standard output.  If FILTER_PATTERNS is specified, this tag will be 
737 # ignored.
738
739 INPUT_FILTER           = 
740
741 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 
742 # basis.  Doxygen will compare the file name with each pattern and apply the 
743 # filter if there is a match.  The filters are a list of the form: 
744 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 
745 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 
746 # is applied to all files.
747
748 FILTER_PATTERNS        = 
749
750 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 
751 # INPUT_FILTER) will be used to filter the input files when producing source 
752 # files to browse (i.e. when SOURCE_BROWSER is set to YES).
753
754 FILTER_SOURCE_FILES    = NO
755
756 #---------------------------------------------------------------------------
757 # configuration options related to source browsing
758 #---------------------------------------------------------------------------
759
760 # If the SOURCE_BROWSER tag is set to YES then a list of source files
761 # will be generated. Documented entities will be cross-referenced with
762 # these sources.  Note: To get rid of all source code in the generated
763 # output, make sure also VERBATIM_HEADERS is set to NO. If you have
764 # enabled CALL_GRAPH or CALLER_GRAPH then you must also enable this
765 # option. If you don't then doxygen will produce a warning and turn it
766 # on anyway
767
768 SOURCE_BROWSER         = YES
769
770 # Setting the INLINE_SOURCES tag to YES will include the body 
771 # of functions and classes directly in the documentation.
772
773 INLINE_SOURCES         = NO
774
775 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 
776 # doxygen to hide any special comment blocks from generated source code 
777 # fragments. Normal C and C++ comments will always remain visible.
778
779 STRIP_CODE_COMMENTS    = NO
780
781 # If the REFERENCED_BY_RELATION tag is set to YES (the default) 
782 # then for each documented function all documented 
783 # functions referencing it will be listed.
784
785 REFERENCED_BY_RELATION = YES
786
787 # If the REFERENCES_RELATION tag is set to YES (the default) 
788 # then for each documented function all documented entities 
789 # called/used by that function will be listed.
790
791 REFERENCES_RELATION    = YES
792
793 # If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
794 # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
795 # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
796 # link to the source code.  Otherwise they will link to the documentstion.
797
798 REFERENCES_LINK_SOURCE = YES
799
800 # If the USE_HTAGS tag is set to YES then the references to source code 
801 # will point to the HTML generated by the htags(1) tool instead of doxygen 
802 # built-in source browser. The htags tool is part of GNU's global source 
803 # tagging system (see http://www.gnu.org/software/global/global.html). You 
804 # will need version 4.8.6 or higher.
805
806 USE_HTAGS              = NO
807
808 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 
809 # will generate a verbatim copy of the header file for each class for 
810 # which an include is specified. Set to NO to disable this.
811
812 VERBATIM_HEADERS       = NO
813
814 #---------------------------------------------------------------------------
815 # configuration options related to the alphabetical class index
816 #---------------------------------------------------------------------------
817
818 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 
819 # of all compounds will be generated. Enable this if the project 
820 # contains a lot of classes, structs, unions or interfaces.
821
822 ALPHABETICAL_INDEX     = YES
823
824 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 
825 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 
826 # in which this list will be split (can be a number in the range [1..20])
827
828 COLS_IN_ALPHA_INDEX    = 2
829
830 # In case all classes in a project start with a common prefix, all 
831 # classes will be put under the same header in the alphabetical index. 
832 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that 
833 # should be ignored while generating the index headers.
834
835 IGNORE_PREFIX          = 
836
837 #---------------------------------------------------------------------------
838 # configuration options related to the HTML output
839 #---------------------------------------------------------------------------
840
841 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will 
842 # generate HTML output.
843
844 GENERATE_HTML          = @do_html@
845
846 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 
847 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 
848 # put in front of it. If left blank `html' will be used as the default path.
849
850 HTML_OUTPUT            = @html_output_dir@
851
852 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for 
853 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank 
854 # doxygen will generate files with .html extension.
855
856 HTML_FILE_EXTENSION    = .html
857
858 # The HTML_HEADER tag can be used to specify a personal HTML header for 
859 # each generated HTML page. If it is left blank doxygen will generate a 
860 # standard header.
861
862 HTML_HEADER            = 
863
864 # The HTML_FOOTER tag can be used to specify a personal HTML footer for 
865 # each generated HTML page. If it is left blank doxygen will generate a 
866 # standard footer.
867
868 HTML_FOOTER            = 
869
870 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading 
871 # style sheet that is used by each HTML page. It can be used to 
872 # fine-tune the look of the HTML output. If the tag is left blank doxygen 
873 # will generate a default style sheet. Note that doxygen will try to copy 
874 # the style sheet file to the HTML output directory, so don't put your own 
875 # stylesheet in the HTML output directory as well, or it will be erased!
876
877 HTML_STYLESHEET        = @srcdir@/doc/doxygen/style.css
878
879 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 
880 # files or namespaces will be aligned in HTML using tables. If set to 
881 # NO a bullet list will be used.
882
883 HTML_ALIGN_MEMBERS     = NO
884
885 # If the GENERATE_HTMLHELP tag is set to YES, additional index files 
886 # will be generated that can be used as input for tools like the 
887 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 
888 # of the generated HTML documentation.
889
890 GENERATE_HTMLHELP      = NO
891
892 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 
893 # documentation will contain sections that can be hidden and shown after the 
894 # page has loaded. For this to work a browser that supports 
895 # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox 
896 # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
897
898 HTML_DYNAMIC_SECTIONS  = NO
899
900 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 
901 # be used to specify the file name of the resulting .chm file. You 
902 # can add a path in front of the file if the result should not be 
903 # written to the html output directory.
904
905 CHM_FILE               = 
906
907 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 
908 # be used to specify the location (absolute path including file name) of 
909 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 
910 # the HTML help compiler on the generated index.hhp.
911
912 HHC_LOCATION           = 
913
914 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 
915 # controls if a separate .chi index file is generated (YES) or that 
916 # it should be included in the master .chm file (NO).
917
918 GENERATE_CHI           = NO
919
920 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 
921 # controls whether a binary table of contents is generated (YES) or a 
922 # normal table of contents (NO) in the .chm file.
923
924 BINARY_TOC             = NO
925
926 # The TOC_EXPAND flag can be set to YES to add extra items for group members 
927 # to the contents of the HTML help documentation and to the tree view.
928
929 TOC_EXPAND             = NO
930
931 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at 
932 # top of each HTML page. The value NO (the default) enables the index and 
933 # the value YES disables it.
934
935 DISABLE_INDEX          = YES
936
937 # This tag can be used to set the number of enum values (range [1..20]) 
938 # that doxygen will group on one line in the generated HTML documentation.
939
940 ENUM_VALUES_PER_LINE   = 4
941
942 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
943 # generated containing a tree-like index structure (just like the one that 
944 # is generated for HTML Help). For this to work a browser that supports 
945 # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 
946 # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 
947 # probably better off using the HTML help feature.
948
949 GENERATE_TREEVIEW      = YES
950
951 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 
952 # used to set the initial width (in pixels) of the frame in which the tree 
953 # is shown.
954
955 TREEVIEW_WIDTH         = 250
956
957 #---------------------------------------------------------------------------
958 # configuration options related to the LaTeX output
959 #---------------------------------------------------------------------------
960
961 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 
962 # generate Latex output.
963
964 GENERATE_LATEX         = NO
965
966 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 
967 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 
968 # put in front of it. If left blank `latex' will be used as the default path.
969
970 LATEX_OUTPUT           = latex
971
972 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 
973 # invoked. If left blank `latex' will be used as the default command name.
974
975 LATEX_CMD_NAME         = latex
976
977 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 
978 # generate index for LaTeX. If left blank `makeindex' will be used as the 
979 # default command name.
980
981 MAKEINDEX_CMD_NAME     = makeindex
982
983 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 
984 # LaTeX documents. This may be useful for small projects and may help to 
985 # save some trees in general.
986
987 COMPACT_LATEX          = NO
988
989 # The PAPER_TYPE tag can be used to set the paper type that is used 
990 # by the printer. Possible values are: a4, a4wide, letter, legal and 
991 # executive. If left blank a4wide will be used.
992
993 PAPER_TYPE             = letter
994
995 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 
996 # packages that should be included in the LaTeX output.
997
998 EXTRA_PACKAGES         = amsmath
999
1000 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for 
1001 # the generated latex document. The header should contain everything until 
1002 # the first chapter. If it is left blank doxygen will generate a 
1003 # standard header. Notice: only use this tag if you know what you are doing!
1004
1005 LATEX_HEADER           = 
1006
1007 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 
1008 # is prepared for conversion to pdf (using ps2pdf). The pdf file will 
1009 # contain links (just like the HTML output) instead of page references 
1010 # This makes the output suitable for online browsing using a pdf viewer.
1011
1012 PDF_HYPERLINKS         = NO
1013
1014 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 
1015 # plain latex in the generated Makefile. Set this option to YES to get a 
1016 # higher quality PDF documentation.
1017
1018 USE_PDFLATEX           = NO
1019
1020 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 
1021 # command to the generated LaTeX files. This will instruct LaTeX to keep 
1022 # running if errors occur, instead of asking the user for help. 
1023 # This option is also used when generating formulas in HTML.
1024
1025 LATEX_BATCHMODE        = NO
1026
1027 # If LATEX_HIDE_INDICES is set to YES then doxygen will not 
1028 # include the index chapters (such as File Index, Compound Index, etc.) 
1029 # in the output.
1030
1031 LATEX_HIDE_INDICES     = NO
1032
1033 #---------------------------------------------------------------------------
1034 # configuration options related to the RTF output
1035 #---------------------------------------------------------------------------
1036
1037 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 
1038 # The RTF output is optimized for Word 97 and may not look very pretty with 
1039 # other RTF readers or editors.
1040
1041 GENERATE_RTF           = NO
1042
1043 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 
1044 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 
1045 # put in front of it. If left blank `rtf' will be used as the default path.
1046
1047 RTF_OUTPUT             = rtf
1048
1049 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact 
1050 # RTF documents. This may be useful for small projects and may help to 
1051 # save some trees in general.
1052
1053 COMPACT_RTF            = NO
1054
1055 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 
1056 # will contain hyperlink fields. The RTF file will 
1057 # contain links (just like the HTML output) instead of page references. 
1058 # This makes the output suitable for online browsing using WORD or other 
1059 # programs which support those fields. 
1060 # Note: wordpad (write) and others do not support links.
1061
1062 RTF_HYPERLINKS         = NO
1063
1064 # Load stylesheet definitions from file. Syntax is similar to doxygen's 
1065 # config file, i.e. a series of assignments. You only have to provide 
1066 # replacements, missing definitions are set to their default value.
1067
1068 RTF_STYLESHEET_FILE    = 
1069
1070 # Set optional variables used in the generation of an rtf document. 
1071 # Syntax is similar to doxygen's config file.
1072
1073 RTF_EXTENSIONS_FILE    = 
1074
1075 #---------------------------------------------------------------------------
1076 # configuration options related to the man page output
1077 #---------------------------------------------------------------------------
1078
1079 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will 
1080 # generate man pages
1081
1082 GENERATE_MAN           = @do_man@
1083
1084 # The MAN_OUTPUT tag is used to specify where the man pages will be put. 
1085 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 
1086 # put in front of it. If left blank `man' will be used as the default path.
1087
1088 MAN_OUTPUT             = man
1089
1090 # The MAN_EXTENSION tag determines the extension that is added to 
1091 # the generated man pages (default is the subroutine's section .3)
1092
1093 MAN_EXTENSION          = .3
1094
1095 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, 
1096 # then it will generate one additional man file for each entity 
1097 # documented in the real man page(s). These additional files 
1098 # only source the real man page, but without them the man command 
1099 # would be unable to find the correct page. The default is NO.
1100
1101 MAN_LINKS              = NO
1102
1103 #---------------------------------------------------------------------------
1104 # configuration options related to the XML output
1105 #---------------------------------------------------------------------------
1106
1107 # If the GENERATE_XML tag is set to YES Doxygen will 
1108 # generate an XML file that captures the structure of 
1109 # the code including all documentation.
1110
1111 GENERATE_XML           = NO
1112
1113 # The XML_OUTPUT tag is used to specify where the XML pages will be put. 
1114 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 
1115 # put in front of it. If left blank `xml' will be used as the default path.
1116
1117 XML_OUTPUT             = xml
1118
1119 # The XML_SCHEMA tag can be used to specify an XML schema, 
1120 # which can be used by a validating XML parser to check the 
1121 # syntax of the XML files.
1122
1123 XML_SCHEMA             = 
1124
1125 # The XML_DTD tag can be used to specify an XML DTD, 
1126 # which can be used by a validating XML parser to check the 
1127 # syntax of the XML files.
1128
1129 XML_DTD                = 
1130
1131 # If the XML_PROGRAMLISTING tag is set to YES Doxygen will 
1132 # dump the program listings (including syntax highlighting 
1133 # and cross-referencing information) to the XML output. Note that 
1134 # enabling this will significantly increase the size of the XML output.
1135
1136 XML_PROGRAMLISTING     = YES
1137
1138 #---------------------------------------------------------------------------
1139 # configuration options for the AutoGen Definitions output
1140 #---------------------------------------------------------------------------
1141
1142 # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 
1143 # generate an AutoGen Definitions (see autogen.sf.net) file 
1144 # that captures the structure of the code including all 
1145 # documentation. Note that this feature is still experimental 
1146 # and incomplete at the moment.
1147
1148 GENERATE_AUTOGEN_DEF   = NO
1149
1150 #---------------------------------------------------------------------------
1151 # configuration options related to the Perl module output
1152 #---------------------------------------------------------------------------
1153
1154 # If the GENERATE_PERLMOD tag is set to YES Doxygen will 
1155 # generate a Perl module file that captures the structure of 
1156 # the code including all documentation. Note that this 
1157 # feature is still experimental and incomplete at the 
1158 # moment.
1159
1160 GENERATE_PERLMOD       = NO
1161
1162 # If the PERLMOD_LATEX tag is set to YES Doxygen will generate 
1163 # the necessary Makefile rules, Perl scripts and LaTeX code to be able 
1164 # to generate PDF and DVI output from the Perl module output.
1165
1166 PERLMOD_LATEX          = NO
1167
1168 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 
1169 # nicely formatted so it can be parsed by a human reader.  This is useful 
1170 # if you want to understand what is going on.  On the other hand, if this 
1171 # tag is set to NO the size of the Perl module output will be much smaller 
1172 # and Perl will parse it just the same.
1173
1174 PERLMOD_PRETTY         = YES
1175
1176 # The names of the make variables in the generated doxyrules.make file 
1177 # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 
1178 # This is useful so different doxyrules.make files included by the same 
1179 # Makefile don't overwrite each other's variables.
1180
1181 PERLMOD_MAKEVAR_PREFIX = 
1182
1183 #---------------------------------------------------------------------------
1184 # Configuration options related to the preprocessor   
1185 #---------------------------------------------------------------------------
1186
1187 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 
1188 # evaluate all C-preprocessor directives found in the sources and include 
1189 # files.
1190
1191 ENABLE_PREPROCESSING   = YES
1192
1193 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 
1194 # names in the source code. If set to NO (the default) only conditional 
1195 # compilation will be performed. Macro expansion can be done in a controlled 
1196 # way by setting EXPAND_ONLY_PREDEF to YES.
1197
1198 MACRO_EXPANSION        = YES
1199
1200 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 
1201 # then the macro expansion is limited to the macros specified with the 
1202 # PREDEFINED and EXPAND_AS_DEFINED tags.
1203
1204 EXPAND_ONLY_PREDEF     = NO
1205
1206 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 
1207 # in the INCLUDE_PATH (see below) will be search if a #include is found.
1208
1209 SEARCH_INCLUDES        = YES
1210
1211 # The INCLUDE_PATH tag can be used to specify one or more directories that 
1212 # contain include files that are not input files but should be processed by 
1213 # the preprocessor.
1214
1215 INCLUDE_PATH           = 
1216
1217 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 
1218 # patterns (like *.h and *.hpp) to filter out the header-files in the 
1219 # directories. If left blank, the patterns specified with FILE_PATTERNS will 
1220 # be used.
1221
1222 INCLUDE_FILE_PATTERNS  = 
1223
1224 # The PREDEFINED tag can be used to specify one or more macro names that 
1225 # are defined before the preprocessor is started (similar to the -D option of 
1226 # gcc). The argument of the tag is a list of macros of the form: name 
1227 # or name=definition (no spaces). If the definition and the = are 
1228 # omitted =1 is assumed. To prevent a macro definition from being 
1229 # undefined via #undef or recursively expanded use the := operator 
1230 # instead of the = operator.
1231
1232 PREDEFINED             = __GTHREADS \
1233                          _GLIBCXX_STD=std \
1234                          _GLIBCXX_TR1=tr1 \
1235                          "_GLIBCXX_BEGIN_NAMESPACE(name)=namespace name {  " \
1236                          "_GLIBCXX_BEGIN_NESTED_NAMESPACE(name, unused)=namespace name {  " \
1237                          _GLIBCXX_END_NAMESPACE=} \
1238                          _GLIBCXX_END_NESTED_NAMESPACE=} \
1239                          "_GLIBCXX_TEMPLATE_ARGS=...  " \
1240                          _GLIBCXX_DEPRECATED \
1241                          _GLIBCXX_USE_WCHAR_T \
1242                          _GLIBCXX_USE_LONG_LONG \
1243                          __glibcxx_function_requires=// \
1244                          __glibcxx_class_requires=// \
1245                          __glibcxx_class_requires2=// \
1246                          __glibcxx_class_requires3=// \
1247                          __glibcxx_class_requires4=//
1248
1249 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES
1250 # then this tag can be used to specify a list of macro names that
1251 # should be expanded.  The macro definition that is found in the
1252 # sources will be used.  Use the PREDEFINED tag if you want to use a
1253 # different macro definition.
1254
1255 EXPAND_AS_DEFINED      = 
1256
1257 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 
1258 # doxygen's preprocessor will remove all function-like macros that are alone 
1259 # on a line, have an all uppercase name, and do not end with a semicolon. Such 
1260 # function macros are typically used for boiler-plate code, and will confuse 
1261 # the parser if not removed.
1262
1263 SKIP_FUNCTION_MACROS   = YES
1264
1265 #---------------------------------------------------------------------------
1266 # Configuration::additions related to external references   
1267 #---------------------------------------------------------------------------
1268
1269 # The TAGFILES option can be used to specify one or more tagfiles. 
1270 # Optionally an initial location of the external documentation 
1271 # can be added for each tagfile. The format of a tag file without 
1272 # this location is as follows: 
1273 #   TAGFILES = file1 file2 ... 
1274 # Adding location for the tag files is done as follows: 
1275 #   TAGFILES = file1=loc1 "file2 = loc2" ... 
1276 # where "loc1" and "loc2" can be relative or absolute paths or 
1277 # URLs. If a location is present for each tag, the installdox tool 
1278 # does not have to be run to correct the links.
1279 # Note that each tag file must have a unique name
1280 # (where the name does NOT include the path)
1281 # If a tag file is not located in the directory in which doxygen 
1282 # is run, you must also specify the path to the tagfile here.
1283
1284 TAGFILES               = 
1285
1286 # When a file name is specified after GENERATE_TAGFILE, doxygen will create 
1287 # a tag file that is based on the input files it reads.
1288
1289 GENERATE_TAGFILE       = @generate_tagfile@
1290
1291 # If the ALLEXTERNALS tag is set to YES all external classes will be listed 
1292 # in the class index. If set to NO only the inherited external classes 
1293 # will be listed.
1294
1295 ALLEXTERNALS           = YES
1296
1297 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 
1298 # in the modules index. If set to NO, only the current project's groups will 
1299 # be listed.
1300
1301 EXTERNAL_GROUPS        = YES
1302
1303 # The PERL_PATH should be the absolute path and name of the perl script 
1304 # interpreter (i.e. the result of `which perl').
1305
1306 PERL_PATH              = /usr/bin/perl
1307
1308 #---------------------------------------------------------------------------
1309 # Configuration options related to the dot tool   
1310 #---------------------------------------------------------------------------
1311
1312 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 
1313 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 
1314 # or super classes. Setting the tag to NO turns the diagrams off. Note that 
1315 # this option is superseded by the HAVE_DOT option below. This is only a 
1316 # fallback. It is recommended to install and use dot, since it yields more 
1317 # powerful graphs.
1318
1319 CLASS_DIAGRAMS         = YES
1320
1321 # You can define message sequence charts within doxygen comments using the \msc 
1322 # command. Doxygen will then run the mscgen tool (see http://www.mcternan.me.uk/mscgen/) to 
1323 # produce the chart and insert it in the documentation. The MSCGEN_PATH tag allows you to 
1324 # specify the directory where the mscgen tool resides. If left empty the tool is assumed to 
1325 # be found in the default search path.
1326
1327 MSCGEN_PATH            = 
1328
1329 # If set to YES, the inheritance and collaboration graphs will hide 
1330 # inheritance and usage relations if the target is undocumented 
1331 # or is not a class.
1332
1333 HIDE_UNDOC_RELATIONS   = NO
1334
1335 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 
1336 # available from the path. This tool is part of Graphviz, a graph visualization 
1337 # toolkit from AT&T and Lucent Bell Labs. The other options in this section 
1338 # have no effect if this option is set to NO (the default)
1339
1340 HAVE_DOT               = YES
1341
1342 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 
1343 # will generate a graph for each documented class showing the direct and 
1344 # indirect inheritance relations. Setting this tag to YES will force the 
1345 # the CLASS_DIAGRAMS tag to NO.
1346
1347 CLASS_GRAPH            = YES
1348
1349 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 
1350 # will generate a graph for each documented class showing the direct and 
1351 # indirect implementation dependencies (inheritance, containment, and 
1352 # class references variables) of the class with other documented classes.
1353
1354 COLLABORATION_GRAPH    = NO
1355
1356 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 
1357 # will generate a graph for groups, showing the direct groups dependencies
1358
1359 GROUP_GRAPHS           = YES
1360
1361 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and 
1362 # collaboration diagrams in a style similar to the OMG's Unified Modeling 
1363 # Language.
1364
1365 UML_LOOK               = NO
1366
1367 # If set to YES, the inheritance and collaboration graphs will show the 
1368 # relations between templates and their instances.
1369
1370 TEMPLATE_RELATIONS     = YES
1371
1372 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 
1373 # tags are set to YES then doxygen will generate a graph for each documented 
1374 # file showing the direct and indirect include dependencies of the file with 
1375 # other documented files.
1376
1377 INCLUDE_GRAPH          = NO
1378
1379 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 
1380 # HAVE_DOT tags are set to YES then doxygen will generate a graph for each 
1381 # documented header file showing the documented files that directly or 
1382 # indirectly include this file.
1383
1384 INCLUDED_BY_GRAPH      = NO
1385
1386 # If the CALL_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES
1387 # then doxygen will generate a call dependency graph for every global
1388 # function or class method.  Note that enabling this option will
1389 # significantly increase the time of a run.  So in most cases it will
1390 # be better to enable call graphs for selected functions only using
1391 # the \callgraph command.
1392
1393 CALL_GRAPH             = NO
1394
1395 # If the CALLER_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES
1396 # then doxygen will generate a caller dependency graph for every
1397 # global function or class method.  Note that enabling this option
1398 # will significantly increase the time of a run.  So in most cases it
1399 # will be better to enable caller graphs for selected functions only
1400 # using the \callergraph command.
1401
1402 CALLER_GRAPH           = NO
1403
1404 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 
1405 # will graphical hierarchy of all classes instead of a textual one.
1406
1407 GRAPHICAL_HIERARCHY    = YES
1408
1409 # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 
1410 # then doxygen will show the dependencies a directory has on other directories 
1411 # in a graphical way. The dependency relations are determined by the #include
1412 # relations between the files in the directories.
1413
1414 DIRECTORY_GRAPH        = YES
1415
1416 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 
1417 # generated by dot. Possible values are png, jpg, or gif
1418 # If left blank png will be used.
1419
1420 DOT_IMAGE_FORMAT       = png
1421
1422 # The tag DOT_PATH can be used to specify the path where the dot tool can be 
1423 # found. If left blank, it is assumed the dot tool can be found in the path.
1424
1425 DOT_PATH               = 
1426
1427 # The DOTFILE_DIRS tag can be used to specify one or more directories that 
1428 # contain dot files that are included in the documentation (see the 
1429 # \dotfile command).
1430
1431 DOTFILE_DIRS           = 
1432
1433 # The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum
1434 # number of nodes that will be shown in the graph. If the number of
1435 # nodes in a graph becomes larger than this value, doxygen will
1436 # truncate the graph, which is visualized by representing a node as a
1437 # red box. Note that doxygen if the number of direct children of the
1438 # root node in a graph is already larger than MAX_DOT_GRAPH_NOTES then
1439 # the graph will not be shown at all. Also note that the size of a
1440 # graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
1441
1442 DOT_GRAPH_MAX_NODES    = 50
1443
1444 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 
1445 # graphs generated by dot. A depth value of 3 means that only nodes reachable 
1446 # from the root by following a path via at most 3 edges will be shown. Nodes 
1447 # that lay further from the root node will be omitted. Note that setting this 
1448 # option to 1 or 2 may greatly reduce the computation time needed for large 
1449 # code bases. Also note that the size of a graph can be further restricted by 
1450 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
1451
1452 MAX_DOT_GRAPH_DEPTH    = 0
1453
1454 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 
1455 # background. This is disabled by default, which results in a white background. 
1456 # Warning: Depending on the platform used, enabling this option may lead to 
1457 # badly anti-aliased labels on the edges of a graph (i.e. they become hard to 
1458 # read).
1459
1460 DOT_TRANSPARENT        = NO
1461
1462 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 
1463 # files in one run (i.e. multiple -o and -T options on the command line). This 
1464 # makes dot run faster, but since only newer versions of dot (>1.8.10) 
1465 # support this, this feature is disabled by default.
1466
1467 DOT_MULTI_TARGETS      = YES
1468
1469 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 
1470 # generate a legend page explaining the meaning of the various boxes and 
1471 # arrows in the dot generated graphs.
1472
1473 GENERATE_LEGEND        = NO
1474
1475 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 
1476 # remove the intermediate dot files that are used to generate 
1477 # the various graphs.
1478
1479 DOT_CLEANUP            = YES
1480
1481 #---------------------------------------------------------------------------
1482 # Configuration::additions related to the search engine   
1483 #---------------------------------------------------------------------------
1484
1485 # The SEARCHENGINE tag specifies whether or not a search engine should be 
1486 # used. If set to NO the values of all tags below this one will be ignored.
1487
1488 SEARCHENGINE           = NO