00001 # Doxyfile 1.4.7 00002 00003 # This file describes the settings to be used by the documentation system 00004 # doxygen (www.doxygen.org) for a project 00005 # 00006 # All text after a hash (#) is considered a comment and will be ignored 00007 # The format is: 00008 # TAG = value [value, ...] 00009 # For lists items can also be appended using: 00010 # TAG += value [value, ...] 00011 # Values that contain spaces should be placed between quotes (" ") 00012 00013 #--------------------------------------------------------------------------- 00014 # Project related configuration options 00015 #--------------------------------------------------------------------------- 00016 00017 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 00018 # by quotes) that should identify the project. 00019 00020 PROJECT_NAME = RebassooAnalysis 00021 00022 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 00023 # This could be handy for archiving the generated documentation or 00024 # if some version control system is used. 00025 00026 PROJECT_NUMBER = REBASSOO@PHYSICS.UCSB.EDU 00027 00028 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 00029 # base path where the generated documentation will be put. 00030 # If a relative path is entered, it will be relative to the location 00031 # where doxygen was started. If left blank the current directory will be used. 00032 00033 OUTPUT_DIRECTORY = /www/htdocs/people/rebassoo/ 00034 00035 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 00036 # 4096 sub-directories (in 2 levels) under the output directory of each output 00037 # format and will distribute the generated files over these directories. 00038 # Enabling this option can be useful when feeding doxygen a huge amount of 00039 # source files, where putting all generated files in the same directory would 00040 # otherwise cause performance problems for the file system. 00041 00042 CREATE_SUBDIRS = NO 00043 00044 # The OUTPUT_LANGUAGE tag is used to specify the language in which all 00045 # documentation generated by doxygen is written. Doxygen will use this 00046 # information to generate all constant output in the proper language. 00047 # The default language is English, other supported languages are: 00048 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, 00049 # Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, 00050 # Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, 00051 # Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, 00052 # Swedish, and Ukrainian. 00053 00054 OUTPUT_LANGUAGE = English 00055 00056 # This tag can be used to specify the encoding used in the generated output. 00057 # The encoding is not always determined by the language that is chosen, 00058 # but also whether or not the output is meant for Windows or non-Windows users. 00059 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES 00060 # forces the Windows encoding (this is the default for the Windows binary), 00061 # whereas setting the tag to NO uses a Unix-style encoding (the default for 00062 # all platforms other than Windows). 00063 00064 USE_WINDOWS_ENCODING = NO 00065 00066 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 00067 # include brief member descriptions after the members that are listed in 00068 # the file and class documentation (similar to JavaDoc). 00069 # Set to NO to disable this. 00070 00071 BRIEF_MEMBER_DESC = YES 00072 00073 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 00074 # the brief description of a member or function before the detailed description. 00075 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 00076 # brief descriptions will be completely suppressed. 00077 00078 REPEAT_BRIEF = YES 00079 00080 # This tag implements a quasi-intelligent brief description abbreviator 00081 # that is used to form the text in various listings. Each string 00082 # in this list, if found as the leading text of the brief description, will be 00083 # stripped from the text and the result after processing the whole list, is 00084 # used as the annotated text. Otherwise, the brief description is used as-is. 00085 # If left blank, the following values are used ("$name" is automatically 00086 # replaced with the name of the entity): "The $name class" "The $name widget" 00087 # "The $name file" "is" "provides" "specifies" "contains" 00088 # "represents" "a" "an" "the" 00089 00090 ABBREVIATE_BRIEF = 00091 00092 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 00093 # Doxygen will generate a detailed section even if there is only a brief 00094 # description. 00095 00096 ALWAYS_DETAILED_SEC = NO 00097 00098 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 00099 # inherited members of a class in the documentation of that class as if those 00100 # members were ordinary class members. Constructors, destructors and assignment 00101 # operators of the base classes will not be shown. 00102 00103 INLINE_INHERITED_MEMB = NO 00104 00105 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 00106 # path before files name in the file list and in the header files. If set 00107 # to NO the shortest path that makes the file name unique will be used. 00108 00109 FULL_PATH_NAMES = YES 00110 00111 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 00112 # can be used to strip a user-defined part of the path. Stripping is 00113 # only done if one of the specified strings matches the left-hand part of 00114 # the path. The tag can be used to show relative paths in the file list. 00115 # If left blank the directory from which doxygen is run is used as the 00116 # path to strip. 00117 00118 STRIP_FROM_PATH = /homes/rebassoo/ 00119 00120 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 00121 # the path mentioned in the documentation of a class, which tells 00122 # the reader which header file to include in order to use a class. 00123 # If left blank only the name of the header file containing the class 00124 # definition is used. Otherwise one should specify the include paths that 00125 # are normally passed to the compiler using the -I flag. 00126 00127 STRIP_FROM_INC_PATH = 00128 00129 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 00130 # (but less readable) file names. This can be useful is your file systems 00131 # doesn't support long names like on DOS, Mac, or CD-ROM. 00132 00133 SHORT_NAMES = NO 00134 00135 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 00136 # will interpret the first line (until the first dot) of a JavaDoc-style 00137 # comment as the brief description. If set to NO, the JavaDoc 00138 # comments will behave just like the Qt-style comments (thus requiring an 00139 # explicit @brief command for a brief description. 00140 00141 JAVADOC_AUTOBRIEF = NO 00142 00143 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 00144 # treat a multi-line C++ special comment block (i.e. a block of 00145 # comments) as a brief description. This used to be the default behaviour. 00146 # The new default is to treat a multi-line C++ comment block as a detailed 00147 # description. Set this tag to YES if you prefer the old behaviour instead. 00148 00149 MULTILINE_CPP_IS_BRIEF = NO 00150 00151 # If the DETAILS_AT_TOP tag is set to YES then Doxygen 00152 # will output the detailed description near the top, like JavaDoc. 00153 # If set to NO, the detailed description appears after the member 00154 # documentation. 00155 00156 DETAILS_AT_TOP = NO 00157 00158 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 00159 # member inherits the documentation from any documented member that it 00160 # re-implements. 00161 00162 INHERIT_DOCS = YES 00163 00164 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 00165 # a new page for each member. If set to NO, the documentation of a member will 00166 # be part of the file/class/namespace that contains it. 00167 00168 SEPARATE_MEMBER_PAGES = NO 00169 00170 # The TAB_SIZE tag can be used to set the number of spaces in a tab. 00171 # Doxygen uses this value to replace tabs by spaces in code fragments. 00172 00173 TAB_SIZE = 8 00174 00175 # This tag can be used to specify a number of aliases that acts 00176 # as commands in the documentation. An alias has the form "name=value". 00177 # For example adding "sideeffect=\par Side Effects:\n" will allow you to 00178 # put the command \sideeffect (or @sideeffect) in the documentation, which 00179 # will result in a user-defined paragraph with heading "Side Effects:". 00180 # You can put \n's in the value part of an alias to insert newlines. 00181 00182 ALIASES = 00183 00184 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 00185 # sources only. Doxygen will then generate output that is more tailored for C. 00186 # For instance, some of the names that are used will be different. The list 00187 # of all members will be omitted, etc. 00188 00189 OPTIMIZE_OUTPUT_FOR_C = NO 00190 00191 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 00192 # sources only. Doxygen will then generate output that is more tailored for Java. 00193 # For instance, namespaces will be presented as packages, qualified scopes 00194 # will look different, etc. 00195 00196 OPTIMIZE_OUTPUT_JAVA = NO 00197 00198 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to 00199 # include (a tag file for) the STL sources as input, then you should 00200 # set this tag to YES in order to let doxygen match functions declarations and 00201 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 00202 # func(std::string) {}). This also make the inheritance and collaboration 00203 # diagrams that involve STL classes more complete and accurate. 00204 00205 BUILTIN_STL_SUPPORT = YES 00206 00207 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 00208 # tag is set to YES, then doxygen will reuse the documentation of the first 00209 # member in the group (if any) for the other members of the group. By default 00210 # all members of a group must be documented explicitly. 00211 00212 DISTRIBUTE_GROUP_DOC = NO 00213 00214 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of 00215 # the same type (for instance a group of public functions) to be put as a 00216 # subgroup of that type (e.g. under the Public Functions section). Set it to 00217 # NO to prevent subgrouping. Alternatively, this can be done per class using 00218 # the \nosubgrouping command. 00219 00220 SUBGROUPING = YES 00221 00222 #--------------------------------------------------------------------------- 00223 # Build related configuration options 00224 #--------------------------------------------------------------------------- 00225 00226 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 00227 # documentation are documented, even if no documentation was available. 00228 # Private class members and static file members will be hidden unless 00229 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 00230 00231 EXTRACT_ALL = YES 00232 00233 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class 00234 # will be included in the documentation. 00235 00236 EXTRACT_PRIVATE = YES 00237 00238 # If the EXTRACT_STATIC tag is set to YES all static members of a file 00239 # will be included in the documentation. 00240 00241 EXTRACT_STATIC = YES 00242 00243 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 00244 # defined locally in source files will be included in the documentation. 00245 # If set to NO only classes defined in header files are included. 00246 00247 EXTRACT_LOCAL_CLASSES = YES 00248 00249 # This flag is only useful for Objective-C code. When set to YES local 00250 # methods, which are defined in the implementation section but not in 00251 # the interface are included in the documentation. 00252 # If set to NO (the default) only methods in the interface are included. 00253 00254 EXTRACT_LOCAL_METHODS = NO 00255 00256 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 00257 # undocumented members of documented classes, files or namespaces. 00258 # If set to NO (the default) these members will be included in the 00259 # various overviews, but no documentation section is generated. 00260 # This option has no effect if EXTRACT_ALL is enabled. 00261 00262 HIDE_UNDOC_MEMBERS = NO 00263 00264 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 00265 # undocumented classes that are normally visible in the class hierarchy. 00266 # If set to NO (the default) these classes will be included in the various 00267 # overviews. This option has no effect if EXTRACT_ALL is enabled. 00268 00269 HIDE_UNDOC_CLASSES = NO 00270 00271 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 00272 # friend (class|struct|union) declarations. 00273 # If set to NO (the default) these declarations will be included in the 00274 # documentation. 00275 00276 HIDE_FRIEND_COMPOUNDS = NO 00277 00278 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 00279 # documentation blocks found inside the body of a function. 00280 # If set to NO (the default) these blocks will be appended to the 00281 # function's detailed documentation block. 00282 00283 HIDE_IN_BODY_DOCS = NO 00284 00285 # The INTERNAL_DOCS tag determines if documentation 00286 # that is typed after a \internal command is included. If the tag is set 00287 # to NO (the default) then the documentation will be excluded. 00288 # Set it to YES to include the internal documentation. 00289 00290 INTERNAL_DOCS = NO 00291 00292 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 00293 # file names in lower-case letters. If set to YES upper-case letters are also 00294 # allowed. This is useful if you have classes or files whose names only differ 00295 # in case and if your file system supports case sensitive file names. Windows 00296 # and Mac users are advised to set this option to NO. 00297 00298 CASE_SENSE_NAMES = YES 00299 00300 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 00301 # will show members with their full class and namespace scopes in the 00302 # documentation. If set to YES the scope will be hidden. 00303 00304 HIDE_SCOPE_NAMES = NO 00305 00306 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 00307 # will put a list of the files that are included by a file in the documentation 00308 # of that file. 00309 00310 SHOW_INCLUDE_FILES = YES 00311 00312 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 00313 # is inserted in the documentation for inline members. 00314 00315 INLINE_INFO = YES 00316 00317 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 00318 # will sort the (detailed) documentation of file and class members 00319 # alphabetically by member name. If set to NO the members will appear in 00320 # declaration order. 00321 00322 SORT_MEMBER_DOCS = YES 00323 00324 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 00325 # brief documentation of file, namespace and class members alphabetically 00326 # by member name. If set to NO (the default) the members will appear in 00327 # declaration order. 00328 00329 SORT_BRIEF_DOCS = NO 00330 00331 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 00332 # sorted by fully-qualified names, including namespaces. If set to 00333 # NO (the default), the class list will be sorted only by class name, 00334 # not including the namespace part. 00335 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 00336 # Note: This option applies only to the class list, not to the 00337 # alphabetical list. 00338 00339 SORT_BY_SCOPE_NAME = NO 00340 00341 # The GENERATE_TODOLIST tag can be used to enable (YES) or 00342 # disable (NO) the todo list. This list is created by putting \todo 00343 # commands in the documentation. 00344 00345 GENERATE_TODOLIST = YES 00346 00347 # The GENERATE_TESTLIST tag can be used to enable (YES) or 00348 # disable (NO) the test list. This list is created by putting \test 00349 # commands in the documentation. 00350 00351 GENERATE_TESTLIST = YES 00352 00353 # The GENERATE_BUGLIST tag can be used to enable (YES) or 00354 # disable (NO) the bug list. This list is created by putting \bug 00355 # commands in the documentation. 00356 00357 GENERATE_BUGLIST = YES 00358 00359 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 00360 # disable (NO) the deprecated list. This list is created by putting 00361 # \deprecated commands in the documentation. 00362 00363 GENERATE_DEPRECATEDLIST= YES 00364 00365 # The ENABLED_SECTIONS tag can be used to enable conditional 00366 # documentation sections, marked by \if sectionname ... \endif. 00367 00368 ENABLED_SECTIONS = 00369 00370 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines 00371 # the initial value of a variable or define consists of for it to appear in 00372 # the documentation. If the initializer consists of more lines than specified 00373 # here it will be hidden. Use a value of 0 to hide initializers completely. 00374 # The appearance of the initializer of individual variables and defines in the 00375 # documentation can be controlled using \showinitializer or \hideinitializer 00376 # command in the documentation regardless of this setting. 00377 00378 MAX_INITIALIZER_LINES = 30 00379 00380 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated 00381 # at the bottom of the documentation of classes and structs. If set to YES the 00382 # list will mention the files that were used to generate the documentation. 00383 00384 SHOW_USED_FILES = YES 00385 00386 # If the sources in your project are distributed over multiple directories 00387 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 00388 # in the documentation. The default is NO. 00389 00390 SHOW_DIRECTORIES = YES 00391 00392 # The FILE_VERSION_FILTER tag can be used to specify a program or script that 00393 # doxygen should invoke to get the current version for each file (typically from the 00394 # version control system). Doxygen will invoke the program by executing (via 00395 # popen()) the command <command> <input-file>, where <command> is the value of 00396 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 00397 # provided by doxygen. Whatever the program writes to standard output 00398 # is used as the file version. See the manual for examples. 00399 00400 FILE_VERSION_FILTER = 00401 00402 #--------------------------------------------------------------------------- 00403 # configuration options related to warning and progress messages 00404 #--------------------------------------------------------------------------- 00405 00406 # The QUIET tag can be used to turn on/off the messages that are generated 00407 # by doxygen. Possible values are YES and NO. If left blank NO is used. 00408 00409 QUIET = NO 00410 00411 # The WARNINGS tag can be used to turn on/off the warning messages that are 00412 # generated by doxygen. Possible values are YES and NO. If left blank 00413 # NO is used. 00414 00415 WARNINGS = YES 00416 00417 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 00418 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will 00419 # automatically be disabled. 00420 00421 WARN_IF_UNDOCUMENTED = YES 00422 00423 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 00424 # potential errors in the documentation, such as not documenting some 00425 # parameters in a documented function, or documenting parameters that 00426 # don't exist or using markup commands wrongly. 00427 00428 WARN_IF_DOC_ERROR = YES 00429 00430 # This WARN_NO_PARAMDOC option can be abled to get warnings for 00431 # functions that are documented, but have no documentation for their parameters 00432 # or return value. If set to NO (the default) doxygen will only warn about 00433 # wrong or incomplete parameter documentation, but not about the absence of 00434 # documentation. 00435 00436 WARN_NO_PARAMDOC = NO 00437 00438 # The WARN_FORMAT tag determines the format of the warning messages that 00439 # doxygen can produce. The string should contain the $file, $line, and $text 00440 # tags, which will be replaced by the file and line number from which the 00441 # warning originated and the warning text. Optionally the format may contain 00442 # $version, which will be replaced by the version of the file (if it could 00443 # be obtained via FILE_VERSION_FILTER) 00444 00445 WARN_FORMAT = "$file:$line: $text" 00446 00447 # The WARN_LOGFILE tag can be used to specify a file to which warning 00448 # and error messages should be written. If left blank the output is written 00449 # to stderr. 00450 00451 WARN_LOGFILE = 00452 00453 #--------------------------------------------------------------------------- 00454 # configuration options related to the input files 00455 #--------------------------------------------------------------------------- 00456 00457 # The INPUT tag can be used to specify the files and/or directories that contain 00458 # documented source files. You may enter file names like "myfile.cpp" or 00459 # directories like "/usr/src/myproject". Separate the files or directories 00460 # with spaces. 00461 00462 INPUT =\ 00463 /homes/rebassoo \ 00464 /homes/rebassoo/FromJeff/ \ 00465 /homes/rebassoo/FromJeff/gamma_Z_macros 00466 00467 # If the value of the INPUT tag contains directories, you can use the 00468 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 00469 # and *.h) to filter out the source-files in the directories. If left 00470 # blank the following patterns are tested: 00471 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 00472 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py 00473 00474 FILE_PATTERNS =\ 00475 *.cc \ 00476 *.hh \ 00477 *.C \ 00478 *.h \ 00479 *.tcl \ 00480 *.mk \ 00481 *.sh \ 00482 *.pl \ 00483 *README \ 00484 binlist \ 00485 GNUmakefile \ 00486 Doxyfile 00487 00488 # The RECURSIVE tag can be used to turn specify whether or not subdirectories 00489 # should be searched for input files as well. Possible values are YES and NO. 00490 # If left blank NO is used. 00491 00492 RECURSIVE = NO 00493 00494 # The EXCLUDE tag can be used to specify files and/or directories that should 00495 # excluded from the INPUT source files. This way you can easily exclude a 00496 # subdirectory from a directory tree whose root is specified with the INPUT tag. 00497 00498 EXCLUDE = 00499 00500 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or 00501 # directories that are symbolic links (a Unix filesystem feature) are excluded 00502 # from the input. 00503 00504 EXCLUDE_SYMLINKS = NO 00505 00506 # If the value of the INPUT tag contains directories, you can use the 00507 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 00508 # certain files from those directories. Note that the wildcards are matched 00509 # against the file with absolute path, so to exclude all test directories 00510 # for example use the pattern */test/* 00511 00512 EXCLUDE_PATTERNS = 00513 00514 # The EXAMPLE_PATH tag can be used to specify one or more files or 00515 # directories that contain example code fragments that are included (see 00516 # the \include command). 00517 00518 EXAMPLE_PATH = 00519 00520 # If the value of the EXAMPLE_PATH tag contains directories, you can use the 00521 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 00522 # and *.h) to filter out the source-files in the directories. If left 00523 # blank all files are included. 00524 00525 EXAMPLE_PATTERNS = 00526 00527 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 00528 # searched for input files to be used with the \include or \dontinclude 00529 # commands irrespective of the value of the RECURSIVE tag. 00530 # Possible values are YES and NO. If left blank NO is used. 00531 00532 EXAMPLE_RECURSIVE = NO 00533 00534 # The IMAGE_PATH tag can be used to specify one or more files or 00535 # directories that contain image that are included in the documentation (see 00536 # the \image command). 00537 00538 IMAGE_PATH = 00539 00540 # The INPUT_FILTER tag can be used to specify a program that doxygen should 00541 # invoke to filter for each input file. Doxygen will invoke the filter program 00542 # by executing (via popen()) the command <filter> <input-file>, where <filter> 00543 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an 00544 # input file. Doxygen will then use the output that the filter program writes 00545 # to standard output. If FILTER_PATTERNS is specified, this tag will be 00546 # ignored. 00547 00548 INPUT_FILTER = 00549 00550 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 00551 # basis. Doxygen will compare the file name with each pattern and apply the 00552 # filter if there is a match. The filters are a list of the form: 00553 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 00554 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 00555 # is applied to all files. 00556 00557 FILTER_PATTERNS = 00558 00559 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 00560 # INPUT_FILTER) will be used to filter the input files when producing source 00561 # files to browse (i.e. when SOURCE_BROWSER is set to YES). 00562 00563 FILTER_SOURCE_FILES = NO 00564 00565 #--------------------------------------------------------------------------- 00566 # configuration options related to source browsing 00567 #--------------------------------------------------------------------------- 00568 00569 # If the SOURCE_BROWSER tag is set to YES then a list of source files will 00570 # be generated. Documented entities will be cross-referenced with these sources. 00571 # Note: To get rid of all source code in the generated output, make sure also 00572 # VERBATIM_HEADERS is set to NO. 00573 00574 SOURCE_BROWSER = YES 00575 00576 # Setting the INLINE_SOURCES tag to YES will include the body 00577 # of functions and classes directly in the documentation. 00578 00579 INLINE_SOURCES = NO 00580 00581 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 00582 # doxygen to hide any special comment blocks from generated source code 00583 # fragments. Normal C and C++ comments will always remain visible. 00584 00585 STRIP_CODE_COMMENTS = YES 00586 00587 # If the REFERENCED_BY_RELATION tag is set to YES (the default) 00588 # then for each documented function all documented 00589 # functions referencing it will be listed. 00590 00591 REFERENCED_BY_RELATION = YES 00592 00593 # If the REFERENCES_RELATION tag is set to YES (the default) 00594 # then for each documented function all documented entities 00595 # called/used by that function will be listed. 00596 00597 REFERENCES_RELATION = YES 00598 00599 # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 00600 # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 00601 # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 00602 # link to the source code. Otherwise they will link to the documentstion. 00603 00604 REFERENCES_LINK_SOURCE = YES 00605 00606 # If the USE_HTAGS tag is set to YES then the references to source code 00607 # will point to the HTML generated by the htags(1) tool instead of doxygen 00608 # built-in source browser. The htags tool is part of GNU's global source 00609 # tagging system (see http://www.gnu.org/software/global/global.html). You 00610 # will need version 4.8.6 or higher. 00611 00612 USE_HTAGS = NO 00613 00614 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 00615 # will generate a verbatim copy of the header file for each class for 00616 # which an include is specified. Set to NO to disable this. 00617 00618 VERBATIM_HEADERS = YES 00619 00620 #--------------------------------------------------------------------------- 00621 # configuration options related to the alphabetical class index 00622 #--------------------------------------------------------------------------- 00623 00624 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 00625 # of all compounds will be generated. Enable this if the project 00626 # contains a lot of classes, structs, unions or interfaces. 00627 00628 ALPHABETICAL_INDEX = NO 00629 00630 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 00631 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 00632 # in which this list will be split (can be a number in the range [1..20]) 00633 00634 COLS_IN_ALPHA_INDEX = 5 00635 00636 # In case all classes in a project start with a common prefix, all 00637 # classes will be put under the same header in the alphabetical index. 00638 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that 00639 # should be ignored while generating the index headers. 00640 00641 IGNORE_PREFIX = 00642 00643 #--------------------------------------------------------------------------- 00644 # configuration options related to the HTML output 00645 #--------------------------------------------------------------------------- 00646 00647 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will 00648 # generate HTML output. 00649 00650 GENERATE_HTML = YES 00651 00652 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 00653 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 00654 # put in front of it. If left blank `html' will be used as the default path. 00655 00656 HTML_OUTPUT = html 00657 00658 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for 00659 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank 00660 # doxygen will generate files with .html extension. 00661 00662 HTML_FILE_EXTENSION = .html 00663 00664 # The HTML_HEADER tag can be used to specify a personal HTML header for 00665 # each generated HTML page. If it is left blank doxygen will generate a 00666 # standard header. 00667 00668 HTML_HEADER = 00669 00670 # The HTML_FOOTER tag can be used to specify a personal HTML footer for 00671 # each generated HTML page. If it is left blank doxygen will generate a 00672 # standard footer. 00673 00674 HTML_FOOTER = 00675 00676 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading 00677 # style sheet that is used by each HTML page. It can be used to 00678 # fine-tune the look of the HTML output. If the tag is left blank doxygen 00679 # will generate a default style sheet. Note that doxygen will try to copy 00680 # the style sheet file to the HTML output directory, so don't put your own 00681 # stylesheet in the HTML output directory as well, or it will be erased! 00682 00683 HTML_STYLESHEET = 00684 00685 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 00686 # files or namespaces will be aligned in HTML using tables. If set to 00687 # NO a bullet list will be used. 00688 00689 HTML_ALIGN_MEMBERS = YES 00690 00691 # If the GENERATE_HTMLHELP tag is set to YES, additional index files 00692 # will be generated that can be used as input for tools like the 00693 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 00694 # of the generated HTML documentation. 00695 00696 GENERATE_HTMLHELP = NO 00697 00698 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 00699 # be used to specify the file name of the resulting .chm file. You 00700 # can add a path in front of the file if the result should not be 00701 # written to the html output directory. 00702 00703 CHM_FILE = 00704 00705 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 00706 # be used to specify the location (absolute path including file name) of 00707 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 00708 # the HTML help compiler on the generated index.hhp. 00709 00710 HHC_LOCATION = 00711 00712 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 00713 # controls if a separate .chi index file is generated (YES) or that 00714 # it should be included in the master .chm file (NO). 00715 00716 GENERATE_CHI = NO 00717 00718 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 00719 # controls whether a binary table of contents is generated (YES) or a 00720 # normal table of contents (NO) in the .chm file. 00721 00722 BINARY_TOC = NO 00723 00724 # The TOC_EXPAND flag can be set to YES to add extra items for group members 00725 # to the contents of the HTML help documentation and to the tree view. 00726 00727 TOC_EXPAND = NO 00728 00729 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at 00730 # top of each HTML page. The value NO (the default) enables the index and 00731 # the value YES disables it. 00732 00733 DISABLE_INDEX = NO 00734 00735 # This tag can be used to set the number of enum values (range [1..20]) 00736 # that doxygen will group on one line in the generated HTML documentation. 00737 00738 ENUM_VALUES_PER_LINE = 4 00739 00740 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be 00741 # generated containing a tree-like index structure (just like the one that 00742 # is generated for HTML Help). For this to work a browser that supports 00743 # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 00744 # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 00745 # probably better off using the HTML help feature. 00746 00747 GENERATE_TREEVIEW = YES 00748 00749 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 00750 # used to set the initial width (in pixels) of the frame in which the tree 00751 # is shown. 00752 00753 TREEVIEW_WIDTH = 250 00754 00755 #--------------------------------------------------------------------------- 00756 # configuration options related to the LaTeX output 00757 #--------------------------------------------------------------------------- 00758 00759 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 00760 # generate Latex output. 00761 00762 GENERATE_LATEX = NO 00763 00764 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 00765 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 00766 # put in front of it. If left blank `latex' will be used as the default path. 00767 00768 LATEX_OUTPUT = latex 00769 00770 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 00771 # invoked. If left blank `latex' will be used as the default command name. 00772 00773 LATEX_CMD_NAME = latex 00774 00775 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 00776 # generate index for LaTeX. If left blank `makeindex' will be used as the 00777 # default command name. 00778 00779 MAKEINDEX_CMD_NAME = makeindex 00780 00781 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 00782 # LaTeX documents. This may be useful for small projects and may help to 00783 # save some trees in general. 00784 00785 COMPACT_LATEX = NO 00786 00787 # The PAPER_TYPE tag can be used to set the paper type that is used 00788 # by the printer. Possible values are: a4, a4wide, letter, legal and 00789 # executive. If left blank a4wide will be used. 00790 00791 PAPER_TYPE = letter 00792 00793 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 00794 # packages that should be included in the LaTeX output. 00795 00796 EXTRA_PACKAGES = 00797 00798 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for 00799 # the generated latex document. The header should contain everything until 00800 # the first chapter. If it is left blank doxygen will generate a 00801 # standard header. Notice: only use this tag if you know what you are doing! 00802 00803 LATEX_HEADER = 00804 00805 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 00806 # is prepared for conversion to pdf (using ps2pdf). The pdf file will 00807 # contain links (just like the HTML output) instead of page references 00808 # This makes the output suitable for online browsing using a pdf viewer. 00809 00810 PDF_HYPERLINKS = NO 00811 00812 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 00813 # plain latex in the generated Makefile. Set this option to YES to get a 00814 # higher quality PDF documentation. 00815 00816 USE_PDFLATEX = NO 00817 00818 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 00819 # command to the generated LaTeX files. This will instruct LaTeX to keep 00820 # running if errors occur, instead of asking the user for help. 00821 # This option is also used when generating formulas in HTML. 00822 00823 LATEX_BATCHMODE = NO 00824 00825 # If LATEX_HIDE_INDICES is set to YES then doxygen will not 00826 # include the index chapters (such as File Index, Compound Index, etc.) 00827 # in the output. 00828 00829 LATEX_HIDE_INDICES = NO 00830 00831 #--------------------------------------------------------------------------- 00832 # configuration options related to the RTF output 00833 #--------------------------------------------------------------------------- 00834 00835 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 00836 # The RTF output is optimized for Word 97 and may not look very pretty with 00837 # other RTF readers or editors. 00838 00839 GENERATE_RTF = NO 00840 00841 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 00842 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 00843 # put in front of it. If left blank `rtf' will be used as the default path. 00844 00845 RTF_OUTPUT = rtf 00846 00847 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact 00848 # RTF documents. This may be useful for small projects and may help to 00849 # save some trees in general. 00850 00851 COMPACT_RTF = NO 00852 00853 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 00854 # will contain hyperlink fields. The RTF file will 00855 # contain links (just like the HTML output) instead of page references. 00856 # This makes the output suitable for online browsing using WORD or other 00857 # programs which support those fields. 00858 # Note: wordpad (write) and others do not support links. 00859 00860 RTF_HYPERLINKS = NO 00861 00862 # Load stylesheet definitions from file. Syntax is similar to doxygen's 00863 # config file, i.e. a series of assignments. You only have to provide 00864 # replacements, missing definitions are set to their default value. 00865 00866 RTF_STYLESHEET_FILE = 00867 00868 # Set optional variables used in the generation of an rtf document. 00869 # Syntax is similar to doxygen's config file. 00870 00871 RTF_EXTENSIONS_FILE = 00872 00873 #--------------------------------------------------------------------------- 00874 # configuration options related to the man page output 00875 #--------------------------------------------------------------------------- 00876 00877 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will 00878 # generate man pages 00879 00880 GENERATE_MAN = NO 00881 00882 # The MAN_OUTPUT tag is used to specify where the man pages will be put. 00883 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 00884 # put in front of it. If left blank `man' will be used as the default path. 00885 00886 MAN_OUTPUT = man 00887 00888 # The MAN_EXTENSION tag determines the extension that is added to 00889 # the generated man pages (default is the subroutine's section .3) 00890 00891 MAN_EXTENSION = .3 00892 00893 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, 00894 # then it will generate one additional man file for each entity 00895 # documented in the real man page(s). These additional files 00896 # only source the real man page, but without them the man command 00897 # would be unable to find the correct page. The default is NO. 00898 00899 MAN_LINKS = NO 00900 00901 #--------------------------------------------------------------------------- 00902 # configuration options related to the XML output 00903 #--------------------------------------------------------------------------- 00904 00905 # If the GENERATE_XML tag is set to YES Doxygen will 00906 # generate an XML file that captures the structure of 00907 # the code including all documentation. 00908 00909 GENERATE_XML = NO 00910 00911 # The XML_OUTPUT tag is used to specify where the XML pages will be put. 00912 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 00913 # put in front of it. If left blank `xml' will be used as the default path. 00914 00915 XML_OUTPUT = xml 00916 00917 # The XML_SCHEMA tag can be used to specify an XML schema, 00918 # which can be used by a validating XML parser to check the 00919 # syntax of the XML files. 00920 00921 XML_SCHEMA = 00922 00923 # The XML_DTD tag can be used to specify an XML DTD, 00924 # which can be used by a validating XML parser to check the 00925 # syntax of the XML files. 00926 00927 XML_DTD = 00928 00929 # If the XML_PROGRAMLISTING tag is set to YES Doxygen will 00930 # dump the program listings (including syntax highlighting 00931 # and cross-referencing information) to the XML output. Note that 00932 # enabling this will significantly increase the size of the XML output. 00933 00934 XML_PROGRAMLISTING = YES 00935 00936 #--------------------------------------------------------------------------- 00937 # configuration options for the AutoGen Definitions output 00938 #--------------------------------------------------------------------------- 00939 00940 # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 00941 # generate an AutoGen Definitions (see autogen.sf.net) file 00942 # that captures the structure of the code including all 00943 # documentation. Note that this feature is still experimental 00944 # and incomplete at the moment. 00945 00946 GENERATE_AUTOGEN_DEF = NO 00947 00948 #--------------------------------------------------------------------------- 00949 # configuration options related to the Perl module output 00950 #--------------------------------------------------------------------------- 00951 00952 # If the GENERATE_PERLMOD tag is set to YES Doxygen will 00953 # generate a Perl module file that captures the structure of 00954 # the code including all documentation. Note that this 00955 # feature is still experimental and incomplete at the 00956 # moment. 00957 00958 GENERATE_PERLMOD = NO 00959 00960 # If the PERLMOD_LATEX tag is set to YES Doxygen will generate 00961 # the necessary Makefile rules, Perl scripts and LaTeX code to be able 00962 # to generate PDF and DVI output from the Perl module output. 00963 00964 PERLMOD_LATEX = NO 00965 00966 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 00967 # nicely formatted so it can be parsed by a human reader. This is useful 00968 # if you want to understand what is going on. On the other hand, if this 00969 # tag is set to NO the size of the Perl module output will be much smaller 00970 # and Perl will parse it just the same. 00971 00972 PERLMOD_PRETTY = YES 00973 00974 # The names of the make variables in the generated doxyrules.make file 00975 # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 00976 # This is useful so different doxyrules.make files included by the same 00977 # Makefile don't overwrite each other's variables. 00978 00979 PERLMOD_MAKEVAR_PREFIX = 00980 00981 #--------------------------------------------------------------------------- 00982 # Configuration options related to the preprocessor 00983 #--------------------------------------------------------------------------- 00984 00985 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 00986 # evaluate all C-preprocessor directives found in the sources and include 00987 # files. 00988 00989 ENABLE_PREPROCESSING = YES 00990 00991 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 00992 # names in the source code. If set to NO (the default) only conditional 00993 # compilation will be performed. Macro expansion can be done in a controlled 00994 # way by setting EXPAND_ONLY_PREDEF to YES. 00995 00996 MACRO_EXPANSION = NO 00997 00998 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 00999 # then the macro expansion is limited to the macros specified with the 01000 # PREDEFINED and EXPAND_AS_DEFINED tags. 01001 01002 EXPAND_ONLY_PREDEF = NO 01003 01004 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 01005 # in the INCLUDE_PATH (see below) will be search if a #include is found. 01006 01007 SEARCH_INCLUDES = YES 01008 01009 # The INCLUDE_PATH tag can be used to specify one or more directories that 01010 # contain include files that are not input files but should be processed by 01011 # the preprocessor. 01012 01013 INCLUDE_PATH = 01014 01015 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 01016 # patterns (like *.h and *.hpp) to filter out the header-files in the 01017 # directories. If left blank, the patterns specified with FILE_PATTERNS will 01018 # be used. 01019 01020 INCLUDE_FILE_PATTERNS = 01021 01022 # The PREDEFINED tag can be used to specify one or more macro names that 01023 # are defined before the preprocessor is started (similar to the -D option of 01024 # gcc). The argument of the tag is a list of macros of the form: name 01025 # or name=definition (no spaces). If the definition and the = are 01026 # omitted =1 is assumed. To prevent a macro definition from being 01027 # undefined via #undef or recursively expanded use the := operator 01028 # instead of the = operator. 01029 01030 PREDEFINED = 01031 01032 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 01033 # this tag can be used to specify a list of macro names that should be expanded. 01034 # The macro definition that is found in the sources will be used. 01035 # Use the PREDEFINED tag if you want to use a different macro definition. 01036 01037 EXPAND_AS_DEFINED = 01038 01039 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 01040 # doxygen's preprocessor will remove all function-like macros that are alone 01041 # on a line, have an all uppercase name, and do not end with a semicolon. Such 01042 # function macros are typically used for boiler-plate code, and will confuse 01043 # the parser if not removed. 01044 01045 SKIP_FUNCTION_MACROS = YES 01046 01047 #--------------------------------------------------------------------------- 01048 # Configuration::additions related to external references 01049 #--------------------------------------------------------------------------- 01050 01051 # The TAGFILES option can be used to specify one or more tagfiles. 01052 # Optionally an initial location of the external documentation 01053 # can be added for each tagfile. The format of a tag file without 01054 # this location is as follows: 01055 # TAGFILES = file1 file2 ... 01056 # Adding location for the tag files is done as follows: 01057 # TAGFILES = file1=loc1 "file2 = loc2" ... 01058 # where "loc1" and "loc2" can be relative or absolute paths or 01059 # URLs. If a location is present for each tag, the installdox tool 01060 # does not have to be run to correct the links. 01061 # Note that each tag file must have a unique name 01062 # (where the name does NOT include the path) 01063 # If a tag file is not located in the directory in which doxygen 01064 # is run, you must also specify the path to the tagfile here. 01065 01066 TAGFILES = 01067 01068 # When a file name is specified after GENERATE_TAGFILE, doxygen will create 01069 # a tag file that is based on the input files it reads. 01070 01071 GENERATE_TAGFILE = 01072 01073 # If the ALLEXTERNALS tag is set to YES all external classes will be listed 01074 # in the class index. If set to NO only the inherited external classes 01075 # will be listed. 01076 01077 ALLEXTERNALS = NO 01078 01079 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 01080 # in the modules index. If set to NO, only the current project's groups will 01081 # be listed. 01082 01083 EXTERNAL_GROUPS = YES 01084 01085 # The PERL_PATH should be the absolute path and name of the perl script 01086 # interpreter (i.e. the result of `which perl'). 01087 01088 PERL_PATH = /usr/bin/perl 01089 01090 #--------------------------------------------------------------------------- 01091 # Configuration options related to the dot tool 01092 #--------------------------------------------------------------------------- 01093 01094 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 01095 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 01096 # or super classes. Setting the tag to NO turns the diagrams off. Note that 01097 # this option is superseded by the HAVE_DOT option below. This is only a 01098 # fallback. It is recommended to install and use dot, since it yields more 01099 # powerful graphs. 01100 01101 CLASS_DIAGRAMS = YES 01102 01103 # If set to YES, the inheritance and collaboration graphs will hide 01104 # inheritance and usage relations if the target is undocumented 01105 # or is not a class. 01106 01107 HIDE_UNDOC_RELATIONS = YES 01108 01109 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 01110 # available from the path. This tool is part of Graphviz, a graph visualization 01111 # toolkit from AT&T and Lucent Bell Labs. The other options in this section 01112 # have no effect if this option is set to NO (the default) 01113 01114 HAVE_DOT = NO 01115 01116 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 01117 # will generate a graph for each documented class showing the direct and 01118 # indirect inheritance relations. Setting this tag to YES will force the 01119 # the CLASS_DIAGRAMS tag to NO. 01120 01121 CLASS_GRAPH = YES 01122 01123 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 01124 # will generate a graph for each documented class showing the direct and 01125 # indirect implementation dependencies (inheritance, containment, and 01126 # class references variables) of the class with other documented classes. 01127 01128 COLLABORATION_GRAPH = YES 01129 01130 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 01131 # will generate a graph for groups, showing the direct groups dependencies 01132 01133 GROUP_GRAPHS = YES 01134 01135 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and 01136 # collaboration diagrams in a style similar to the OMG's Unified Modeling 01137 # Language. 01138 01139 UML_LOOK = YES 01140 01141 # If set to YES, the inheritance and collaboration graphs will show the 01142 # relations between templates and their instances. 01143 01144 TEMPLATE_RELATIONS = NO 01145 01146 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 01147 # tags are set to YES then doxygen will generate a graph for each documented 01148 # file showing the direct and indirect include dependencies of the file with 01149 # other documented files. 01150 01151 INCLUDE_GRAPH = YES 01152 01153 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 01154 # HAVE_DOT tags are set to YES then doxygen will generate a graph for each 01155 # documented header file showing the documented files that directly or 01156 # indirectly include this file. 01157 01158 INCLUDED_BY_GRAPH = YES 01159 01160 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will 01161 # generate a call dependency graph for every global function or class method. 01162 # Note that enabling this option will significantly increase the time of a run. 01163 # So in most cases it will be better to enable call graphs for selected 01164 # functions only using the \callgraph command. 01165 01166 CALL_GRAPH = YES 01167 01168 # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then doxygen will 01169 # generate a caller dependency graph for every global function or class method. 01170 # Note that enabling this option will significantly increase the time of a run. 01171 # So in most cases it will be better to enable caller graphs for selected 01172 # functions only using the \callergraph command. 01173 01174 CALLER_GRAPH = YES 01175 01176 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 01177 # will graphical hierarchy of all classes instead of a textual one. 01178 01179 GRAPHICAL_HIERARCHY = YES 01180 01181 # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 01182 # then doxygen will show the dependencies a directory has on other directories 01183 # in a graphical way. The dependency relations are determined by the #include 01184 # relations between the files in the directories. 01185 01186 DIRECTORY_GRAPH = YES 01187 01188 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 01189 # generated by dot. Possible values are png, jpg, or gif 01190 # If left blank png will be used. 01191 01192 DOT_IMAGE_FORMAT = png 01193 01194 # The tag DOT_PATH can be used to specify the path where the dot tool can be 01195 # found. If left blank, it is assumed the dot tool can be found in the path. 01196 01197 DOT_PATH = 01198 01199 # The DOTFILE_DIRS tag can be used to specify one or more directories that 01200 # contain dot files that are included in the documentation (see the 01201 # \dotfile command). 01202 01203 DOTFILE_DIRS = 01204 01205 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 01206 # (in pixels) of the graphs generated by dot. If a graph becomes larger than 01207 # this value, doxygen will try to truncate the graph, so that it fits within 01208 # the specified constraint. Beware that most browsers cannot cope with very 01209 # large images. 01210 01211 MAX_DOT_GRAPH_WIDTH = 1024 01212 01213 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 01214 # (in pixels) of the graphs generated by dot. If a graph becomes larger than 01215 # this value, doxygen will try to truncate the graph, so that it fits within 01216 # the specified constraint. Beware that most browsers cannot cope with very 01217 # large images. 01218 01219 MAX_DOT_GRAPH_HEIGHT = 1024 01220 01221 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 01222 # graphs generated by dot. A depth value of 3 means that only nodes reachable 01223 # from the root by following a path via at most 3 edges will be shown. Nodes 01224 # that lay further from the root node will be omitted. Note that setting this 01225 # option to 1 or 2 may greatly reduce the computation time needed for large 01226 # code bases. Also note that a graph may be further truncated if the graph's 01227 # image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH 01228 # and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), 01229 # the graph is not depth-constrained. 01230 01231 MAX_DOT_GRAPH_DEPTH = 0 01232 01233 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 01234 # background. This is disabled by default, which results in a white background. 01235 # Warning: Depending on the platform used, enabling this option may lead to 01236 # badly anti-aliased labels on the edges of a graph (i.e. they become hard to 01237 # read). 01238 01239 DOT_TRANSPARENT = NO 01240 01241 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 01242 # files in one run (i.e. multiple -o and -T options on the command line). This 01243 # makes dot run faster, but since only newer versions of dot (>1.8.10) 01244 # support this, this feature is disabled by default. 01245 01246 DOT_MULTI_TARGETS = NO 01247 01248 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 01249 # generate a legend page explaining the meaning of the various boxes and 01250 # arrows in the dot generated graphs. 01251 01252 GENERATE_LEGEND = YES 01253 01254 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 01255 # remove the intermediate dot files that are used to generate 01256 # the various graphs. 01257 01258 DOT_CLEANUP = YES 01259 01260 #--------------------------------------------------------------------------- 01261 # Configuration::additions related to the search engine 01262 #--------------------------------------------------------------------------- 01263 01264 # The SEARCHENGINE tag specifies whether or not a search engine should be 01265 # used. If set to NO the values of all tags below this one will be ignored. 01266 01267 SEARCHENGINE = NO