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