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