Changeset 3683
- Timestamp:
- 2008-08-05 03:54:29 (5 months ago)
- Files:
-
- liboggz/trunk/doc/Doxyfile.in (modified) (39 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
liboggz/trunk/doc/Doxyfile.in
r346 r3683 1 # Doxyfile 1. 3.41 # Doxyfile 1.5.5 2 2 3 3 # This file describes the settings to be used by the documentation system … … 15 15 #--------------------------------------------------------------------------- 16 16 17 # This tag specifies the encoding used for all characters in the config file 18 # that follow. The default is UTF-8 which is also the encoding used for all 19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the 20 # iconv built into libc) for the transcoding. See 21 # http://www.gnu.org/software/libiconv for the list of possible encodings. 22 23 DOXYFILE_ENCODING = UTF-8 24 17 25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 18 26 # by quotes) that should identify the project. … … 33 41 OUTPUT_DIRECTORY = liboggz 34 42 43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 44 # 4096 sub-directories (in 2 levels) under the output directory of each output 45 # format and will distribute the generated files over these directories. 46 # Enabling this option can be useful when feeding doxygen a huge amount of 47 # source files, where putting all generated files in the same directory would 48 # otherwise cause performance problems for the file system. 49 50 CREATE_SUBDIRS = NO 51 35 52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all 36 53 # documentation generated by doxygen is written. Doxygen will use this 37 54 # information to generate all constant output in the proper language. 38 55 # The default language is English, other supported languages are: 39 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, 40 # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en 41 # (Japanese with English messages), Korean, Norwegian, Polish, Portuguese, 42 # Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian. 56 # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 57 # Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, 58 # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), 59 # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, 60 # Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, 61 # and Ukrainian. 43 62 44 63 OUTPUT_LANGUAGE = English 45 46 # This tag can be used to specify the encoding used in the generated output.47 # The encoding is not always determined by the language that is chosen,48 # but also whether or not the output is meant for Windows or non-Windows users.49 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES50 # forces the Windows encoding (this is the default for the Windows binary),51 # whereas setting the tag to NO uses a Unix-style encoding (the default for52 # all platforms other than Windows).53 54 USE_WINDOWS_ENCODING = NO55 64 56 65 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will … … 68 77 REPEAT_BRIEF = YES 69 78 79 # This tag implements a quasi-intelligent brief description abbreviator 80 # that is used to form the text in various listings. Each string 81 # in this list, if found as the leading text of the brief description, will be 82 # stripped from the text and the result after processing the whole list, is 83 # used as the annotated text. Otherwise, the brief description is used as-is. 84 # If left blank, the following values are used ("$name" is automatically 85 # replaced with the name of the entity): "The $name class" "The $name widget" 86 # "The $name file" "is" "provides" "specifies" "contains" 87 # "represents" "a" "an" "the" 88 89 ABBREVIATE_BRIEF = 90 70 91 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 71 92 # Doxygen will generate a detailed section even if there is only a brief … … 74 95 ALWAYS_DETAILED_SEC = NO 75 96 76 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited77 # members of a class in the documentation of that class as if those members were78 # ordinary class members. Constructors, destructors and assignment operators of79 # the base classes will not be shown.97 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 98 # inherited members of a class in the documentation of that class as if those 99 # members were ordinary class members. Constructors, destructors and assignment 100 # operators of the base classes will not be shown. 80 101 81 102 INLINE_INHERITED_MEMB = NO … … 90 111 # can be used to strip a user-defined part of the path. Stripping is 91 112 # only done if one of the specified strings matches the left-hand part of 92 # the path. It is allowed to use relative paths in the argument list. 113 # the path. The tag can be used to show relative paths in the file list. 114 # If left blank the directory from which doxygen is run is used as the 115 # path to strip. 93 116 94 117 STRIP_FROM_PATH = 118 119 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 120 # the path mentioned in the documentation of a class, which tells 121 # the reader which header file to include in order to use a class. 122 # If left blank only the name of the header file containing the class 123 # definition is used. Otherwise one should specify the include paths that 124 # are normally passed to the compiler using the -I flag. 125 126 STRIP_FROM_INC_PATH = 95 127 96 128 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter … … 103 135 # will interpret the first line (until the first dot) of a JavaDoc-style 104 136 # comment as the brief description. If set to NO, the JavaDoc 105 # comments will behave just like the Qt-style comments (thus requiring an106 # explict @brief command for a brief description.137 # comments will behave just like regular Qt-style comments 138 # (thus requiring an explicit @brief command for a brief description.) 107 139 108 140 JAVADOC_AUTOBRIEF = YES 141 142 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will 143 # interpret the first line (until the first dot) of a Qt-style 144 # comment as the brief description. If set to NO, the comments 145 # will behave just like regular Qt-style comments (thus requiring 146 # an explicit \brief command for a brief description.) 147 148 QT_AUTOBRIEF = NO 109 149 110 150 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen … … 125 165 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 126 166 # member inherits the documentation from any documented member that it 127 # re implements.167 # re-implements. 128 168 129 169 INHERIT_DOCS = YES 130 170 131 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 132 # tag is set to YES, then doxygen will reuse the documentation of the first 133 # member in the group (if any) for the other members of the group. By default 134 # all members of a group must be documented explicitly. 135 136 DISTRIBUTE_GROUP_DOC = NO 171 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 172 # a new page for each member. If set to NO, the documentation of a member will 173 # be part of the file/class/namespace that contains it. 174 175 SEPARATE_MEMBER_PAGES = NO 137 176 138 177 # The TAB_SIZE tag can be used to set the number of spaces in a tab. … … 150 189 ALIASES = 151 190 152 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources153 # only. Doxygen will then generate output that is more tailored for C.191 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 192 # sources only. Doxygen will then generate output that is more tailored for C. 154 193 # For instance, some of the names that are used will be different. The list 155 194 # of all members will be omitted, etc. … … 157 196 OPTIMIZE_OUTPUT_FOR_C = YES 158 197 159 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources160 # only. Doxygen will then generate output that is more tailored for Java.161 # For instance, namespaces will be presented as packages, qualified scopes162 # will look different, etc.198 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 199 # sources only. Doxygen will then generate output that is more tailored for 200 # Java. For instance, namespaces will be presented as packages, qualified 201 # scopes will look different, etc. 163 202 164 203 OPTIMIZE_OUTPUT_JAVA = NO 204 205 # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran 206 # sources only. Doxygen will then generate output that is more tailored for 207 # Fortran. 208 209 OPTIMIZE_FOR_FORTRAN = NO 210 211 # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL 212 # sources. Doxygen will then generate output that is tailored for 213 # VHDL. 214 215 OPTIMIZE_OUTPUT_VHDL = NO 216 217 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 218 # to include (a tag file for) the STL sources as input, then you should 219 # set this tag to YES in order to let doxygen match functions declarations and 220 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 221 # func(std::string) {}). This also make the inheritance and collaboration 222 # diagrams that involve STL classes more complete and accurate. 223 224 BUILTIN_STL_SUPPORT = NO 225 226 # If you use Microsoft's C++/CLI language, you should set this option to YES to 227 # enable parsing support. 228 229 CPP_CLI_SUPPORT = NO 230 231 # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. 232 # Doxygen will parse them like normal C++ but will assume all classes use public 233 # instead of private inheritance when no explicit protection keyword is present. 234 235 SIP_SUPPORT = NO 236 237 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 238 # tag is set to YES, then doxygen will reuse the documentation of the first 239 # member in the group (if any) for the other members of the group. By default 240 # all members of a group must be documented explicitly. 241 242 DISTRIBUTE_GROUP_DOC = NO 165 243 166 244 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of … … 172 250 SUBGROUPING = YES 173 251 252 # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum 253 # is documented as struct, union, or enum with the name of the typedef. So 254 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct 255 # with name TypeT. When disabled the typedef will appear as a member of a file, 256 # namespace, or class. And the struct will be named TypeS. This can typically 257 # be useful for C code in case the coding convention dictates that all compound 258 # types are typedef'ed and only the typedef is referenced, never the tag name. 259 260 TYPEDEF_HIDES_STRUCT = NO 261 174 262 #--------------------------------------------------------------------------- 175 263 # Build related configuration options … … 198 286 199 287 EXTRACT_LOCAL_CLASSES = YES 288 289 # This flag is only useful for Objective-C code. When set to YES local 290 # methods, which are defined in the implementation section but not in 291 # the interface are included in the documentation. 292 # If set to NO (the default) only methods in the interface are included. 293 294 EXTRACT_LOCAL_METHODS = NO 295 296 # If this flag is set to YES, the members of anonymous namespaces will be 297 # extracted and appear in the documentation as a namespace called 298 # 'anonymous_namespace{file}', where file will be replaced with the base 299 # name of the file that contains the anonymous namespace. By default 300 # anonymous namespace are hidden. 301 302 EXTRACT_ANON_NSPACES = NO 200 303 201 304 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all … … 239 342 # allowed. This is useful if you have classes or files whose names only differ 240 343 # in case and if your file system supports case sensitive file names. Windows 241 # users are advised to set this option to NO.344 # and Mac users are advised to set this option to NO. 242 345 243 346 CASE_SENSE_NAMES = YES … … 266 369 267 370 SORT_MEMBER_DOCS = YES 371 372 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 373 # brief documentation of file, namespace and class members alphabetically 374 # by member name. If set to NO (the default) the members will appear in 375 # declaration order. 376 377 SORT_BRIEF_DOCS = NO 378 379 # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the 380 # hierarchy of group names into alphabetical order. If set to NO (the default) 381 # the group names will appear in their defined order. 382 383 SORT_GROUP_NAMES = NO 384 385 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 386 # sorted by fully-qualified names, including namespaces. If set to 387 # NO (the default), the class list will be sorted only by class name, 388 # not including the namespace part. 389 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 390 # Note: This option applies only to the class list, not to the 391 # alphabetical list. 392 393 SORT_BY_SCOPE_NAME = NO 268 394 269 395 # The GENERATE_TODOLIST tag can be used to enable (YES) or … … 312 438 SHOW_USED_FILES = YES 313 439 440 # If the sources in your project are distributed over multiple directories 441 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 442 # in the documentation. The default is NO. 443 444 SHOW_DIRECTORIES = NO 445 446 # The FILE_VERSION_FILTER tag can be used to specify a program or script that 447 # doxygen should invoke to get the current version for each file (typically from 448 # the version control system). Doxygen will invoke the program by executing (via 449 # popen()) the command <command> <input-file>, where <command> is the value of 450 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 451 # provided by doxygen. Whatever the program writes to standard output 452 # is used as the file version. See the manual for examples. 453 454 FILE_VERSION_FILTER = 455 314 456 #--------------------------------------------------------------------------- 315 457 # configuration options related to warning and progress messages … … 340 482 WARN_IF_DOC_ERROR = YES 341 483 484 # This WARN_NO_PARAMDOC option can be abled to get warnings for 485 # functions that are documented, but have no documentation for their parameters 486 # or return value. If set to NO (the default) doxygen will only warn about 487 # wrong or incomplete parameter documentation, but not about the absence of 488 # documentation. 489 490 WARN_NO_PARAMDOC = NO 491 342 492 # The WARN_FORMAT tag determines the format of the warning messages that 343 493 # doxygen can produce. The string should contain the $file, $line, and $text 344 494 # tags, which will be replaced by the file and line number from which the 345 # warning originated and the warning text. 495 # warning originated and the warning text. Optionally the format may contain 496 # $version, which will be replaced by the version of the file (if it could 497 # be obtained via FILE_VERSION_FILTER) 346 498 347 499 WARN_FORMAT = "$file:$line: $text" … … 364 516 INPUT = @top_srcdir@/include/oggz 365 517 518 # This tag can be used to specify the character encoding of the source files 519 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is 520 # also the default input encoding. Doxygen uses libiconv (or the iconv built 521 # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for 522 # the list of possible encodings. 523 524 INPUT_ENCODING = UTF-8 525 366 526 # If the value of the INPUT tag contains directories, you can use the 367 527 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 368 528 # and *.h) to filter out the source-files in the directories. If left 369 529 # blank the following patterns are tested: 370 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp371 # *.h ++ *.idl *.odl *.cs *.php *.php3 *.inc530 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 531 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 372 532 373 533 FILE_PATTERNS = … … 385 545 EXCLUDE = 386 546 387 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories 388 # that are symbolic links (a Unix filesystem feature) are excluded from the input. 547 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or 548 # directories that are symbolic links (a Unix filesystem feature) are excluded 549 # from the input. 389 550 390 551 EXCLUDE_SYMLINKS = NO … … 392 553 # If the value of the INPUT tag contains directories, you can use the 393 554 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 394 # certain files from those directories. 555 # certain files from those directories. Note that the wildcards are matched 556 # against the file with absolute path, so to exclude all test directories 557 # for example use the pattern */test/* 395 558 396 559 EXCLUDE_PATTERNS = 560 561 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 562 # (namespaces, classes, functions, etc.) that should be excluded from the 563 # output. The symbol name can be a fully qualified name, a word, or if the 564 # wildcard * is used, a substring. Examples: ANamespace, AClass, 565 # AClass::ANamespace, ANamespace::*Test 566 567 EXCLUDE_SYMBOLS = 397 568 398 569 # The EXAMPLE_PATH tag can be used to specify one or more files or … … 400 571 # the \include command). 401 572 402 EXAMPLE_PATH = ../COPYING ../INSTALL ../src/examples 573 EXAMPLE_PATH = ../COPYING \ 574 ../INSTALL \ 575 ../src/examples 403 576 404 577 # If the value of the EXAMPLE_PATH tag contains directories, you can use the … … 427 600 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an 428 601 # input file. Doxygen will then use the output that the filter program writes 429 # to standard output. 602 # to standard output. If FILTER_PATTERNS is specified, this tag will be 603 # ignored. 430 604 431 605 INPUT_FILTER = 606 607 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 608 # basis. Doxygen will compare the file name with each pattern and apply the 609 # filter if there is a match. The filters are a list of the form: 610 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 611 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 612 # is applied to all files. 613 614 FILTER_PATTERNS = 432 615 433 616 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using … … 442 625 443 626 # If the SOURCE_BROWSER tag is set to YES then a list of source files will 444 # be generated. Documented entities will be cross-referenced with these sources. 627 # be generated. Documented entities will be cross-referenced with these sources. 628 # Note: To get rid of all source code in the generated output, make sure also 629 # VERBATIM_HEADERS is set to NO. 445 630 446 631 SOURCE_BROWSER = NO … … 468 653 469 654 REFERENCES_RELATION = YES 655 656 # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 657 # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 658 # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 659 # link to the source code. Otherwise they will link to the documentstion. 660 661 REFERENCES_LINK_SOURCE = YES 662 663 # If the USE_HTAGS tag is set to YES then the references to source code 664 # will point to the HTML generated by the htags(1) tool instead of doxygen 665 # built-in source browser. The htags tool is part of GNU's global source 666 # tagging system (see http://www.gnu.org/software/global/global.html). You 667 # will need version 4.8.6 or higher. 668 669 USE_HTAGS = NO 470 670 471 671 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen … … 534 734 # style sheet that is used by each HTML page. It can be used to 535 735 # fine-tune the look of the HTML output. If the tag is left blank doxygen 536 # will generate a default style sheet 736 # will generate a default style sheet. Note that doxygen will try to copy 737 # the style sheet file to the HTML output directory, so don't put your own 738 # stylesheet in the HTML output directory as well, or it will be erased! 537 739 538 740 HTML_STYLESHEET = … … 546 748 # If the GENERATE_HTMLHELP tag is set to YES, additional index files 547 749 # will be generated that can be used as input for tools like the 548 # Microsoft HTML help workshop to generate a comp ressed HTML help file (.chm)750 # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) 549 751 # of the generated HTML documentation. 550 752 551 753 GENERATE_HTMLHELP = NO 754 755 # If the GENERATE_DOCSET tag is set to YES, additional index files 756 # will be generated that can be used as input for Apple's Xcode 3 757 # integrated development environment, introduced with OSX 10.5 (Leopard). 758 # To create a documentation set, doxygen will generate a Makefile in the 759 # HTML output directory. Running make will produce the docset in that 760 # directory and running "make install" will install the docset in 761 # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find 762 # it at startup. 763 764 GENERATE_DOCSET = NO 765 766 # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the 767 # feed. A documentation feed provides an umbrella under which multiple 768 # documentation sets from a single provider (such as a company or product suite) 769 # can be grouped. 770 771 DOCSET_FEEDNAME = "Doxygen generated docs" 772 773 # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that 774 # should uniquely identify the documentation set bundle. This should be a 775 # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen 776 # will append .docset to the name. 777 778 DOCSET_BUNDLE_ID = org.doxygen.Project 779 780 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 781 # documentation will contain sections that can be hidden and shown after the 782 # page has loaded. For this to work a browser that supports 783 # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox 784 # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). 785 786 HTML_DYNAMIC_SECTIONS = NO 552 787 553 788 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 554 789 # be used to specify the file name of the resulting .chm file. You 555 790 # can add a path in front of the file if the result should not be 556 # written to the html output dir .791 # written to the html output directory. 557 792 558 793 CHM_FILE = … … 689 924 690 925 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 691 # The RTF output is optimi sed for Word 97 and may not look very pretty with926 # The RTF output is optimized for Word 97 and may not look very pretty with 692 927 # other RTF readers or editors. 693 928 … … 716 951 717 952 # Load stylesheet definitions from file. Syntax is similar to doxygen's 718 # config file, i.e. a series of assig ments. You only have to provide953 # config file, i.e. a series of assignments. You only have to provide 719 954 # replacements, missing definitions are set to their default value. 720 955 … … 760 995 # If the GENERATE_XML tag is set to YES Doxygen will 761 996 # generate an XML file that captures the structure of 762 # the code including all documentation. Note that this 763 # feature is still experimental and incomplete at the 764 # moment. 997 # the code including all documentation. 765 998 766 999 GENERATE_XML = NO … … 783 1016 784 1017 XML_DTD = 1018 1019 # If the XML_PROGRAMLISTING tag is set to YES Doxygen will 1020 # dump the program listings (including syntax highlighting 1021 # and cross-referencing information) to the XML output. Note that 1022 # enabling this will significantly increase the size of the XML output. 1023 1024 XML_PROGRAMLISTING = YES 785 1025 786 1026 #--------------------------------------------------------------------------- … … 848 1088 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 849 1089 # then the macro expansion is limited to the macros specified with the 850 # PREDEFINED and EXPAND_AS_ PREDEFINED tags.1090 # PREDEFINED and EXPAND_AS_DEFINED tags. 851 1091 852 1092 EXPAND_ONLY_PREDEF = NO … … 874 1114 # gcc). The argument of the tag is a list of macros of the form: name 875 1115 # or name=definition (no spaces). If the definition and the = are 876 # omitted =1 is assumed. 1116 # omitted =1 is assumed. To prevent a macro definition from being 1117 # undefined via #undef or recursively expanded use the := operator 1118 # instead of the = operator. 877 1119 878 1120 PREDEFINED = … … 888 1130 # doxygen's preprocessor will remove all function-like macros that are alone 889 1131 # on a line, have an all uppercase name, and do not end with a semicolon. Such 890 # function macros are typically used for boiler-plate code, and will confuse the891 # parser if not removed.1132 # function macros are typically used for boiler-plate code, and will confuse 1133 # the parser if not removed. 892 1134 893 1135 SKIP_FUNCTION_MACROS = YES 894 1136 895 1137 #--------------------------------------------------------------------------- 896 # Configuration::add tions related to external references1138 # Configuration::additions related to external references 897 1139 #--------------------------------------------------------------------------- 898 1140 … … 941 1183 942 1184 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 943 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base or 944 # super classes. Setting the tag to NO turns the diagrams off. Note that this 945 # option is superceded by the HAVE_DOT option below. This is only a fallback. It is 946 # recommended to install and use dot, since it yields more powerful graphs. 1185 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 1186 # or super classes. Setting the tag to NO turns the diagrams off. Note that 1187 # this option is superseded by the HAVE_DOT option below. This is only a 1188 # fallback. It is recommended to install and use dot, since it yields more 1189 # powerful graphs. 947 1190 948 1191 CLASS_DIAGRAMS = YES 1192 1193 # You can define message sequence charts within doxygen comments using the \msc 1194 # command. Doxygen will then run the mscgen tool (see 1195 # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the 1196 # documentation. The MSCGEN_PATH tag allows you to specify the directory where 1197 # the mscgen tool resides. If left empty the tool is assumed to be found in the 1198 # default search path. 1199 1200 MSCGEN_PATH = 949 1201 950 1202 # If set to YES, the inheritance and collaboration graphs will hide … … 975 1227 COLLABORATION_GRAPH = YES 976 1228 1229 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 1230 # will generate a graph for groups, showing the direct groups dependencies 1231 1232 GROUP_GRAPHS = YES 1233 977 1234 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and 978 # collaboration diagrams in a style simil iar to the OMG's Unified Modeling1235 # collaboration diagrams in a style similar to the OMG's Unified Modeling 979 1236 # Language. 980 1237 … … 1000 1257 INCLUDED_BY_GRAPH = YES 1001 1258 1002 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will1003 # generate a call dependency graph for every global function or class method.1004 # Note that enabling this option will significantly increase the time of a run.1005 # So in most cases it will be better to enable call graphs for selected1006 # f unctions only using the \callgraph command.1259 # If the CALL_GRAPH and HAVE_DOT options are set to YES then 1260 # doxygen will generate a call dependency graph for every global function 1261 # or class method. Note that enabling this option will significantly increase 1262 # the time of a run. So in most cases it will be better to enable call graphs 1263 # for selected functions only using the \callgraph command. 1007 1264 1008 1265 CALL_GRAPH = NO 1266 1267 # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then 1268 # doxygen will generate a caller dependency graph for every global function 1269 # or class method. Note that enabling this option will significantly increase 1270 # the time of a run. So in most cases it will be better to enable caller 1271 # graphs for selected functions only using the \callergraph command. 1272 1273 CALLER_GRAPH = NO 1009 1274 1010 1275 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen … … 1012 1277 1013 1278 GRAPHICAL_HIERARCHY = YES 1279 1280 # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 1281 # then doxygen will show the dependencies a directory has on other directories 1282 # in a graphical way. The dependency relations are determined by the #include 1283 # relations between the files in the directories. 1284 1285 DIRECTORY_GRAPH = YES 1014 1286 1015 1287 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images … … 1020 1292 1021 1293 # The tag DOT_PATH can be used to specify the path where the dot tool can be 1022 # found. If left blank, it is assumed the dot tool can be found on the path.1294 # found. If left blank, it is assumed the dot tool can be found in the path. 1023 1295 1024 1296 DOT_PATH = … … 1030 1302 DOTFILE_DIRS = 1031 1303 1032 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 1033 # (in pixels) of the graphs generated by dot. If a graph becomes larger than 1034 # this value, doxygen will try to truncate the graph, so that it fits within 1035 # the specified constraint. Beware that most browsers cannot cope with very 1036 # large images. 1037 1038 MAX_DOT_GRAPH_WIDTH = 1024 1039 1040 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 1041 # (in pixels) of the graphs generated by dot. If a graph becomes larger than 1042 # this value, doxygen will try to truncate the graph, so that it fits within 1043 # the specified constraint. Beware that most browsers cannot cope with very 1044 # large images. 1045 1046 MAX_DOT_GRAPH_HEIGHT = 1024 1304 # The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of 1305 # nodes that will be shown in the graph. If the number of nodes in a graph 1306 # becomes larger than this value, doxygen will truncate the graph, which is 1307 # visualized by representing a node as a red box. Note that doxygen if the 1308 # number of direct children of the root node in a graph is already larger than 1309 # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note 1310 # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 1311 1312 DOT_GRAPH_MAX_NODES = 50 1047 1313 1048 1314 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1049 1315 # graphs generated by dot. A depth value of 3 means that only nodes reachable 1050 # from the root by following a path via at most 3 edges will be shown. Nodes that 1051 # lay further from the root node will be omitted. Note that setting this option to 1052 # 1 or 2 may greatly reduce the computation time needed for large code bases. Also 1053 # note that a graph may be further truncated if the graph's image dimensions are 1054 # not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH and MAX_DOT_GRAPH_HEIGHT). 1055 # If 0 is used for the depth value (the default), the graph is not depth-constrained. 1316 # from the root by following a path via at most 3 edges will be shown. Nodes 1317 # that lay further from the root node will be omitted. Note that setting this 1318 # option to 1 or 2 may greatly reduce the computation time needed for large 1319 # code bases. Also note that the size of a graph can be further restricted by 1320 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 1056 1321 1057 1322 MAX_DOT_GRAPH_DEPTH = 0 1323 1324 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 1325 # background. This is enabled by default, which results in a transparent 1326 # background. Warning: Depending on the platform used, enabling this option 1327 # may lead to badly anti-aliased labels on the edges of a graph (i.e. they 1328 # become hard to read). 1329 1330 DOT_TRANSPARENT = YES 1331 1332 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 1333 # files in one run (i.e. multiple -o and -T options on the command line). This 1334 # makes dot run faster, but since only newer versions of dot (>1.8.10) 1335 # support this, this feature is disabled by default. 1336 1337 DOT_MULTI_TARGETS = NO 1058 1338 1059 1339 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will … … 1070 1350 1071 1351 #--------------------------------------------------------------------------- 1072 # Configuration::add tions related to the search engine1352 # Configuration::additions related to the search engine 1073 1353 #--------------------------------------------------------------------------- 1074 1354