Changeset 58
- Timestamp:
- 09/06/06 16:11:01 (2 years ago)
- Files:
-
- branches/scons_build_creation/Doc/opensg.doxy (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/scons_build_creation/Doc/opensg.doxy
r56 r58 1 1 # Doxyfile 1.4.4 2 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 3 13 #--------------------------------------------------------------------------- 4 14 # Project related configuration options 5 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 6 20 PROJECT_NAME = OpenSG 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 7 26 PROJECT_NUMBER = 2.0 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 8 33 OUTPUT_DIRECTORY = html 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 9 42 CREATE_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 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, 49 # Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, 50 # Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, 51 # Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, 52 # Swedish, and Ukrainian. 53 10 54 OUTPUT_LANGUAGE = English 55 56 # This tag can be used to specify the encoding used in the generated output. 57 # The encoding is not always determined by the language that is chosen, 58 # but also whether or not the output is meant for Windows or non-Windows users. 59 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES 60 # forces the Windows encoding (this is the default for the Windows binary), 61 # whereas setting the tag to NO uses a Unix-style encoding (the default for 62 # all platforms other than Windows). 63 11 64 USE_WINDOWS_ENCODING = NO 65 66 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 67 # include brief member descriptions after the members that are listed in 68 # the file and class documentation (similar to JavaDoc). 69 # Set to NO to disable this. 70 12 71 BRIEF_MEMBER_DESC = YES 72 73 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 74 # the brief description of a member or function before the detailed description. 75 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 76 # brief descriptions will be completely suppressed. 77 13 78 REPEAT_BRIEF = YES 79 80 # This tag implements a quasi-intelligent brief description abbreviator 81 # that is used to form the text in various listings. Each string 82 # in this list, if found as the leading text of the brief description, will be 83 # stripped from the text and the result after processing the whole list, is 84 # used as the annotated text. Otherwise, the brief description is used as-is. 85 # If left blank, the following values are used ("$name" is automatically 86 # replaced with the name of the entity): "The $name class" "The $name widget" 87 # "The $name file" "is" "provides" "specifies" "contains" 88 # "represents" "a" "an" "the" 89 14 90 ABBREVIATE_BRIEF = "The $name class" \ 15 91 "The $name widget" \ … … 23 99 an \ 24 100 the 101 102 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 103 # Doxygen will generate a detailed section even if there is only a brief 104 # description. 105 25 106 ALWAYS_DETAILED_SEC = NO 107 108 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 109 # inherited members of a class in the documentation of that class as if those 110 # members were ordinary class members. Constructors, destructors and assignment 111 # operators of the base classes will not be shown. 112 26 113 INLINE_INHERITED_MEMB = NO 114 115 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 116 # path before files name in the file list and in the header files. If set 117 # to NO the shortest path that makes the file name unique will be used. 118 27 119 FULL_PATH_NAMES = YES 120 121 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 122 # can be used to strip a user-defined part of the path. Stripping is 123 # only done if one of the specified strings matches the left-hand part of 124 # the path. The tag can be used to show relative paths in the file list. 125 # If left blank the directory from which doxygen is run is used as the 126 # path to strip. 127 28 128 STRIP_FROM_PATH = /home/allenb/Source/OpenSG2/Doc/ 129 130 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 131 # the path mentioned in the documentation of a class, which tells 132 # the reader which header file to include in order to use a class. 133 # If left blank only the name of the header file containing the class 134 # definition is used. Otherwise one should specify the include paths that 135 # are normally passed to the compiler using the -I flag. 136 29 137 STRIP_FROM_INC_PATH = 138 139 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 140 # (but less readable) file names. This can be useful is your file systems 141 # doesn't support long names like on DOS, Mac, or CD-ROM. 142 30 143 SHORT_NAMES = NO 144 145 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 146 # will interpret the first line (until the first dot) of a JavaDoc-style 147 # comment as the brief description. If set to NO, the JavaDoc 148 # comments will behave just like the Qt-style comments (thus requiring an 149 # explicit @brief command for a brief description. 150 31 151 JAVADOC_AUTOBRIEF = NO 152 153 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 154 # treat a multi-line C++ special comment block (i.e. a block of //! or /// 155 # comments) as a brief description. This used to be the default behaviour. 156 # The new default is to treat a multi-line C++ comment block as a detailed 157 # description. Set this tag to YES if you prefer the old behaviour instead. 158 32 159 MULTILINE_CPP_IS_BRIEF = NO 160 161 # If the DETAILS_AT_TOP tag is set to YES then Doxygen 162 # will output the detailed description near the top, like JavaDoc. 163 # If set to NO, the detailed description appears after the member 164 # documentation. 165 33 166 DETAILS_AT_TOP = NO 167 168 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 169 # member inherits the documentation from any documented member that it 170 # re-implements. 171 34 172 INHERIT_DOCS = YES 173 174 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 175 # tag is set to YES, then doxygen will reuse the documentation of the first 176 # member in the group (if any) for the other members of the group. By default 177 # all members of a group must be documented explicitly. 178 35 179 DISTRIBUTE_GROUP_DOC = NO 180 181 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 182 # a new page for each member. If set to NO, the documentation of a member will 183 # be part of the file/class/namespace that contains it. 184 36 185 SEPARATE_MEMBER_PAGES = NO 186 187 # The TAB_SIZE tag can be used to set the number of spaces in a tab. 188 # Doxygen uses this value to replace tabs by spaces in code fragments. 189 37 190 TAB_SIZE = 8 191 192 # This tag can be used to specify a number of aliases that acts 193 # as commands in the documentation. An alias has the form "name=value". 194 # For example adding "sideeffect=\par Side Effects:\n" will allow you to 195 # put the command \sideeffect (or @sideeffect) in the documentation, which 196 # will result in a user-defined paragraph with heading "Side Effects:". 197 # You can put \n's in the value part of an alias to insert newlines. 198 38 199 ALIASES = 200 201 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 202 # sources only. Doxygen will then generate output that is more tailored for C. 203 # For instance, some of the names that are used will be different. The list 204 # of all members will be omitted, etc. 205 39 206 OPTIMIZE_OUTPUT_FOR_C = NO 207 208 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources 209 # only. Doxygen will then generate output that is more tailored for Java. 210 # For instance, namespaces will be presented as packages, qualified scopes 211 # will look different, etc. 212 40 213 OPTIMIZE_OUTPUT_JAVA = NO 214 215 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of 216 # the same type (for instance a group of public functions) to be put as a 217 # subgroup of that type (e.g. under the Public Functions section). Set it to 218 # NO to prevent subgrouping. Alternatively, this can be done per class using 219 # the \nosubgrouping command. 220 41 221 SUBGROUPING = YES 222 42 223 #--------------------------------------------------------------------------- 43 224 # Build related configuration options 44 225 #--------------------------------------------------------------------------- 226 227 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 228 # documentation are documented, even if no documentation was available. 229 # Private class members and static file members will be hidden unless 230 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 231 45 232 EXTRACT_ALL = YES 233 234 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class 235 # will be included in the documentation. 236 46 237 EXTRACT_PRIVATE = YES 238 239 # If the EXTRACT_STATIC tag is set to YES all static members of a file 240 # will be included in the documentation. 241 47 242 EXTRACT_STATIC = YES 243 244 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 245 # defined locally in source files will be included in the documentation. 246 # If set to NO only classes defined in header files are included. 247 48 248 EXTRACT_LOCAL_CLASSES = YES 249 250 # This flag is only useful for Objective-C code. When set to YES local 251 # methods, which are defined in the implementation section but not in 252 # the interface are included in the documentation. 253 # If set to NO (the default) only methods in the interface are included. 254 49 255 EXTRACT_LOCAL_METHODS = NO 256 257 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 258 # undocumented members of documented classes, files or namespaces. 259 # If set to NO (the default) these members will be included in the 260 # various overviews, but no documentation section is generated. 261 # This option has no effect if EXTRACT_ALL is enabled. 262 50 263 HIDE_UNDOC_MEMBERS = NO 264 265 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 266 # undocumented classes that are normally visible in the class hierarchy. 267 # If set to NO (the default) these classes will be included in the various 268 # overviews. This option has no effect if EXTRACT_ALL is enabled. 269 51 270 HIDE_UNDOC_CLASSES = NO 271 272 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 273 # friend (class|struct|union) declarations. 274 # If set to NO (the default) these declarations will be included in the 275 # documentation. 276 52 277 HIDE_FRIEND_COMPOUNDS = NO 278 279 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 280 # documentation blocks found inside the body of a function. 281 # If set to NO (the default) these blocks will be appended to the 282 # function's detailed documentation block. 283 53 284 HIDE_IN_BODY_DOCS = NO 285 286 # The INTERNAL_DOCS tag determines if documentation 287 # that is typed after a \internal command is included. If the tag is set 288 # to NO (the default) then the documentation will be excluded. 289 # Set it to YES to include the internal documentation. 290 54 291 INTERNAL_DOCS = YES 292 293 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 294 # file names in lower-case letters. If set to YES upper-case letters are also 295 # allowed. This is useful if you have classes or files whose names only differ 296 # in case and if your file system supports case sensitive file names. Windows 297 # and Mac users are advised to set this option to NO. 298 55 299 CASE_SENSE_NAMES = YES 300 301 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 302 # will show members with their full class and namespace scopes in the 303 # documentation. If set to YES the scope will be hidden. 304 56 305 HIDE_SCOPE_NAMES = NO 306 307 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 308 # will put a list of the files that are included by a file in the documentation 309 # of that file. 310 57 311 SHOW_INCLUDE_FILES = YES 312 313 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 314 # is inserted in the documentation for inline members. 315 58 316 INLINE_INFO = YES 317 318 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 319 # will sort the (detailed) documentation of file and class members 320 # alphabetically by member name. If set to NO the members will appear in 321 # declaration order. 322 59 323 SORT_MEMBER_DOCS = YES 324 325 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 326 # brief documentation of file, namespace and class members alphabetically 327 # by member name. If set to NO (the default) the members will appear in 328 # declaration order. 329 60 330 SORT_BRIEF_DOCS = NO 331 332 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 333 # sorted by fully-qualified names, including namespaces. If set to 334 # NO (the default), the class list will be sorted only by class name, 335 # not including the namespace part. 336 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 337 # Note: This option applies only to the class list, not to the 338 # alphabetical list. 339 61 340 SORT_BY_SCOPE_NAME = NO 341 342 # The GENERATE_TODOLIST tag can be used to enable (YES) or 343 # disable (NO) the todo list. This list is created by putting \todo 344 # commands in the documentation. 345 62 346 GENERATE_TODOLIST = YES 347 348 # The GENERATE_TESTLIST tag can be used to enable (YES) or 349 # disable (NO) the test list. This list is created by putting \test 350 # commands in the documentation. 351 63 352 GENERATE_TESTLIST = YES 353 354 # The GENERATE_BUGLIST tag can be used to enable (YES) or 355 # disable (NO) the bug list. This list is created by putting \bug 356 # commands in the documentation. 357 64 358 GENERATE_BUGLIST = YES 359 360 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 361 # disable (NO) the deprecated list. This list is created by putting 362 # \deprecated commands in the documentation. 363 65 364 GENERATE_DEPRECATEDLIST= YES 365 366 # The ENABLED_SECTIONS tag can be used to enable conditional 367 # documentation sections, marked by \if sectionname ... \endif. 368 66 369 ENABLED_SECTIONS = 370 371 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines 372 # the initial value of a variable or define consists of for it to appear in 373 # the documentation. If the initializer consists of more lines than specified 374 # here it will be hidden. Use a value of 0 to hide initializers completely. 375 # The appearance of the initializer of individual variables and defines in the 376 # documentation can be controlled using \showinitializer or \hideinitializer 377 # command in the documentation regardless of this setting. 378 67 379 MAX_INITIALIZER_LINES = 30 380 381 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated 382 # at the bottom of the documentation of classes and structs. If set to YES the 383 # list will mention the files that were used to generate the documentation. 384 68 385 SHOW_USED_FILES = YES 386 387 # If the sources in your project are distributed over multiple directories 388 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 389 # in the documentation. The default is YES. 390 69 391 SHOW_DIRECTORIES = YES 392 393 # The FILE_VERSION_FILTER tag can be used to specify a program or script that 394 # doxygen should invoke to get the current version for each file (typically from the 395 # version control system). Doxygen will invoke the program by executing (via 396 # popen()) the command <command> <input-file>, where <command> is the value of 397 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 398 # provided by doxygen. Whatever the progam writes to standard output 399 # is used as the file version. See the manual for examples. 400 70 401 FILE_VERSION_FILTER = 402 71 403 #--------------------------------------------------------------------------- 72 404 # configuration options related to warning and progress messages 73 405 #--------------------------------------------------------------------------- 406 407 # The QUIET tag can be used to turn on/off the messages that are generated 408 # by doxygen. Possible values are YES and NO. If left blank NO is used. 409 74 410 QUIET = NO 411 412 # The WARNINGS tag can be used to turn on/off the warning messages that are 413 # generated by doxygen. Possible values are YES and NO. If left blank 414 # NO is used. 415 75 416 WARNINGS = YES 417 418 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 419 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will 420 # automatically be disabled. 421 76 422 WARN_IF_UNDOCUMENTED = YES 423 424 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 425 # potential errors in the documentation, such as not documenting some 426 # parameters in a documented function, or documenting parameters that 427 # don't exist or using markup commands wrongly. 428 77 429 WARN_IF_DOC_ERROR = YES 430 431 # This WARN_NO_PARAMDOC option can be abled to get warnings for 432 # functions that are documented, but have no documentation for their parameters 433 # or return value. If set to NO (the default) doxygen will only warn about 434 # wrong or incomplete parameter documentation, but not about the absence of 435 # documentation. 436 78 437 WARN_NO_PARAMDOC = NO 438 439 # The WARN_FORMAT tag determines the format of the warning messages that 440 # doxygen can produce. The string should contain the $file, $line, and $text 441 # tags, which will be replaced by the file and line number from which the 442 # warning originated and the warning text. Optionally the format may contain 443 # $version, which will be replaced by the version of the file (if it could 444 # be obtained via FILE_VERSION_FILTER) 445 79 446 WARN_FORMAT = "$file:$line: $text" 447 448 # The WARN_LOGFILE tag can be used to specify a file to which warning 449 # and error messages should be written. If left blank the output is written 450 # to stderr. 451 80 452 WARN_LOGFILE = 453 81 454 #--------------------------------------------------------------------------- 82 455 # configuration options related to the input files 83 456 #--------------------------------------------------------------------------- 457 458 # The INPUT tag can be used to specify the files and/or directories that contain 459 # documented source files. You may enter file names like "myfile.cpp" or 460 # directories like "/usr/src/myproject". Separate the files or directories 461 # with spaces. 462 84 463 INPUT = ../Source/ 464 465 # If the value of the INPUT tag contains directories, you can use the 466 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 467 # and *.h) to filter out the source-files in the directories. If left 468 # blank the following patterns are tested: 469 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 470 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm 471 85 472 FILE_PATTERNS = *.c \ 86 473 *.cc \ … … 122 509 *.M \ 123 510 *.MM 511 512 # The RECURSIVE tag can be used to turn specify whether or not subdirectories 513 # should be searched for input files as well. Possible values are YES and NO. 514 # If left blank NO is used. 515 124 516 RECURSIVE = YES 517 518 # The EXCLUDE tag can be used to specify files and/or directories that should 519 # excluded from the INPUT source files. This way you can easily exclude a 520 # subdirectory from a directory tree whose root is specified with the INPUT tag. 521 125 522 EXCLUDE = 523 524 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or 525 # directories that are symbolic links (a Unix filesystem feature) are excluded 526 # from the input. 527 126 528 EXCLUDE_SYMLINKS = NO 529 530 # If the value of the INPUT tag contains directories, you can use the 531 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 532 # certain files from those directories. Note that the wildcards are matched 533 # against the file with absolute path, so to exclude all test directories 534 # for example use the pattern */test/* 535 127 536 EXCLUDE_PATTERNS = 537 538 # The EXAMPLE_PATH tag can be used to specify one or more files or 539 # directories that contain example code fragments that are included (see 540 # the \include command). 541 128 542 EXAMPLE_PATH = 543 544 # If the value of the EXAMPLE_PATH tag contains directories, you can use the 545 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 546 # and *.h) to filter out the source-files in the directories. If left 547 # blank all files are included. 548 129 549 EXAMPLE_PATTERNS = * 550 551 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 552 # searched for input files to be used with the \include or \dontinclude 553 # commands irrespective of the value of the RECURSIVE tag. 554 # Possible values are YES and NO. If left blank NO is used. 555 130 556 EXAMPLE_RECURSIVE = NO 557 558 # The IMAGE_PATH tag can be used to specify one or more files or 559 # directories that contain image that are included in the documentation (see 560 # the \image command). 561 131 562 IMAGE_PATH = 563 564 # The INPUT_FILTER tag can be used to specify a program that doxygen should 565 # invoke to filter for each input file. Doxygen will invoke the filter program 566 # by executing (via popen()) the command <filter> <input-file>, where <filter> 567 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an 568 # input file. Doxygen will then use the output that the filter program writes 569 # to standard output. If FILTER_PATTERNS is specified, this tag will be 570 # ignored. 571 132 572 INPUT_FILTER = 573 574 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 575 # basis. Doxygen will compare the file name with each pattern and apply the 576 # filter if there is a match. The filters are a list of the form: 577 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 578 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 579 # is applied to all files. 580 133 581 FILTER_PATTERNS = 582 583 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 584 # INPUT_FILTER) will be used to filter the input files when producing source 585 # files to browse (i.e. when SOURCE_BROWSER is set to YES). 586 134 587 FILTER_SOURCE_FILES = NO 588 135 589 #--------------------------------------------------------------------------- 136 590 # configuration options related to source browsing 137 591 #--------------------------------------------------------------------------- 592 593 # If the SOURCE_BROWSER tag is set to YES then a list of source files will 594 # be generated. Documented entities will be cross-referenced with these sources. 595 # Note: To get rid of all source code in the generated output, make sure also 596 # VERBATIM_HEADERS is set to NO. 597 138 598 SOURCE_BROWSER = YES 599 600 # Setting the INLINE_SOURCES tag to YES will include the body 601 # of functions and classes directly in the documentation. 602 139 603 INLINE_SOURCES = YES 604 605 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 606 # doxygen to hide any special comment blocks from generated source code 607 # fragments. Normal C and C++ comments will always remain visible. 608 140 609 STRIP_CODE_COMMENTS = YES 610 611 # If the REFERENCED_BY_RELATION tag is set to YES (the default) 612 # then for each documented function all documented 613 # functions referencing it will be listed. 614 141 615 REFERENCED_BY_RELATION = YES 616 617 # If the REFERENCES_RELATION tag is set to YES (the default) 618 # then for each documented function all documented entities 619 # called/used by that function will be listed. 620 142 621 REFERENCES_RELATION = YES 622 623 # If the USE_HTAGS tag is set to YES then the references to source code 624 # will point to the HTML generated by the htags(1) tool instead of doxygen 625 # built-in source browser. The htags tool is part of GNU's global source 626 # tagging system (see http://www.gnu.org/software/global/global.html). You 627 # will need version 4.8.6 or higher. 628 143 629 USE_HTAGS = NO 630 631 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 632 # will generate a verbatim copy of the header file for each class for 633 # which an include is specified. Set to NO to disable this. 634 144 635 VERBATIM_HEADERS = YES 636 145 637 #--------------------------------------------------------------------------- 146 638 # configuration options related to the alphabetical class index 147 639 #--------------------------------------------------------------------------- 640 641 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 642 # of all compounds will be generated. Enable this if the project 643 # contains a lot of classes, structs, unions or interfaces. 644 148 645 ALPHABETICAL_INDEX = NO 646 647 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 648 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 649 # in which this list will be split (can be a number in the range [1..20]) 650 149 651 COLS_IN_ALPHA_INDEX = 5 652 653 # In case all classes in a project start with a common prefix, all 654 # classes will be put under the same header in the alphabetical index. 655 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that 656 # should be ignored while generating the index headers. 657 150 658 IGNORE_PREFIX = 659 151 660 #--------------------------------------------------------------------------- 152 661 # configuration options related to the HTML output 153 662 #--------------------------------------------------------------------------- 663 664 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will 665 # generate HTML output. 666 154 667 GENERATE_HTML = YES 668 669 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 670 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 671 # put in front of it. If left blank `html' will be used as the default path. 672 155 673 HTML_OUTPUT = html 674 675 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for 676 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank 677 # doxygen will generate files with .html extension. 678 156 679 HTML_FILE_EXTENSION = .html 680 681 # The HTML_HEADER tag can be used to specify a personal HTML header for 682 # each generated HTML page. If it is left blank doxygen will generate a 683 # standard header. 684 157 685 HTML_HEADER = 686 687 # The HTML_FOOTER tag can be used to specify a personal HTML footer for 688 # each generated HTML page. If it is left blank doxygen will generate a 689 # standard footer. 690 158 691 HTML_FOOTER = 692 693 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading 694 # style sheet that is used by each HTML page. It can be used to 695 # fine-tune the look of the HTML output. If the tag is left blank doxygen 696 # will generate a default style sheet. Note that doxygen will try to copy 697 # the style sheet file to the HTML output directory, so don't put your own 698 # stylesheet in the HTML output directory as well, or it will be erased! 699 159 700 HTML_STYLESHEET = 701 702 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 703 # files or namespaces will be aligned in HTML using tables. If set to 704 # NO a bullet list will be used. 705 160 706 HTML_ALIGN_MEMBERS = YES 707 708 # If the GENERATE_HTMLHELP tag is set to YES, additional index files 709 # will be generated that can be used as input for tools like the 710 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 711 # of the generated HTML documentation. 712 161 713 GENERATE_HTMLHELP = NO 714 715 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 716 # be used to specify the file name of the resulting .chm file. You 717 # can add a path in front of the file if the result should not be 718 # written to the html output directory. 719 162 720 CHM_FILE = 721 722 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 723 # be used to specify the location (absolute path including file name) of 724 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 725 # the HTML help compiler on the generated index.hhp. 726 163 727 HHC_LOCATION = 728 729 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 730 # controls if a separate .chi index file is generated (YES) or that 731 # it should be included in the master .chm file (NO). 732 164 733 GENERATE_CHI = NO 734 735 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 736 # controls whether a binary table of contents is generated (YES) or a 737 # normal table of contents (NO) in the .chm file. 738 165 739 BINARY_TOC = NO 740 741 # The TOC_EXPAND flag can be set to YES to add extra items for group members 742 # to the contents of the HTML help documentation and to the tree view. 743 166 744 TOC_EXPAND = NO 745 746 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at 747 # top of each HTML page. The value NO (the default) enables the index and 748 # the value YES disables it. 749 167 750 DISABLE_INDEX = NO 751 752 # This tag can be used to set the number of enum values (range [1..20]) 753 # that doxygen will group on one line in the generated HTML documentation. 754 168 755 ENUM_VALUES_PER_LINE = 4 756 757 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be 758 # generated containing a tree-like index structure (just like the one that 759 # is generated for HTML Help). For this to work a browser that supports 760 # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 761 # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 762 # probably better off using the HTML help feature. 763 169 764 GENERATE_TREEVIEW = NO 765 766 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 767 # used to set the initial width (in pixels) of the frame in which the tree 768 # is shown. 769 170 770 TREEVIEW_WIDTH = 250 771 171 772 #--------------------------------------------------------------------------- 172 773 # configuration options related to the LaTeX output 173 774 #--------------------------------------------------------------------------- 775 776 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 777 # generate Latex output. 778 174 779 GENERATE_LATEX = NO 780 781 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 782 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 783 # put in front of it. If left blank `latex' will be used as the default path. 784 175 785 LATEX_OUTPUT = latex 786 787 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 788 # invoked. If left blank `latex' will be used as the default command name. 789 176 790 LATEX_CMD_NAME = latex 791 792 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 793 # generate index for LaTeX. If left blank `makeindex' will be used as the 794 # default command name. 795 177 796 MAKEINDEX_CMD_NAME = makeindex 797 798 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 799 # LaTeX documents. This may be useful for small projects and may help to 800 # save some trees in general. 801 178 802 COMPACT_LATEX = NO 803 804 # The PAPER_TYPE tag can be used to set the paper type that is used 805 # by the printer. Possible values are: a4, a4wide, letter, legal and 806 # executive. If left blank a4wide will be used. 807 179 808 PAPER_TYPE = a4wide 809 810 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 811 # packages that should be included in the LaTeX output. 812 180 813 EXTRA_PACKAGES = 814 815 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for 816 # the generated latex document. The header should contain everything until 817 # the first chapter. If it is left blank doxygen will generate a 818 # standard header. Notice: only use this tag if you know what you are doing! 819 181 820 LATEX_HEADER = 821 822 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 823 # is prepared for conversion to pdf (using ps2pdf). The pdf file will 824 # contain links (just like the HTML output) instead of page references 825 # This makes the output suitable for online browsing using a pdf viewer. 826 182 827 PDF_HYPERLINKS = NO 828 829 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 830 # plain latex in the generated Makefile. Set this option to YES to get a 831 # higher quality PDF documentation. 832 183 833 USE_PDFLATEX = NO 834 835 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 836 # command to the generated LaTeX files. This will instruct LaTeX to keep 837 # running if errors occur, instead of asking the user for help. 838 # This option is also used when generating formulas in HTML. 839 184 840 LATEX_BATCHMODE = NO 841 842 # If LATEX_HIDE_INDICES is set to YES then doxygen will not 843 # include the index chapters (such as File Index, Compound Index, etc.) 844 # in the output. 845 185 846 LATEX_HIDE_INDICES = NO 847 186 848 #--------------------------------------------------------------------------- 187 849 # configuration options related to the RTF output 188 850 #--------------------------------------------------------------------------- 851 852 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 853 # The RTF output is optimized for Word 97 and may not look very pretty with 854 # other RTF readers or editors. 855 189 856 GENERATE_RTF = NO 857 858 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 859 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 860 # put in front of it. If left blank `rtf' will be used as the default path. 861 190 862 RTF_OUTPUT = rtf 863 864 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact 865 # RTF documents. This may be useful for small projects and may help to 866 # save some trees in general. 867 191 868 COMPACT_RTF = NO 869 870 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 871 # will contain hyperlink fields. The RTF file will 872 # contain links (just like the HTML output) instead of page references. 873 # This makes the output suitable for online browsing using WORD or other 874 # programs which support those fields. 875 # Note: wordpad (write) and others do not support links. 876 192 877 RTF_HYPERLINKS = NO 878 879 # Load stylesheet definitions from file. Syntax is similar to doxygen's 880 # config file, i.e. a series of assignments. You only have to provide 881 # replacements, missing definitions are set to their default value. 882 193 883 RTF_STYLESHEET_FILE = 884 885 # Set optional variables used in the generation of an rtf document. 886 # Syntax is similar to doxygen's config file. 887 194 888 RTF_EXTENSIONS_FILE = 889 195 890 #--------------------------------------------------------------------------- 196 891 # configuration options related to the man page output 197 892 #--------------------------------------------------------------------------- 893 894 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will 895 # generate man pages 896 198 897 GENERATE_MAN = NO 898 899 # The MAN_OUTPUT tag is used to specify where the man pages will be put. 900 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 901 # put in front of it. If left blank `man' will be used as the default path. 902 199 903 MAN_OUTPUT = man 904 905 # The MAN_EXTENSION tag determines the extension that is added to 906 # the generated man pages (default is the subroutine's section .3) 907 200 908 MAN_EXTENSION = .3 909 910 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, 911 # then it will generate one additional man file for each entity 912 # documented in the real man page(s). These additional files 913 # only source the real man page, but without them the man command 914 # would be unable to find the correct page. The default is NO. 915 201 916 MAN_LINKS = NO 917 202 918 #--------------------------------------------------------------------------- 203 919 # configuration options related to the XML output 204 920 #--------------------------------------------------------------------------- 921 922 # If the GENERATE_XML tag is set to YES Doxygen will 923 # generate an XML file that captures the structure of 924 # the code including all documentation. 925 205 926 GENERATE_XML = NO 927 928 # The XML_OUTPUT tag is used to specify where the XML pages will be put. 929 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 930 # put in front of it. If left blank `xml' will be used as the default path. 931 206 932 XML_OUTPUT = xml 933 934 # The XML_SCHEMA tag can be used to specify an XML schema, 935 # which can be used by a validating XML parser to check the 936 # syntax of the XML files. 937 207 938 XML_SCHEMA = 939 940 # The XML_DTD tag can be used to specify an XML DTD, 941 # which can be used by a validating XML parser to check the 942 # syntax of the XML files. 943 208 944 XML_DTD = 945 946 # If the XML_PROGRAMLISTING tag is set to YES Doxygen will 947 # dump the program listings (including syntax highlighting 948 # and cross-referencing information) to the XML output. Note that 949 # enabling this will significantly increase the size of the XML output. 950 209 951 XML_PROGRAMLISTING = YES 952 210 953 #--------------------------------------------------------------------------- 211 954 # configuration options for the AutoGen Definitions output 212 955 #--------------------------------------------------------------------------- 956 957 # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 958 # generate an AutoGen Definitions (see autogen.sf.net) file 959 # that captures the structure of the code including all 960 # documentation. Note that this feature is still experimental 961 # and incomplete at the moment. 962 213 963 GENERATE_AUTOGEN_DEF = NO 964 214 965 #--------------------------------------------------------------------------- 215 966 # configuration options related to the Perl module output 216 967 #--------------------------------------------------------------------------- 968 969 # If the GENERATE_PERLMOD tag is set to YES Doxygen will 970 # generate a Perl module file that captures the structure of 971 # the code including all documentation. Note that this 972 # feature is still experimental and incomplete at the 973 # moment. 974 217 975 GENERATE_PERLMOD = NO 976 977 # If the PERLMOD_LATEX tag is set to YES Doxygen will generate 978 # the necessary Makefile rules, Perl scripts and LaTeX code to be able 979 # to generate PDF and DVI output from the Perl module output. 980 218 981 PERLMOD_LATEX = NO 982 983 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 984 # nicely formatted so it can be parsed by a human reader. This is useful 985 # if you want to understand what is going on. On the other hand, if this 986 # tag is set to NO the size of the Perl module output will be much smaller 987 # and Perl will parse it just the same. 988 219 989 PERLMOD_PRETTY = YES 990 991 # The names of the make variables in the generated doxyrules.make file 992 # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 993 # This is useful so different doxyrules.make files included by the same 994 # Makefile don't overwrite each other's variables. 995 220 996 PERLMOD_MAKEVAR_PREFIX = 997 221 998 #--------------------------------------------------------------------------- 222 999 # Configuration options related to the preprocessor 223 1000 #--------------------------------------------------------------------------- 1001 1002 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 1003 # evaluate all C-preprocessor directives found in the sources and include 1004 # files. 1005 224 1006 ENABLE_PREPROCESSING = YES 1007 1008 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 1009 # names in the source code. If set to NO (the default) only conditional 1010 # compilation will be performed. Macro expansion can be done in a controlled 1011
