common.doxy revision 848b8605
1848b8605Smrg# Doxyfile 1.3.8 2848b8605Smrg 3848b8605Smrg# This file describes the settings to be used by the documentation system 4848b8605Smrg# doxygen (www.doxygen.org) for a project 5848b8605Smrg# 6848b8605Smrg# All text after a hash (#) is considered a comment and will be ignored 7848b8605Smrg# The format is: 8848b8605Smrg# TAG = value [value, ...] 9848b8605Smrg# For lists items can also be appended using: 10848b8605Smrg# TAG += value [value, ...] 11848b8605Smrg# Values that contain spaces should be placed between quotes (" ") 12848b8605Smrg 13848b8605Smrg#--------------------------------------------------------------------------- 14848b8605Smrg# Project related configuration options 15848b8605Smrg#--------------------------------------------------------------------------- 16848b8605Smrg 17848b8605Smrg# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 18848b8605Smrg# by quotes) that should identify the project. 19848b8605Smrg 20848b8605SmrgPROJECT_NAME = Mesa 21848b8605Smrg 22848b8605Smrg# The PROJECT_NUMBER tag can be used to enter a project or revision number. 23848b8605Smrg# This could be handy for archiving the generated documentation or 24848b8605Smrg# if some version control system is used. 25848b8605Smrg 26848b8605SmrgPROJECT_NUMBER = 6.5 27848b8605Smrg 28848b8605Smrg# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 29848b8605Smrg# base path where the generated documentation will be put. 30848b8605Smrg# If a relative path is entered, it will be relative to the location 31848b8605Smrg# where doxygen was started. If left blank the current directory will be used. 32848b8605Smrg 33848b8605SmrgOUTPUT_DIRECTORY = 34848b8605Smrg 35848b8605Smrg# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 36848b8605Smrg# 4096 sub-directories (in 2 levels) under the output directory of each output 37848b8605Smrg# format and will distribute the generated files over these directories. 38848b8605Smrg# Enabling this option can be useful when feeding doxygen a huge amount of source 39848b8605Smrg# files, where putting all generated files in the same directory would otherwise 40848b8605Smrg# cause performance problems for the file system. 41848b8605Smrg 42848b8605SmrgCREATE_SUBDIRS = NO 43848b8605Smrg 44848b8605Smrg# The OUTPUT_LANGUAGE tag is used to specify the language in which all 45848b8605Smrg# documentation generated by doxygen is written. Doxygen will use this 46848b8605Smrg# information to generate all constant output in the proper language. 47848b8605Smrg# The default language is English, other supported languages are: 48848b8605Smrg# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, 49848b8605Smrg# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, 50848b8605Smrg# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, 51848b8605Smrg# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, 52848b8605Smrg# Swedish, and Ukrainian. 53848b8605Smrg 54848b8605SmrgOUTPUT_LANGUAGE = English 55848b8605Smrg 56848b8605Smrg# This tag can be used to specify the encoding used in the generated output. 57848b8605Smrg# The encoding is not always determined by the language that is chosen, 58848b8605Smrg# but also whether or not the output is meant for Windows or non-Windows users. 59848b8605Smrg# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES 60848b8605Smrg# forces the Windows encoding (this is the default for the Windows binary), 61848b8605Smrg# whereas setting the tag to NO uses a Unix-style encoding (the default for 62848b8605Smrg# all platforms other than Windows). 63848b8605Smrg 64848b8605SmrgUSE_WINDOWS_ENCODING = NO 65848b8605Smrg 66848b8605Smrg# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 67848b8605Smrg# include brief member descriptions after the members that are listed in 68848b8605Smrg# the file and class documentation (similar to JavaDoc). 69848b8605Smrg# Set to NO to disable this. 70848b8605Smrg 71848b8605SmrgBRIEF_MEMBER_DESC = YES 72848b8605Smrg 73848b8605Smrg# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 74848b8605Smrg# the brief description of a member or function before the detailed description. 75848b8605Smrg# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 76848b8605Smrg# brief descriptions will be completely suppressed. 77848b8605Smrg 78848b8605SmrgREPEAT_BRIEF = YES 79848b8605Smrg 80848b8605Smrg# This tag implements a quasi-intelligent brief description abbreviator 81848b8605Smrg# that is used to form the text in various listings. Each string 82848b8605Smrg# in this list, if found as the leading text of the brief description, will be 83848b8605Smrg# stripped from the text and the result after processing the whole list, is used 84848b8605Smrg# as the annotated text. Otherwise, the brief description is used as-is. If left 85848b8605Smrg# blank, the following values are used ("$name" is automatically replaced with the 86848b8605Smrg# name of the entity): "The $name class" "The $name widget" "The $name file" 87848b8605Smrg# "is" "provides" "specifies" "contains" "represents" "a" "an" "the" 88848b8605Smrg 89848b8605SmrgABBREVIATE_BRIEF = 90848b8605Smrg 91848b8605Smrg# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 92848b8605Smrg# Doxygen will generate a detailed section even if there is only a brief 93848b8605Smrg# description. 94848b8605Smrg 95848b8605SmrgALWAYS_DETAILED_SEC = NO 96848b8605Smrg 97848b8605Smrg# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited 98848b8605Smrg# members of a class in the documentation of that class as if those members were 99848b8605Smrg# ordinary class members. Constructors, destructors and assignment operators of 100848b8605Smrg# the base classes will not be shown. 101848b8605Smrg 102848b8605SmrgINLINE_INHERITED_MEMB = NO 103848b8605Smrg 104848b8605Smrg# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 105848b8605Smrg# path before files name in the file list and in the header files. If set 106848b8605Smrg# to NO the shortest path that makes the file name unique will be used. 107848b8605Smrg 108848b8605SmrgFULL_PATH_NAMES = NO 109848b8605Smrg 110848b8605Smrg# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 111848b8605Smrg# can be used to strip a user-defined part of the path. Stripping is 112848b8605Smrg# only done if one of the specified strings matches the left-hand part of 113848b8605Smrg# the path. The tag can be used to show relative paths in the file list. 114848b8605Smrg# If left blank the directory from which doxygen is run is used as the 115848b8605Smrg# path to strip. 116848b8605Smrg 117848b8605SmrgSTRIP_FROM_PATH = 118848b8605Smrg 119848b8605Smrg# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 120848b8605Smrg# the path mentioned in the documentation of a class, which tells 121848b8605Smrg# the reader which header file to include in order to use a class. 122848b8605Smrg# If left blank only the name of the header file containing the class 123848b8605Smrg# definition is used. Otherwise one should specify the include paths that 124848b8605Smrg# are normally passed to the compiler using the -I flag. 125848b8605Smrg 126848b8605SmrgSTRIP_FROM_INC_PATH = 127848b8605Smrg 128848b8605Smrg# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 129848b8605Smrg# (but less readable) file names. This can be useful is your file systems 130848b8605Smrg# doesn't support long names like on DOS, Mac, or CD-ROM. 131848b8605Smrg 132848b8605SmrgSHORT_NAMES = NO 133848b8605Smrg 134848b8605Smrg# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 135848b8605Smrg# will interpret the first line (until the first dot) of a JavaDoc-style 136848b8605Smrg# comment as the brief description. If set to NO, the JavaDoc 137848b8605Smrg# comments will behave just like the Qt-style comments (thus requiring an 138848b8605Smrg# explicit @brief command for a brief description. 139848b8605Smrg 140848b8605SmrgJAVADOC_AUTOBRIEF = YES 141848b8605Smrg 142848b8605Smrg# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 143848b8605Smrg# treat a multi-line C++ special comment block (i.e. a block of //! or /// 144848b8605Smrg# comments) as a brief description. This used to be the default behaviour. 145848b8605Smrg# The new default is to treat a multi-line C++ comment block as a detailed 146848b8605Smrg# description. Set this tag to YES if you prefer the old behaviour instead. 147848b8605Smrg 148848b8605SmrgMULTILINE_CPP_IS_BRIEF = NO 149848b8605Smrg 150848b8605Smrg# If the DETAILS_AT_TOP tag is set to YES then Doxygen 151848b8605Smrg# will output the detailed description near the top, like JavaDoc. 152848b8605Smrg# If set to NO, the detailed description appears after the member 153848b8605Smrg# documentation. 154848b8605Smrg 155848b8605SmrgDETAILS_AT_TOP = YES 156848b8605Smrg 157848b8605Smrg# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 158848b8605Smrg# member inherits the documentation from any documented member that it 159848b8605Smrg# re-implements. 160848b8605Smrg 161848b8605SmrgINHERIT_DOCS = YES 162848b8605Smrg 163848b8605Smrg# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 164848b8605Smrg# tag is set to YES, then doxygen will reuse the documentation of the first 165848b8605Smrg# member in the group (if any) for the other members of the group. By default 166848b8605Smrg# all members of a group must be documented explicitly. 167848b8605Smrg 168848b8605SmrgDISTRIBUTE_GROUP_DOC = NO 169848b8605Smrg 170848b8605Smrg# The TAB_SIZE tag can be used to set the number of spaces in a tab. 171848b8605Smrg# Doxygen uses this value to replace tabs by spaces in code fragments. 172848b8605Smrg 173848b8605SmrgTAB_SIZE = 8 174848b8605Smrg 175848b8605Smrg# This tag can be used to specify a number of aliases that acts 176848b8605Smrg# as commands in the documentation. An alias has the form "name=value". 177848b8605Smrg# For example adding "sideeffect=\par Side Effects:\n" will allow you to 178848b8605Smrg# put the command \sideeffect (or @sideeffect) in the documentation, which 179848b8605Smrg# will result in a user-defined paragraph with heading "Side Effects:". 180848b8605Smrg# You can put \n's in the value part of an alias to insert newlines. 181848b8605Smrg 182848b8605SmrgALIASES = 183848b8605Smrg 184848b8605Smrg# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 185848b8605Smrg# only. Doxygen will then generate output that is more tailored for C. 186848b8605Smrg# For instance, some of the names that are used will be different. The list 187848b8605Smrg# of all members will be omitted, etc. 188848b8605Smrg 189848b8605SmrgOPTIMIZE_OUTPUT_FOR_C = YES 190848b8605Smrg 191848b8605Smrg# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources 192848b8605Smrg# only. Doxygen will then generate output that is more tailored for Java. 193848b8605Smrg# For instance, namespaces will be presented as packages, qualified scopes 194848b8605Smrg# will look different, etc. 195848b8605Smrg 196848b8605SmrgOPTIMIZE_OUTPUT_JAVA = NO 197848b8605Smrg 198848b8605Smrg# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 199848b8605Smrg# the same type (for instance a group of public functions) to be put as a 200848b8605Smrg# subgroup of that type (e.g. under the Public Functions section). Set it to 201848b8605Smrg# NO to prevent subgrouping. Alternatively, this can be done per class using 202848b8605Smrg# the \nosubgrouping command. 203848b8605Smrg 204848b8605SmrgSUBGROUPING = YES 205848b8605Smrg 206848b8605Smrg#--------------------------------------------------------------------------- 207848b8605Smrg# Build related configuration options 208848b8605Smrg#--------------------------------------------------------------------------- 209848b8605Smrg 210848b8605Smrg# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 211848b8605Smrg# documentation are documented, even if no documentation was available. 212848b8605Smrg# Private class members and static file members will be hidden unless 213848b8605Smrg# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 214848b8605Smrg 215848b8605SmrgEXTRACT_ALL = YES 216848b8605Smrg 217848b8605Smrg# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 218848b8605Smrg# will be included in the documentation. 219848b8605Smrg 220848b8605SmrgEXTRACT_PRIVATE = NO 221848b8605Smrg 222848b8605Smrg# If the EXTRACT_STATIC tag is set to YES all static members of a file 223848b8605Smrg# will be included in the documentation. 224848b8605Smrg 225848b8605SmrgEXTRACT_STATIC = YES 226848b8605Smrg 227848b8605Smrg# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 228848b8605Smrg# defined locally in source files will be included in the documentation. 229848b8605Smrg# If set to NO only classes defined in header files are included. 230848b8605Smrg 231848b8605SmrgEXTRACT_LOCAL_CLASSES = YES 232848b8605Smrg 233848b8605Smrg# This flag is only useful for Objective-C code. When set to YES local 234848b8605Smrg# methods, which are defined in the implementation section but not in 235848b8605Smrg# the interface are included in the documentation. 236848b8605Smrg# If set to NO (the default) only methods in the interface are included. 237848b8605Smrg 238848b8605SmrgEXTRACT_LOCAL_METHODS = NO 239848b8605Smrg 240848b8605Smrg# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 241848b8605Smrg# undocumented members of documented classes, files or namespaces. 242848b8605Smrg# If set to NO (the default) these members will be included in the 243848b8605Smrg# various overviews, but no documentation section is generated. 244848b8605Smrg# This option has no effect if EXTRACT_ALL is enabled. 245848b8605Smrg 246848b8605SmrgHIDE_UNDOC_MEMBERS = NO 247848b8605Smrg 248848b8605Smrg# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 249848b8605Smrg# undocumented classes that are normally visible in the class hierarchy. 250848b8605Smrg# If set to NO (the default) these classes will be included in the various 251848b8605Smrg# overviews. This option has no effect if EXTRACT_ALL is enabled. 252848b8605Smrg 253848b8605SmrgHIDE_UNDOC_CLASSES = NO 254848b8605Smrg 255848b8605Smrg# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 256848b8605Smrg# friend (class|struct|union) declarations. 257848b8605Smrg# If set to NO (the default) these declarations will be included in the 258848b8605Smrg# documentation. 259848b8605Smrg 260848b8605SmrgHIDE_FRIEND_COMPOUNDS = NO 261848b8605Smrg 262848b8605Smrg# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 263848b8605Smrg# documentation blocks found inside the body of a function. 264848b8605Smrg# If set to NO (the default) these blocks will be appended to the 265848b8605Smrg# function's detailed documentation block. 266848b8605Smrg 267848b8605SmrgHIDE_IN_BODY_DOCS = NO 268848b8605Smrg 269848b8605Smrg# The INTERNAL_DOCS tag determines if documentation 270848b8605Smrg# that is typed after a \internal command is included. If the tag is set 271848b8605Smrg# to NO (the default) then the documentation will be excluded. 272848b8605Smrg# Set it to YES to include the internal documentation. 273848b8605Smrg 274848b8605SmrgINTERNAL_DOCS = NO 275848b8605Smrg 276848b8605Smrg# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 277848b8605Smrg# file names in lower-case letters. If set to YES upper-case letters are also 278848b8605Smrg# allowed. This is useful if you have classes or files whose names only differ 279848b8605Smrg# in case and if your file system supports case sensitive file names. Windows 280848b8605Smrg# and Mac users are advised to set this option to NO. 281848b8605Smrg 282848b8605SmrgCASE_SENSE_NAMES = YES 283848b8605Smrg 284848b8605Smrg# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 285848b8605Smrg# will show members with their full class and namespace scopes in the 286848b8605Smrg# documentation. If set to YES the scope will be hidden. 287848b8605Smrg 288848b8605SmrgHIDE_SCOPE_NAMES = NO 289848b8605Smrg 290848b8605Smrg# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 291848b8605Smrg# will put a list of the files that are included by a file in the documentation 292848b8605Smrg# of that file. 293848b8605Smrg 294848b8605SmrgSHOW_INCLUDE_FILES = YES 295848b8605Smrg 296848b8605Smrg# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 297848b8605Smrg# is inserted in the documentation for inline members. 298848b8605Smrg 299848b8605SmrgINLINE_INFO = YES 300848b8605Smrg 301848b8605Smrg# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 302848b8605Smrg# will sort the (detailed) documentation of file and class members 303848b8605Smrg# alphabetically by member name. If set to NO the members will appear in 304848b8605Smrg# declaration order. 305848b8605Smrg 306848b8605SmrgSORT_MEMBER_DOCS = YES 307848b8605Smrg 308848b8605Smrg# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 309848b8605Smrg# brief documentation of file, namespace and class members alphabetically 310848b8605Smrg# by member name. If set to NO (the default) the members will appear in 311848b8605Smrg# declaration order. 312848b8605Smrg 313848b8605SmrgSORT_BRIEF_DOCS = NO 314848b8605Smrg 315848b8605Smrg# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 316848b8605Smrg# sorted by fully-qualified names, including namespaces. If set to 317848b8605Smrg# NO (the default), the class list will be sorted only by class name, 318848b8605Smrg# not including the namespace part. 319848b8605Smrg# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 320848b8605Smrg# Note: This option applies only to the class list, not to the 321848b8605Smrg# alphabetical list. 322848b8605Smrg 323848b8605SmrgSORT_BY_SCOPE_NAME = NO 324848b8605Smrg 325848b8605Smrg# The GENERATE_TODOLIST tag can be used to enable (YES) or 326848b8605Smrg# disable (NO) the todo list. This list is created by putting \todo 327848b8605Smrg# commands in the documentation. 328848b8605Smrg 329848b8605SmrgGENERATE_TODOLIST = YES 330848b8605Smrg 331848b8605Smrg# The GENERATE_TESTLIST tag can be used to enable (YES) or 332848b8605Smrg# disable (NO) the test list. This list is created by putting \test 333848b8605Smrg# commands in the documentation. 334848b8605Smrg 335848b8605SmrgGENERATE_TESTLIST = YES 336848b8605Smrg 337848b8605Smrg# The GENERATE_BUGLIST tag can be used to enable (YES) or 338848b8605Smrg# disable (NO) the bug list. This list is created by putting \bug 339848b8605Smrg# commands in the documentation. 340848b8605Smrg 341848b8605SmrgGENERATE_BUGLIST = YES 342848b8605Smrg 343848b8605Smrg# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 344848b8605Smrg# disable (NO) the deprecated list. This list is created by putting 345848b8605Smrg# \deprecated commands in the documentation. 346848b8605Smrg 347848b8605SmrgGENERATE_DEPRECATEDLIST= YES 348848b8605Smrg 349848b8605Smrg# The ENABLED_SECTIONS tag can be used to enable conditional 350848b8605Smrg# documentation sections, marked by \if sectionname ... \endif. 351848b8605Smrg 352848b8605SmrgENABLED_SECTIONS = 353848b8605Smrg 354848b8605Smrg# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 355848b8605Smrg# the initial value of a variable or define consists of for it to appear in 356848b8605Smrg# the documentation. If the initializer consists of more lines than specified 357848b8605Smrg# here it will be hidden. Use a value of 0 to hide initializers completely. 358848b8605Smrg# The appearance of the initializer of individual variables and defines in the 359848b8605Smrg# documentation can be controlled using \showinitializer or \hideinitializer 360848b8605Smrg# command in the documentation regardless of this setting. 361848b8605Smrg 362848b8605SmrgMAX_INITIALIZER_LINES = 30 363848b8605Smrg 364848b8605Smrg# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 365848b8605Smrg# at the bottom of the documentation of classes and structs. If set to YES the 366848b8605Smrg# list will mention the files that were used to generate the documentation. 367848b8605Smrg 368848b8605SmrgSHOW_USED_FILES = YES 369848b8605Smrg 370848b8605Smrg#--------------------------------------------------------------------------- 371848b8605Smrg# configuration options related to warning and progress messages 372848b8605Smrg#--------------------------------------------------------------------------- 373848b8605Smrg 374848b8605Smrg# The QUIET tag can be used to turn on/off the messages that are generated 375848b8605Smrg# by doxygen. Possible values are YES and NO. If left blank NO is used. 376848b8605Smrg 377848b8605SmrgQUIET = NO 378848b8605Smrg 379848b8605Smrg# The WARNINGS tag can be used to turn on/off the warning messages that are 380848b8605Smrg# generated by doxygen. Possible values are YES and NO. If left blank 381848b8605Smrg# NO is used. 382848b8605Smrg 383848b8605SmrgWARNINGS = YES 384848b8605Smrg 385848b8605Smrg# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 386848b8605Smrg# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 387848b8605Smrg# automatically be disabled. 388848b8605Smrg 389848b8605SmrgWARN_IF_UNDOCUMENTED = YES 390848b8605Smrg 391848b8605Smrg# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 392848b8605Smrg# potential errors in the documentation, such as not documenting some 393848b8605Smrg# parameters in a documented function, or documenting parameters that 394848b8605Smrg# don't exist or using markup commands wrongly. 395848b8605Smrg 396848b8605SmrgWARN_IF_DOC_ERROR = YES 397848b8605Smrg 398848b8605Smrg# The WARN_FORMAT tag determines the format of the warning messages that 399848b8605Smrg# doxygen can produce. The string should contain the $file, $line, and $text 400848b8605Smrg# tags, which will be replaced by the file and line number from which the 401848b8605Smrg# warning originated and the warning text. 402848b8605Smrg 403848b8605SmrgWARN_FORMAT = "$file:$line: $text" 404848b8605Smrg 405848b8605Smrg# The WARN_LOGFILE tag can be used to specify a file to which warning 406848b8605Smrg# and error messages should be written. If left blank the output is written 407848b8605Smrg# to stderr. 408848b8605Smrg 409848b8605SmrgWARN_LOGFILE = 410848b8605Smrg 411848b8605Smrg#--------------------------------------------------------------------------- 412848b8605Smrg# configuration options related to the input files 413848b8605Smrg#--------------------------------------------------------------------------- 414848b8605Smrg 415848b8605Smrg# The INPUT tag can be used to specify the files and/or directories that contain 416848b8605Smrg# documented source files. You may enter file names like "myfile.cpp" or 417848b8605Smrg# directories like "/usr/src/myproject". Separate the files or directories 418848b8605Smrg# with spaces. 419848b8605Smrg 420848b8605SmrgINPUT = 421848b8605Smrg 422848b8605Smrg# If the value of the INPUT tag contains directories, you can use the 423848b8605Smrg# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 424848b8605Smrg# and *.h) to filter out the source-files in the directories. If left 425848b8605Smrg# blank the following patterns are tested: 426848b8605Smrg# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp 427848b8605Smrg# *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm 428848b8605Smrg 429848b8605SmrgFILE_PATTERNS = 430848b8605Smrg 431848b8605Smrg# The RECURSIVE tag can be used to turn specify whether or not subdirectories 432848b8605Smrg# should be searched for input files as well. Possible values are YES and NO. 433848b8605Smrg# If left blank NO is used. 434848b8605Smrg 435848b8605SmrgRECURSIVE = NO 436848b8605Smrg 437848b8605Smrg# The EXCLUDE tag can be used to specify files and/or directories that should 438848b8605Smrg# excluded from the INPUT source files. This way you can easily exclude a 439848b8605Smrg# subdirectory from a directory tree whose root is specified with the INPUT tag. 440848b8605Smrg 441848b8605SmrgEXCLUDE = 442848b8605Smrg 443848b8605Smrg# The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories 444848b8605Smrg# that are symbolic links (a Unix filesystem feature) are excluded from the input. 445848b8605Smrg 446848b8605SmrgEXCLUDE_SYMLINKS = NO 447848b8605Smrg 448848b8605Smrg# If the value of the INPUT tag contains directories, you can use the 449848b8605Smrg# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 450848b8605Smrg# certain files from those directories. 451848b8605Smrg 452848b8605SmrgEXCLUDE_PATTERNS = 453848b8605Smrg 454848b8605Smrg# The EXAMPLE_PATH tag can be used to specify one or more files or 455848b8605Smrg# directories that contain example code fragments that are included (see 456848b8605Smrg# the \include command). 457848b8605Smrg 458848b8605SmrgEXAMPLE_PATH = 459848b8605Smrg 460848b8605Smrg# If the value of the EXAMPLE_PATH tag contains directories, you can use the 461848b8605Smrg# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 462848b8605Smrg# and *.h) to filter out the source-files in the directories. If left 463848b8605Smrg# blank all files are included. 464848b8605Smrg 465848b8605SmrgEXAMPLE_PATTERNS = 466848b8605Smrg 467848b8605Smrg# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 468848b8605Smrg# searched for input files to be used with the \include or \dontinclude 469848b8605Smrg# commands irrespective of the value of the RECURSIVE tag. 470848b8605Smrg# Possible values are YES and NO. If left blank NO is used. 471848b8605Smrg 472848b8605SmrgEXAMPLE_RECURSIVE = NO 473848b8605Smrg 474848b8605Smrg# The IMAGE_PATH tag can be used to specify one or more files or 475848b8605Smrg# directories that contain image that are included in the documentation (see 476848b8605Smrg# the \image command). 477848b8605Smrg 478848b8605SmrgIMAGE_PATH = 479848b8605Smrg 480848b8605Smrg# The INPUT_FILTER tag can be used to specify a program that doxygen should 481848b8605Smrg# invoke to filter for each input file. Doxygen will invoke the filter program 482848b8605Smrg# by executing (via popen()) the command <filter> <input-file>, where <filter> 483848b8605Smrg# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 484848b8605Smrg# input file. Doxygen will then use the output that the filter program writes 485848b8605Smrg# to standard output. If FILTER_PATTERNS is specified, this tag will be 486848b8605Smrg# ignored. 487848b8605Smrg 488848b8605SmrgINPUT_FILTER = 489848b8605Smrg 490848b8605Smrg# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 491848b8605Smrg# basis. Doxygen will compare the file name with each pattern and apply the 492848b8605Smrg# filter if there is a match. The filters are a list of the form: 493848b8605Smrg# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 494848b8605Smrg# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 495848b8605Smrg# is applied to all files. 496848b8605Smrg 497848b8605SmrgFILTER_PATTERNS = 498848b8605Smrg 499848b8605Smrg# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 500848b8605Smrg# INPUT_FILTER) will be used to filter the input files when producing source 501848b8605Smrg# files to browse (i.e. when SOURCE_BROWSER is set to YES). 502848b8605Smrg 503848b8605SmrgFILTER_SOURCE_FILES = NO 504848b8605Smrg 505848b8605Smrg#--------------------------------------------------------------------------- 506848b8605Smrg# configuration options related to source browsing 507848b8605Smrg#--------------------------------------------------------------------------- 508848b8605Smrg 509848b8605Smrg# If the SOURCE_BROWSER tag is set to YES then a list of source files will 510848b8605Smrg# be generated. Documented entities will be cross-referenced with these sources. 511848b8605Smrg# Note: To get rid of all source code in the generated output, make sure also 512848b8605Smrg# VERBATIM_HEADERS is set to NO. 513848b8605Smrg 514848b8605SmrgSOURCE_BROWSER = NO 515848b8605Smrg 516848b8605Smrg# Setting the INLINE_SOURCES tag to YES will include the body 517848b8605Smrg# of functions and classes directly in the documentation. 518848b8605Smrg 519848b8605SmrgINLINE_SOURCES = NO 520848b8605Smrg 521848b8605Smrg# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 522848b8605Smrg# doxygen to hide any special comment blocks from generated source code 523848b8605Smrg# fragments. Normal C and C++ comments will always remain visible. 524848b8605Smrg 525848b8605SmrgSTRIP_CODE_COMMENTS = YES 526848b8605Smrg 527848b8605Smrg# If the REFERENCED_BY_RELATION tag is set to YES (the default) 528848b8605Smrg# then for each documented function all documented 529848b8605Smrg# functions referencing it will be listed. 530848b8605Smrg 531848b8605SmrgREFERENCED_BY_RELATION = YES 532848b8605Smrg 533848b8605Smrg# If the REFERENCES_RELATION tag is set to YES (the default) 534848b8605Smrg# then for each documented function all documented entities 535848b8605Smrg# called/used by that function will be listed. 536848b8605Smrg 537848b8605SmrgREFERENCES_RELATION = YES 538848b8605Smrg 539848b8605Smrg# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 540848b8605Smrg# will generate a verbatim copy of the header file for each class for 541848b8605Smrg# which an include is specified. Set to NO to disable this. 542848b8605Smrg 543848b8605SmrgVERBATIM_HEADERS = NO 544848b8605Smrg 545848b8605Smrg#--------------------------------------------------------------------------- 546848b8605Smrg# configuration options related to the alphabetical class index 547848b8605Smrg#--------------------------------------------------------------------------- 548848b8605Smrg 549848b8605Smrg# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 550848b8605Smrg# of all compounds will be generated. Enable this if the project 551848b8605Smrg# contains a lot of classes, structs, unions or interfaces. 552848b8605Smrg 553848b8605SmrgALPHABETICAL_INDEX = NO 554848b8605Smrg 555848b8605Smrg# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 556848b8605Smrg# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 557848b8605Smrg# in which this list will be split (can be a number in the range [1..20]) 558848b8605Smrg 559848b8605SmrgCOLS_IN_ALPHA_INDEX = 5 560848b8605Smrg 561848b8605Smrg# In case all classes in a project start with a common prefix, all 562848b8605Smrg# classes will be put under the same header in the alphabetical index. 563848b8605Smrg# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 564848b8605Smrg# should be ignored while generating the index headers. 565848b8605Smrg 566848b8605SmrgIGNORE_PREFIX = 567848b8605Smrg 568848b8605Smrg#--------------------------------------------------------------------------- 569848b8605Smrg# configuration options related to the HTML output 570848b8605Smrg#--------------------------------------------------------------------------- 571848b8605Smrg 572848b8605Smrg# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 573848b8605Smrg# generate HTML output. 574848b8605Smrg 575848b8605SmrgGENERATE_HTML = YES 576848b8605Smrg 577848b8605Smrg# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 578848b8605Smrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 579848b8605Smrg# put in front of it. If left blank `html' will be used as the default path. 580848b8605Smrg 581848b8605SmrgHTML_OUTPUT = html 582848b8605Smrg 583848b8605Smrg# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 584848b8605Smrg# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 585848b8605Smrg# doxygen will generate files with .html extension. 586848b8605Smrg 587848b8605SmrgHTML_FILE_EXTENSION = .html 588848b8605Smrg 589848b8605Smrg# The HTML_HEADER tag can be used to specify a personal HTML header for 590848b8605Smrg# each generated HTML page. If it is left blank doxygen will generate a 591848b8605Smrg# standard header. 592848b8605Smrg 593848b8605SmrgHTML_HEADER = header.html 594848b8605Smrg 595848b8605Smrg# The HTML_FOOTER tag can be used to specify a personal HTML footer for 596848b8605Smrg# each generated HTML page. If it is left blank doxygen will generate a 597848b8605Smrg# standard footer. 598848b8605Smrg 599848b8605SmrgHTML_FOOTER = 600848b8605Smrg 601848b8605Smrg# The HTML_STYLESHEET tag can be used to specify a user-defined cascading 602848b8605Smrg# style sheet that is used by each HTML page. It can be used to 603848b8605Smrg# fine-tune the look of the HTML output. If the tag is left blank doxygen 604848b8605Smrg# will generate a default style sheet. Note that doxygen will try to copy 605848b8605Smrg# the style sheet file to the HTML output directory, so don't put your own 606848b8605Smrg# stylesheet in the HTML output directory as well, or it will be erased! 607848b8605Smrg 608848b8605SmrgHTML_STYLESHEET = 609848b8605Smrg 610848b8605Smrg# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 611848b8605Smrg# files or namespaces will be aligned in HTML using tables. If set to 612848b8605Smrg# NO a bullet list will be used. 613848b8605Smrg 614848b8605SmrgHTML_ALIGN_MEMBERS = YES 615848b8605Smrg 616848b8605Smrg# If the GENERATE_HTMLHELP tag is set to YES, additional index files 617848b8605Smrg# will be generated that can be used as input for tools like the 618848b8605Smrg# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 619848b8605Smrg# of the generated HTML documentation. 620848b8605Smrg 621848b8605SmrgGENERATE_HTMLHELP = NO 622848b8605Smrg 623848b8605Smrg# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 624848b8605Smrg# be used to specify the file name of the resulting .chm file. You 625848b8605Smrg# can add a path in front of the file if the result should not be 626848b8605Smrg# written to the html output directory. 627848b8605Smrg 628848b8605SmrgCHM_FILE = 629848b8605Smrg 630848b8605Smrg# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 631848b8605Smrg# be used to specify the location (absolute path including file name) of 632848b8605Smrg# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 633848b8605Smrg# the HTML help compiler on the generated index.hhp. 634848b8605Smrg 635848b8605SmrgHHC_LOCATION = 636848b8605Smrg 637848b8605Smrg# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 638848b8605Smrg# controls if a separate .chi index file is generated (YES) or that 639848b8605Smrg# it should be included in the master .chm file (NO). 640848b8605Smrg 641848b8605SmrgGENERATE_CHI = NO 642848b8605Smrg 643848b8605Smrg# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 644848b8605Smrg# controls whether a binary table of contents is generated (YES) or a 645848b8605Smrg# normal table of contents (NO) in the .chm file. 646848b8605Smrg 647848b8605SmrgBINARY_TOC = NO 648848b8605Smrg 649848b8605Smrg# The TOC_EXPAND flag can be set to YES to add extra items for group members 650848b8605Smrg# to the contents of the HTML help documentation and to the tree view. 651848b8605Smrg 652848b8605SmrgTOC_EXPAND = NO 653848b8605Smrg 654848b8605Smrg# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 655848b8605Smrg# top of each HTML page. The value NO (the default) enables the index and 656848b8605Smrg# the value YES disables it. 657848b8605Smrg 658848b8605SmrgDISABLE_INDEX = NO 659848b8605Smrg 660848b8605Smrg# This tag can be used to set the number of enum values (range [1..20]) 661848b8605Smrg# that doxygen will group on one line in the generated HTML documentation. 662848b8605Smrg 663848b8605SmrgENUM_VALUES_PER_LINE = 4 664848b8605Smrg 665848b8605Smrg# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be 666848b8605Smrg# generated containing a tree-like index structure (just like the one that 667848b8605Smrg# is generated for HTML Help). For this to work a browser that supports 668848b8605Smrg# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 669848b8605Smrg# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 670848b8605Smrg# probably better off using the HTML help feature. 671848b8605Smrg 672848b8605SmrgGENERATE_TREEVIEW = NO 673848b8605Smrg 674848b8605Smrg# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 675848b8605Smrg# used to set the initial width (in pixels) of the frame in which the tree 676848b8605Smrg# is shown. 677848b8605Smrg 678848b8605SmrgTREEVIEW_WIDTH = 250 679848b8605Smrg 680848b8605Smrg#--------------------------------------------------------------------------- 681848b8605Smrg# configuration options related to the LaTeX output 682848b8605Smrg#--------------------------------------------------------------------------- 683848b8605Smrg 684848b8605Smrg# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 685848b8605Smrg# generate Latex output. 686848b8605Smrg 687848b8605SmrgGENERATE_LATEX = NO 688848b8605Smrg 689848b8605Smrg# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 690848b8605Smrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 691848b8605Smrg# put in front of it. If left blank `latex' will be used as the default path. 692848b8605Smrg 693848b8605SmrgLATEX_OUTPUT = latex 694848b8605Smrg 695848b8605Smrg# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 696848b8605Smrg# invoked. If left blank `latex' will be used as the default command name. 697848b8605Smrg 698848b8605SmrgLATEX_CMD_NAME = latex 699848b8605Smrg 700848b8605Smrg# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 701848b8605Smrg# generate index for LaTeX. If left blank `makeindex' will be used as the 702848b8605Smrg# default command name. 703848b8605Smrg 704848b8605SmrgMAKEINDEX_CMD_NAME = makeindex 705848b8605Smrg 706848b8605Smrg# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 707848b8605Smrg# LaTeX documents. This may be useful for small projects and may help to 708848b8605Smrg# save some trees in general. 709848b8605Smrg 710848b8605SmrgCOMPACT_LATEX = NO 711848b8605Smrg 712848b8605Smrg# The PAPER_TYPE tag can be used to set the paper type that is used 713848b8605Smrg# by the printer. Possible values are: a4, a4wide, letter, legal and 714848b8605Smrg# executive. If left blank a4wide will be used. 715848b8605Smrg 716848b8605SmrgPAPER_TYPE = a4wide 717848b8605Smrg 718848b8605Smrg# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 719848b8605Smrg# packages that should be included in the LaTeX output. 720848b8605Smrg 721848b8605SmrgEXTRA_PACKAGES = 722848b8605Smrg 723848b8605Smrg# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 724848b8605Smrg# the generated latex document. The header should contain everything until 725848b8605Smrg# the first chapter. If it is left blank doxygen will generate a 726848b8605Smrg# standard header. Notice: only use this tag if you know what you are doing! 727848b8605Smrg 728848b8605SmrgLATEX_HEADER = 729848b8605Smrg 730848b8605Smrg# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 731848b8605Smrg# is prepared for conversion to pdf (using ps2pdf). The pdf file will 732848b8605Smrg# contain links (just like the HTML output) instead of page references 733848b8605Smrg# This makes the output suitable for online browsing using a pdf viewer. 734848b8605Smrg 735848b8605SmrgPDF_HYPERLINKS = NO 736848b8605Smrg 737848b8605Smrg# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 738848b8605Smrg# plain latex in the generated Makefile. Set this option to YES to get a 739848b8605Smrg# higher quality PDF documentation. 740848b8605Smrg 741848b8605SmrgUSE_PDFLATEX = NO 742848b8605Smrg 743848b8605Smrg# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 744848b8605Smrg# command to the generated LaTeX files. This will instruct LaTeX to keep 745848b8605Smrg# running if errors occur, instead of asking the user for help. 746848b8605Smrg# This option is also used when generating formulas in HTML. 747848b8605Smrg 748848b8605SmrgLATEX_BATCHMODE = NO 749848b8605Smrg 750848b8605Smrg# If LATEX_HIDE_INDICES is set to YES then doxygen will not 751848b8605Smrg# include the index chapters (such as File Index, Compound Index, etc.) 752848b8605Smrg# in the output. 753848b8605Smrg 754848b8605SmrgLATEX_HIDE_INDICES = NO 755848b8605Smrg 756848b8605Smrg#--------------------------------------------------------------------------- 757848b8605Smrg# configuration options related to the RTF output 758848b8605Smrg#--------------------------------------------------------------------------- 759848b8605Smrg 760848b8605Smrg# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 761848b8605Smrg# The RTF output is optimized for Word 97 and may not look very pretty with 762848b8605Smrg# other RTF readers or editors. 763848b8605Smrg 764848b8605SmrgGENERATE_RTF = NO 765848b8605Smrg 766848b8605Smrg# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 767848b8605Smrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 768848b8605Smrg# put in front of it. If left blank `rtf' will be used as the default path. 769848b8605Smrg 770848b8605SmrgRTF_OUTPUT = rtf 771848b8605Smrg 772848b8605Smrg# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 773848b8605Smrg# RTF documents. This may be useful for small projects and may help to 774848b8605Smrg# save some trees in general. 775848b8605Smrg 776848b8605SmrgCOMPACT_RTF = NO 777848b8605Smrg 778848b8605Smrg# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 779848b8605Smrg# will contain hyperlink fields. The RTF file will 780848b8605Smrg# contain links (just like the HTML output) instead of page references. 781848b8605Smrg# This makes the output suitable for online browsing using WORD or other 782848b8605Smrg# programs which support those fields. 783848b8605Smrg# Note: wordpad (write) and others do not support links. 784848b8605Smrg 785848b8605SmrgRTF_HYPERLINKS = NO 786848b8605Smrg 787848b8605Smrg# Load stylesheet definitions from file. Syntax is similar to doxygen's 788848b8605Smrg# config file, i.e. a series of assignments. You only have to provide 789848b8605Smrg# replacements, missing definitions are set to their default value. 790848b8605Smrg 791848b8605SmrgRTF_STYLESHEET_FILE = 792848b8605Smrg 793848b8605Smrg# Set optional variables used in the generation of an rtf document. 794848b8605Smrg# Syntax is similar to doxygen's config file. 795848b8605Smrg 796848b8605SmrgRTF_EXTENSIONS_FILE = 797848b8605Smrg 798848b8605Smrg#--------------------------------------------------------------------------- 799848b8605Smrg# configuration options related to the man page output 800848b8605Smrg#--------------------------------------------------------------------------- 801848b8605Smrg 802848b8605Smrg# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 803848b8605Smrg# generate man pages 804848b8605Smrg 805848b8605SmrgGENERATE_MAN = NO 806848b8605Smrg 807848b8605Smrg# The MAN_OUTPUT tag is used to specify where the man pages will be put. 808848b8605Smrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 809848b8605Smrg# put in front of it. If left blank `man' will be used as the default path. 810848b8605Smrg 811848b8605SmrgMAN_OUTPUT = man 812848b8605Smrg 813848b8605Smrg# The MAN_EXTENSION tag determines the extension that is added to 814848b8605Smrg# the generated man pages (default is the subroutine's section .3) 815848b8605Smrg 816848b8605SmrgMAN_EXTENSION = .3 817848b8605Smrg 818848b8605Smrg# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 819848b8605Smrg# then it will generate one additional man file for each entity 820848b8605Smrg# documented in the real man page(s). These additional files 821848b8605Smrg# only source the real man page, but without them the man command 822848b8605Smrg# would be unable to find the correct page. The default is NO. 823848b8605Smrg 824848b8605SmrgMAN_LINKS = NO 825848b8605Smrg 826848b8605Smrg#--------------------------------------------------------------------------- 827848b8605Smrg# configuration options related to the XML output 828848b8605Smrg#--------------------------------------------------------------------------- 829848b8605Smrg 830848b8605Smrg# If the GENERATE_XML tag is set to YES Doxygen will 831848b8605Smrg# generate an XML file that captures the structure of 832848b8605Smrg# the code including all documentation. 833848b8605Smrg 834848b8605SmrgGENERATE_XML = NO 835848b8605Smrg 836848b8605Smrg# The XML_OUTPUT tag is used to specify where the XML pages will be put. 837848b8605Smrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 838848b8605Smrg# put in front of it. If left blank `xml' will be used as the default path. 839848b8605Smrg 840848b8605SmrgXML_OUTPUT = xml 841848b8605Smrg 842848b8605Smrg# The XML_SCHEMA tag can be used to specify an XML schema, 843848b8605Smrg# which can be used by a validating XML parser to check the 844848b8605Smrg# syntax of the XML files. 845848b8605Smrg 846848b8605SmrgXML_SCHEMA = 847848b8605Smrg 848848b8605Smrg# The XML_DTD tag can be used to specify an XML DTD, 849848b8605Smrg# which can be used by a validating XML parser to check the 850848b8605Smrg# syntax of the XML files. 851848b8605Smrg 852848b8605SmrgXML_DTD = 853848b8605Smrg 854848b8605Smrg# If the XML_PROGRAMLISTING tag is set to YES Doxygen will 855848b8605Smrg# dump the program listings (including syntax highlighting 856848b8605Smrg# and cross-referencing information) to the XML output. Note that 857848b8605Smrg# enabling this will significantly increase the size of the XML output. 858848b8605Smrg 859848b8605SmrgXML_PROGRAMLISTING = YES 860848b8605Smrg 861848b8605Smrg#--------------------------------------------------------------------------- 862848b8605Smrg# configuration options for the AutoGen Definitions output 863848b8605Smrg#--------------------------------------------------------------------------- 864848b8605Smrg 865848b8605Smrg# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 866848b8605Smrg# generate an AutoGen Definitions (see autogen.sf.net) file 867848b8605Smrg# that captures the structure of the code including all 868848b8605Smrg# documentation. Note that this feature is still experimental 869848b8605Smrg# and incomplete at the moment. 870848b8605Smrg 871848b8605SmrgGENERATE_AUTOGEN_DEF = NO 872848b8605Smrg 873848b8605Smrg#--------------------------------------------------------------------------- 874848b8605Smrg# configuration options related to the Perl module output 875848b8605Smrg#--------------------------------------------------------------------------- 876848b8605Smrg 877848b8605Smrg# If the GENERATE_PERLMOD tag is set to YES Doxygen will 878848b8605Smrg# generate a Perl module file that captures the structure of 879848b8605Smrg# the code including all documentation. Note that this 880848b8605Smrg# feature is still experimental and incomplete at the 881848b8605Smrg# moment. 882848b8605Smrg 883848b8605SmrgGENERATE_PERLMOD = NO 884848b8605Smrg 885848b8605Smrg# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 886848b8605Smrg# the necessary Makefile rules, Perl scripts and LaTeX code to be able 887848b8605Smrg# to generate PDF and DVI output from the Perl module output. 888848b8605Smrg 889848b8605SmrgPERLMOD_LATEX = NO 890848b8605Smrg 891848b8605Smrg# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 892848b8605Smrg# nicely formatted so it can be parsed by a human reader. This is useful 893848b8605Smrg# if you want to understand what is going on. On the other hand, if this 894848b8605Smrg# tag is set to NO the size of the Perl module output will be much smaller 895848b8605Smrg# and Perl will parse it just the same. 896848b8605Smrg 897848b8605SmrgPERLMOD_PRETTY = YES 898848b8605Smrg 899848b8605Smrg# The names of the make variables in the generated doxyrules.make file 900848b8605Smrg# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 901848b8605Smrg# This is useful so different doxyrules.make files included by the same 902848b8605Smrg# Makefile don't overwrite each other's variables. 903848b8605Smrg 904848b8605SmrgPERLMOD_MAKEVAR_PREFIX = 905848b8605Smrg 906848b8605Smrg#--------------------------------------------------------------------------- 907848b8605Smrg# Configuration options related to the preprocessor 908848b8605Smrg#--------------------------------------------------------------------------- 909848b8605Smrg 910848b8605Smrg# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 911848b8605Smrg# evaluate all C-preprocessor directives found in the sources and include 912848b8605Smrg# files. 913848b8605Smrg 914848b8605SmrgENABLE_PREPROCESSING = YES 915848b8605Smrg 916848b8605Smrg# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 917848b8605Smrg# names in the source code. If set to NO (the default) only conditional 918848b8605Smrg# compilation will be performed. Macro expansion can be done in a controlled 919848b8605Smrg# way by setting EXPAND_ONLY_PREDEF to YES. 920848b8605Smrg 921848b8605SmrgMACRO_EXPANSION = NO 922848b8605Smrg 923848b8605Smrg# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 924848b8605Smrg# then the macro expansion is limited to the macros specified with the 925848b8605Smrg# PREDEFINED and EXPAND_AS_PREDEFINED tags. 926848b8605Smrg 927848b8605SmrgEXPAND_ONLY_PREDEF = NO 928848b8605Smrg 929848b8605Smrg# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 930848b8605Smrg# in the INCLUDE_PATH (see below) will be search if a #include is found. 931848b8605Smrg 932848b8605SmrgSEARCH_INCLUDES = YES 933848b8605Smrg 934848b8605Smrg# The INCLUDE_PATH tag can be used to specify one or more directories that 935848b8605Smrg# contain include files that are not input files but should be processed by 936848b8605Smrg# the preprocessor. 937848b8605Smrg 938848b8605SmrgINCLUDE_PATH = ../include 939848b8605Smrg 940848b8605Smrg# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 941848b8605Smrg# patterns (like *.h and *.hpp) to filter out the header-files in the 942848b8605Smrg# directories. If left blank, the patterns specified with FILE_PATTERNS will 943848b8605Smrg# be used. 944848b8605Smrg 945848b8605SmrgINCLUDE_FILE_PATTERNS = 946848b8605Smrg 947848b8605Smrg# The PREDEFINED tag can be used to specify one or more macro names that 948848b8605Smrg# are defined before the preprocessor is started (similar to the -D option of 949848b8605Smrg# gcc). The argument of the tag is a list of macros of the form: name 950848b8605Smrg# or name=definition (no spaces). If the definition and the = are 951848b8605Smrg# omitted =1 is assumed. 952848b8605Smrg 953848b8605SmrgPREDEFINED = 954848b8605Smrg 955848b8605Smrg# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 956848b8605Smrg# this tag can be used to specify a list of macro names that should be expanded. 957848b8605Smrg# The macro definition that is found in the sources will be used. 958848b8605Smrg# Use the PREDEFINED tag if you want to use a different macro definition. 959848b8605Smrg 960848b8605SmrgEXPAND_AS_DEFINED = 961848b8605Smrg 962848b8605Smrg# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 963848b8605Smrg# doxygen's preprocessor will remove all function-like macros that are alone 964848b8605Smrg# on a line, have an all uppercase name, and do not end with a semicolon. Such 965848b8605Smrg# function macros are typically used for boiler-plate code, and will confuse the 966848b8605Smrg# parser if not removed. 967848b8605Smrg 968848b8605SmrgSKIP_FUNCTION_MACROS = YES 969848b8605Smrg 970848b8605Smrg#--------------------------------------------------------------------------- 971848b8605Smrg# Configuration::additions related to external references 972848b8605Smrg#--------------------------------------------------------------------------- 973848b8605Smrg 974848b8605Smrg# The TAGFILES option can be used to specify one or more tagfiles. 975848b8605Smrg# Optionally an initial location of the external documentation 976848b8605Smrg# can be added for each tagfile. The format of a tag file without 977848b8605Smrg# this location is as follows: 978848b8605Smrg# TAGFILES = file1 file2 ... 979848b8605Smrg# Adding location for the tag files is done as follows: 980848b8605Smrg# TAGFILES = file1=loc1 "file2 = loc2" ... 981848b8605Smrg# where "loc1" and "loc2" can be relative or absolute paths or 982848b8605Smrg# URLs. If a location is present for each tag, the installdox tool 983848b8605Smrg# does not have to be run to correct the links. 984848b8605Smrg# Note that each tag file must have a unique name 985848b8605Smrg# (where the name does NOT include the path) 986848b8605Smrg# If a tag file is not located in the directory in which doxygen 987848b8605Smrg# is run, you must also specify the path to the tagfile here. 988848b8605Smrg 989848b8605SmrgTAGFILES = 990848b8605Smrg 991848b8605Smrg# When a file name is specified after GENERATE_TAGFILE, doxygen will create 992848b8605Smrg# a tag file that is based on the input files it reads. 993848b8605Smrg 994848b8605SmrgGENERATE_TAGFILE = 995848b8605Smrg 996848b8605Smrg# If the ALLEXTERNALS tag is set to YES all external classes will be listed 997848b8605Smrg# in the class index. If set to NO only the inherited external classes 998848b8605Smrg# will be listed. 999848b8605Smrg 1000848b8605SmrgALLEXTERNALS = NO 1001848b8605Smrg 1002848b8605Smrg# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 1003848b8605Smrg# in the modules index. If set to NO, only the current project's groups will 1004848b8605Smrg# be listed. 1005848b8605Smrg 1006848b8605SmrgEXTERNAL_GROUPS = NO 1007848b8605Smrg 1008848b8605Smrg# The PERL_PATH should be the absolute path and name of the perl script 1009848b8605Smrg# interpreter (i.e. the result of `which perl'). 1010848b8605Smrg 1011848b8605SmrgPERL_PATH = /usr/bin/perl 1012848b8605Smrg 1013848b8605Smrg#--------------------------------------------------------------------------- 1014848b8605Smrg# Configuration options related to the dot tool 1015848b8605Smrg#--------------------------------------------------------------------------- 1016848b8605Smrg 1017848b8605Smrg# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 1018848b8605Smrg# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base or 1019848b8605Smrg# super classes. Setting the tag to NO turns the diagrams off. Note that this 1020848b8605Smrg# option is superseded by the HAVE_DOT option below. This is only a fallback. It is 1021848b8605Smrg# recommended to install and use dot, since it yields more powerful graphs. 1022848b8605Smrg 1023848b8605SmrgCLASS_DIAGRAMS = YES 1024848b8605Smrg 1025848b8605Smrg# If set to YES, the inheritance and collaboration graphs will hide 1026848b8605Smrg# inheritance and usage relations if the target is undocumented 1027848b8605Smrg# or is not a class. 1028848b8605Smrg 1029848b8605SmrgHIDE_UNDOC_RELATIONS = YES 1030848b8605Smrg 1031848b8605Smrg# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 1032848b8605Smrg# available from the path. This tool is part of Graphviz, a graph visualization 1033848b8605Smrg# toolkit from AT&T and Lucent Bell Labs. The other options in this section 1034848b8605Smrg# have no effect if this option is set to NO (the default) 1035848b8605Smrg 1036848b8605SmrgHAVE_DOT = NO 1037848b8605Smrg 1038848b8605Smrg# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 1039848b8605Smrg# will generate a graph for each documented class showing the direct and 1040848b8605Smrg# indirect inheritance relations. Setting this tag to YES will force the 1041848b8605Smrg# the CLASS_DIAGRAMS tag to NO. 1042848b8605Smrg 1043848b8605SmrgCLASS_GRAPH = YES 1044848b8605Smrg 1045848b8605Smrg# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 1046848b8605Smrg# will generate a graph for each documented class showing the direct and 1047848b8605Smrg# indirect implementation dependencies (inheritance, containment, and 1048848b8605Smrg# class references variables) of the class with other documented classes. 1049848b8605Smrg 1050848b8605SmrgCOLLABORATION_GRAPH = YES 1051848b8605Smrg 1052848b8605Smrg# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 1053848b8605Smrg# collaboration diagrams in a style similar to the OMG's Unified Modeling 1054848b8605Smrg# Language. 1055848b8605Smrg 1056848b8605SmrgUML_LOOK = NO 1057848b8605Smrg 1058848b8605Smrg# If set to YES, the inheritance and collaboration graphs will show the 1059848b8605Smrg# relations between templates and their instances. 1060848b8605Smrg 1061848b8605SmrgTEMPLATE_RELATIONS = NO 1062848b8605Smrg 1063848b8605Smrg# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 1064848b8605Smrg# tags are set to YES then doxygen will generate a graph for each documented 1065848b8605Smrg# file showing the direct and indirect include dependencies of the file with 1066848b8605Smrg# other documented files. 1067848b8605Smrg 1068848b8605SmrgINCLUDE_GRAPH = YES 1069848b8605Smrg 1070848b8605Smrg# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 1071848b8605Smrg# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 1072848b8605Smrg# documented header file showing the documented files that directly or 1073848b8605Smrg# indirectly include this file. 1074848b8605Smrg 1075848b8605SmrgINCLUDED_BY_GRAPH = YES 1076848b8605Smrg 1077848b8605Smrg# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will 1078848b8605Smrg# generate a call dependency graph for every global function or class method. 1079848b8605Smrg# Note that enabling this option will significantly increase the time of a run. 1080848b8605Smrg# So in most cases it will be better to enable call graphs for selected 1081848b8605Smrg# functions only using the \callgraph command. 1082848b8605Smrg 1083848b8605SmrgCALL_GRAPH = NO 1084848b8605Smrg 1085848b8605Smrg# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 1086848b8605Smrg# will graphical hierarchy of all classes instead of a textual one. 1087848b8605Smrg 1088848b8605SmrgGRAPHICAL_HIERARCHY = YES 1089848b8605Smrg 1090848b8605Smrg# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 1091848b8605Smrg# generated by dot. Possible values are png, jpg, or gif 1092848b8605Smrg# If left blank png will be used. 1093848b8605Smrg 1094848b8605SmrgDOT_IMAGE_FORMAT = png 1095848b8605Smrg 1096848b8605Smrg# The tag DOT_PATH can be used to specify the path where the dot tool can be 1097848b8605Smrg# found. If left blank, it is assumed the dot tool can be found on the path. 1098848b8605Smrg 1099848b8605SmrgDOT_PATH = 1100848b8605Smrg 1101848b8605Smrg# The DOTFILE_DIRS tag can be used to specify one or more directories that 1102848b8605Smrg# contain dot files that are included in the documentation (see the 1103848b8605Smrg# \dotfile command). 1104848b8605Smrg 1105848b8605SmrgDOTFILE_DIRS = 1106848b8605Smrg 1107848b8605Smrg# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 1108848b8605Smrg# (in pixels) of the graphs generated by dot. If a graph becomes larger than 1109848b8605Smrg# this value, doxygen will try to truncate the graph, so that it fits within 1110848b8605Smrg# the specified constraint. Beware that most browsers cannot cope with very 1111848b8605Smrg# large images. 1112848b8605Smrg 1113848b8605SmrgMAX_DOT_GRAPH_WIDTH = 1024 1114848b8605Smrg 1115848b8605Smrg# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 1116848b8605Smrg# (in pixels) of the graphs generated by dot. If a graph becomes larger than 1117848b8605Smrg# this value, doxygen will try to truncate the graph, so that it fits within 1118848b8605Smrg# the specified constraint. Beware that most browsers cannot cope with very 1119848b8605Smrg# large images. 1120848b8605Smrg 1121848b8605SmrgMAX_DOT_GRAPH_HEIGHT = 1024 1122848b8605Smrg 1123848b8605Smrg# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1124848b8605Smrg# graphs generated by dot. A depth value of 3 means that only nodes reachable 1125848b8605Smrg# from the root by following a path via at most 3 edges will be shown. Nodes that 1126848b8605Smrg# lay further from the root node will be omitted. Note that setting this option to 1127848b8605Smrg# 1 or 2 may greatly reduce the computation time needed for large code bases. Also 1128848b8605Smrg# note that a graph may be further truncated if the graph's image dimensions are 1129848b8605Smrg# not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH and MAX_DOT_GRAPH_HEIGHT). 1130848b8605Smrg# If 0 is used for the depth value (the default), the graph is not depth-constrained. 1131848b8605Smrg 1132848b8605SmrgMAX_DOT_GRAPH_DEPTH = 0 1133848b8605Smrg 1134848b8605Smrg# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 1135848b8605Smrg# generate a legend page explaining the meaning of the various boxes and 1136848b8605Smrg# arrows in the dot generated graphs. 1137848b8605Smrg 1138848b8605SmrgGENERATE_LEGEND = YES 1139848b8605Smrg 1140848b8605Smrg# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 1141848b8605Smrg# remove the intermediate dot files that are used to generate 1142848b8605Smrg# the various graphs. 1143848b8605Smrg 1144848b8605SmrgDOT_CLEANUP = YES 1145848b8605Smrg 1146848b8605Smrg#--------------------------------------------------------------------------- 1147848b8605Smrg# Configuration::additions related to the search engine 1148848b8605Smrg#--------------------------------------------------------------------------- 1149848b8605Smrg 1150848b8605Smrg# The SEARCHENGINE tag specifies whether or not a search engine should be 1151848b8605Smrg# used. If set to NO the values of all tags below this one will be ignored. 1152848b8605Smrg 1153848b8605SmrgSEARCHENGINE = NO 1154