1602e473dSmrg# Doxyfile 1.5.0 2602e473dSmrg 3602e473dSmrg# This file describes the settings to be used by the documentation system 4602e473dSmrg# doxygen (www.doxygen.org) for a project 5602e473dSmrg# 6602e473dSmrg# All text after a hash (#) is considered a comment and will be ignored 7602e473dSmrg# The format is: 8602e473dSmrg# TAG = value [value, ...] 9602e473dSmrg# For lists items can also be appended using: 10602e473dSmrg# TAG += value [value, ...] 11602e473dSmrg# Values that contain spaces should be placed between quotes (" ") 12602e473dSmrg 13602e473dSmrg#--------------------------------------------------------------------------- 14602e473dSmrg# Project related configuration options 15602e473dSmrg#--------------------------------------------------------------------------- 16602e473dSmrg 17602e473dSmrg# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 18602e473dSmrg# by quotes) that should identify the project. 19602e473dSmrg 20602e473dSmrgPROJECT_NAME = "XCB" 21602e473dSmrg 22602e473dSmrg# The PROJECT_NUMBER tag can be used to enter a project or revision number. 23602e473dSmrg# This could be handy for archiving the generated documentation or 24602e473dSmrg# if some version control system is used. 25602e473dSmrg 26602e473dSmrgPROJECT_NUMBER = @VERSION@ 27602e473dSmrg 28602e473dSmrg# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 29602e473dSmrg# base path where the generated documentation will be put. 30602e473dSmrg# If a relative path is entered, it will be relative to the location 31602e473dSmrg# where doxygen was started. If left blank the current directory will be used. 32602e473dSmrg 33602e473dSmrgOUTPUT_DIRECTORY = @top_builddir@/doc 34602e473dSmrg 35602e473dSmrg# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 36602e473dSmrg# 4096 sub-directories (in 2 levels) under the output directory of each output 37602e473dSmrg# format and will distribute the generated files over these directories. 38602e473dSmrg# Enabling this option can be useful when feeding doxygen a huge amount of 39602e473dSmrg# source files, where putting all generated files in the same directory would 40602e473dSmrg# otherwise cause performance problems for the file system. 41602e473dSmrg 42602e473dSmrgCREATE_SUBDIRS = NO 43602e473dSmrg 44602e473dSmrg# The OUTPUT_LANGUAGE tag is used to specify the language in which all 45602e473dSmrg# documentation generated by doxygen is written. Doxygen will use this 46602e473dSmrg# information to generate all constant output in the proper language. 47602e473dSmrg# The default language is English, other supported languages are: 48602e473dSmrg# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 49602e473dSmrg# Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian, 50602e473dSmrg# Italian, Japanese, Japanese-en (Japanese with English messages), Korean, 51602e473dSmrg# Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian, 52602e473dSmrg# Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian. 53602e473dSmrg 54602e473dSmrgOUTPUT_LANGUAGE = English 55602e473dSmrg 56602e473dSmrg# This tag can be used to specify the encoding used in the generated output. 57602e473dSmrg# The encoding is not always determined by the language that is chosen, 58602e473dSmrg# but also whether or not the output is meant for Windows or non-Windows users. 59602e473dSmrg# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES 60602e473dSmrg# forces the Windows encoding (this is the default for the Windows binary), 61602e473dSmrg# whereas setting the tag to NO uses a Unix-style encoding (the default for 62602e473dSmrg# all platforms other than Windows). 63602e473dSmrg 64602e473dSmrgUSE_WINDOWS_ENCODING = NO 65602e473dSmrg 66602e473dSmrg# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 67602e473dSmrg# include brief member descriptions after the members that are listed in 68602e473dSmrg# the file and class documentation (similar to JavaDoc). 69602e473dSmrg# Set to NO to disable this. 70602e473dSmrg 71602e473dSmrgBRIEF_MEMBER_DESC = YES 72602e473dSmrg 73602e473dSmrg# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 74602e473dSmrg# the brief description of a member or function before the detailed description. 75602e473dSmrg# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 76602e473dSmrg# brief descriptions will be completely suppressed. 77602e473dSmrg 78602e473dSmrgREPEAT_BRIEF = YES 79602e473dSmrg 80602e473dSmrg# This tag implements a quasi-intelligent brief description abbreviator 81602e473dSmrg# that is used to form the text in various listings. Each string 82602e473dSmrg# in this list, if found as the leading text of the brief description, will be 83602e473dSmrg# stripped from the text and the result after processing the whole list, is 84602e473dSmrg# used as the annotated text. Otherwise, the brief description is used as-is. 85602e473dSmrg# If left blank, the following values are used ("$name" is automatically 86602e473dSmrg# replaced with the name of the entity): "The $name class" "The $name widget" 87602e473dSmrg# "The $name file" "is" "provides" "specifies" "contains" 88602e473dSmrg# "represents" "a" "an" "the" 89602e473dSmrg 90602e473dSmrgABBREVIATE_BRIEF = 91602e473dSmrg 92602e473dSmrg# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 93602e473dSmrg# Doxygen will generate a detailed section even if there is only a brief 94602e473dSmrg# description. 95602e473dSmrg 96602e473dSmrgALWAYS_DETAILED_SEC = NO 97602e473dSmrg 98602e473dSmrg# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 99602e473dSmrg# inherited members of a class in the documentation of that class as if those 100602e473dSmrg# members were ordinary class members. Constructors, destructors and assignment 101602e473dSmrg# operators of the base classes will not be shown. 102602e473dSmrg 103602e473dSmrgINLINE_INHERITED_MEMB = NO 104602e473dSmrg 105602e473dSmrg# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 106602e473dSmrg# path before files name in the file list and in the header files. If set 107602e473dSmrg# to NO the shortest path that makes the file name unique will be used. 108602e473dSmrg 109602e473dSmrgFULL_PATH_NAMES = NO 110602e473dSmrg 111602e473dSmrg# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 112602e473dSmrg# can be used to strip a user-defined part of the path. Stripping is 113602e473dSmrg# only done if one of the specified strings matches the left-hand part of 114602e473dSmrg# the path. The tag can be used to show relative paths in the file list. 115602e473dSmrg# If left blank the directory from which doxygen is run is used as the 116602e473dSmrg# path to strip. 117602e473dSmrg 118602e473dSmrgSTRIP_FROM_PATH = 119602e473dSmrg 120602e473dSmrg# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 121602e473dSmrg# the path mentioned in the documentation of a class, which tells 122602e473dSmrg# the reader which header file to include in order to use a class. 123602e473dSmrg# If left blank only the name of the header file containing the class 124602e473dSmrg# definition is used. Otherwise one should specify the include paths that 125602e473dSmrg# are normally passed to the compiler using the -I flag. 126602e473dSmrg 127602e473dSmrgSTRIP_FROM_INC_PATH = 128602e473dSmrg 129602e473dSmrg# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 130602e473dSmrg# (but less readable) file names. This can be useful is your file systems 131602e473dSmrg# doesn't support long names like on DOS, Mac, or CD-ROM. 132602e473dSmrg 133602e473dSmrgSHORT_NAMES = NO 134602e473dSmrg 135602e473dSmrg# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 136602e473dSmrg# will interpret the first line (until the first dot) of a JavaDoc-style 137602e473dSmrg# comment as the brief description. If set to NO, the JavaDoc 138602e473dSmrg# comments will behave just like the Qt-style comments (thus requiring an 139602e473dSmrg# explicit @brief command for a brief description. 140602e473dSmrg 141602e473dSmrgJAVADOC_AUTOBRIEF = NO 142602e473dSmrg 143602e473dSmrg# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 144602e473dSmrg# treat a multi-line C++ special comment block (i.e. a block of //! or /// 145602e473dSmrg# comments) as a brief description. This used to be the default behaviour. 146602e473dSmrg# The new default is to treat a multi-line C++ comment block as a detailed 147602e473dSmrg# description. Set this tag to YES if you prefer the old behaviour instead. 148602e473dSmrg 149602e473dSmrgMULTILINE_CPP_IS_BRIEF = NO 150602e473dSmrg 151602e473dSmrg# If the DETAILS_AT_TOP tag is set to YES then Doxygen 152602e473dSmrg# will output the detailed description near the top, like JavaDoc. 153602e473dSmrg# If set to NO, the detailed description appears after the member 154602e473dSmrg# documentation. 155602e473dSmrg 156602e473dSmrgDETAILS_AT_TOP = NO 157602e473dSmrg 158602e473dSmrg# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 159602e473dSmrg# member inherits the documentation from any documented member that it 160602e473dSmrg# re-implements. 161602e473dSmrg 162602e473dSmrgINHERIT_DOCS = YES 163602e473dSmrg 164602e473dSmrg# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 165602e473dSmrg# a new page for each member. If set to NO, the documentation of a member will 166602e473dSmrg# be part of the file/class/namespace that contains it. 167602e473dSmrg 168602e473dSmrgSEPARATE_MEMBER_PAGES = NO 169602e473dSmrg 170602e473dSmrg# The TAB_SIZE tag can be used to set the number of spaces in a tab. 171602e473dSmrg# Doxygen uses this value to replace tabs by spaces in code fragments. 172602e473dSmrg 173602e473dSmrgTAB_SIZE = 8 174602e473dSmrg 175602e473dSmrg# This tag can be used to specify a number of aliases that acts 176602e473dSmrg# as commands in the documentation. An alias has the form "name=value". 177602e473dSmrg# For example adding "sideeffect=\par Side Effects:\n" will allow you to 178602e473dSmrg# put the command \sideeffect (or @sideeffect) in the documentation, which 179602e473dSmrg# will result in a user-defined paragraph with heading "Side Effects:". 180602e473dSmrg# You can put \n's in the value part of an alias to insert newlines. 181602e473dSmrg 182602e473dSmrgALIASES = 183602e473dSmrg 184602e473dSmrg# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 185602e473dSmrg# sources only. Doxygen will then generate output that is more tailored for C. 186602e473dSmrg# For instance, some of the names that are used will be different. The list 187602e473dSmrg# of all members will be omitted, etc. 188602e473dSmrg 189602e473dSmrgOPTIMIZE_OUTPUT_FOR_C = YES 190602e473dSmrg 191602e473dSmrg# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 192602e473dSmrg# sources only. Doxygen will then generate output that is more tailored for Java. 193602e473dSmrg# For instance, namespaces will be presented as packages, qualified scopes 194602e473dSmrg# will look different, etc. 195602e473dSmrg 196602e473dSmrgOPTIMIZE_OUTPUT_JAVA = NO 197602e473dSmrg 198602e473dSmrg# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to 199602e473dSmrg# include (a tag file for) the STL sources as input, then you should 200602e473dSmrg# set this tag to YES in order to let doxygen match functions declarations and 201602e473dSmrg# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 202602e473dSmrg# func(std::string) {}). This also make the inheritance and collaboration 203602e473dSmrg# diagrams that involve STL classes more complete and accurate. 204602e473dSmrg 205602e473dSmrgBUILTIN_STL_SUPPORT = NO 206602e473dSmrg 207602e473dSmrg# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 208602e473dSmrg# tag is set to YES, then doxygen will reuse the documentation of the first 209602e473dSmrg# member in the group (if any) for the other members of the group. By default 210602e473dSmrg# all members of a group must be documented explicitly. 211602e473dSmrg 212602e473dSmrgDISTRIBUTE_GROUP_DOC = NO 213602e473dSmrg 214602e473dSmrg# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 215602e473dSmrg# the same type (for instance a group of public functions) to be put as a 216602e473dSmrg# subgroup of that type (e.g. under the Public Functions section). Set it to 217602e473dSmrg# NO to prevent subgrouping. Alternatively, this can be done per class using 218602e473dSmrg# the \nosubgrouping command. 219602e473dSmrg 220602e473dSmrgSUBGROUPING = YES 221602e473dSmrg 222602e473dSmrg#--------------------------------------------------------------------------- 223602e473dSmrg# Build related configuration options 224602e473dSmrg#--------------------------------------------------------------------------- 225602e473dSmrg 226602e473dSmrg# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 227602e473dSmrg# documentation are documented, even if no documentation was available. 228602e473dSmrg# Private class members and static file members will be hidden unless 229602e473dSmrg# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 230602e473dSmrg 231602e473dSmrgEXTRACT_ALL = NO 232602e473dSmrg 233602e473dSmrg# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 234602e473dSmrg# will be included in the documentation. 235602e473dSmrg 236602e473dSmrgEXTRACT_PRIVATE = NO 237602e473dSmrg 238602e473dSmrg# If the EXTRACT_STATIC tag is set to YES all static members of a file 239602e473dSmrg# will be included in the documentation. 240602e473dSmrg 241602e473dSmrgEXTRACT_STATIC = NO 242602e473dSmrg 243602e473dSmrg# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 244602e473dSmrg# defined locally in source files will be included in the documentation. 245602e473dSmrg# If set to NO only classes defined in header files are included. 246602e473dSmrg 247602e473dSmrgEXTRACT_LOCAL_CLASSES = YES 248602e473dSmrg 249602e473dSmrg# This flag is only useful for Objective-C code. When set to YES local 250602e473dSmrg# methods, which are defined in the implementation section but not in 251602e473dSmrg# the interface are included in the documentation. 252602e473dSmrg# If set to NO (the default) only methods in the interface are included. 253602e473dSmrg 254602e473dSmrgEXTRACT_LOCAL_METHODS = NO 255602e473dSmrg 256602e473dSmrg# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 257602e473dSmrg# undocumented members of documented classes, files or namespaces. 258602e473dSmrg# If set to NO (the default) these members will be included in the 259602e473dSmrg# various overviews, but no documentation section is generated. 260602e473dSmrg# This option has no effect if EXTRACT_ALL is enabled. 261602e473dSmrg 262602e473dSmrgHIDE_UNDOC_MEMBERS = NO 263602e473dSmrg 264602e473dSmrg# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 265602e473dSmrg# undocumented classes that are normally visible in the class hierarchy. 266602e473dSmrg# If set to NO (the default) these classes will be included in the various 267602e473dSmrg# overviews. This option has no effect if EXTRACT_ALL is enabled. 268602e473dSmrg 269602e473dSmrgHIDE_UNDOC_CLASSES = NO 270602e473dSmrg 271602e473dSmrg# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 272602e473dSmrg# friend (class|struct|union) declarations. 273602e473dSmrg# If set to NO (the default) these declarations will be included in the 274602e473dSmrg# documentation. 275602e473dSmrg 276602e473dSmrgHIDE_FRIEND_COMPOUNDS = NO 277602e473dSmrg 278602e473dSmrg# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 279602e473dSmrg# documentation blocks found inside the body of a function. 280602e473dSmrg# If set to NO (the default) these blocks will be appended to the 281602e473dSmrg# function's detailed documentation block. 282602e473dSmrg 283602e473dSmrgHIDE_IN_BODY_DOCS = NO 284602e473dSmrg 285602e473dSmrg# The INTERNAL_DOCS tag determines if documentation 286602e473dSmrg# that is typed after a \internal command is included. If the tag is set 287602e473dSmrg# to NO (the default) then the documentation will be excluded. 288602e473dSmrg# Set it to YES to include the internal documentation. 289602e473dSmrg 290602e473dSmrgINTERNAL_DOCS = NO 291602e473dSmrg 292602e473dSmrg# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 293602e473dSmrg# file names in lower-case letters. If set to YES upper-case letters are also 294602e473dSmrg# allowed. This is useful if you have classes or files whose names only differ 295602e473dSmrg# in case and if your file system supports case sensitive file names. Windows 296602e473dSmrg# and Mac users are advised to set this option to NO. 297602e473dSmrg 298602e473dSmrgCASE_SENSE_NAMES = YES 299602e473dSmrg 300602e473dSmrg# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 301602e473dSmrg# will show members with their full class and namespace scopes in the 302602e473dSmrg# documentation. If set to YES the scope will be hidden. 303602e473dSmrg 304602e473dSmrgHIDE_SCOPE_NAMES = NO 305602e473dSmrg 306602e473dSmrg# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 307602e473dSmrg# will put a list of the files that are included by a file in the documentation 308602e473dSmrg# of that file. 309602e473dSmrg 310602e473dSmrgSHOW_INCLUDE_FILES = YES 311602e473dSmrg 312602e473dSmrg# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 313602e473dSmrg# is inserted in the documentation for inline members. 314602e473dSmrg 315602e473dSmrgINLINE_INFO = YES 316602e473dSmrg 317602e473dSmrg# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 318602e473dSmrg# will sort the (detailed) documentation of file and class members 319602e473dSmrg# alphabetically by member name. If set to NO the members will appear in 320602e473dSmrg# declaration order. 321602e473dSmrg 322602e473dSmrgSORT_MEMBER_DOCS = YES 323602e473dSmrg 324602e473dSmrg# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 325602e473dSmrg# brief documentation of file, namespace and class members alphabetically 326602e473dSmrg# by member name. If set to NO (the default) the members will appear in 327602e473dSmrg# declaration order. 328602e473dSmrg 329602e473dSmrgSORT_BRIEF_DOCS = NO 330602e473dSmrg 331602e473dSmrg# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 332602e473dSmrg# sorted by fully-qualified names, including namespaces. If set to 333602e473dSmrg# NO (the default), the class list will be sorted only by class name, 334602e473dSmrg# not including the namespace part. 335602e473dSmrg# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 336602e473dSmrg# Note: This option applies only to the class list, not to the 337602e473dSmrg# alphabetical list. 338602e473dSmrg 339602e473dSmrgSORT_BY_SCOPE_NAME = NO 340602e473dSmrg 341602e473dSmrg# The GENERATE_TODOLIST tag can be used to enable (YES) or 342602e473dSmrg# disable (NO) the todo list. This list is created by putting \todo 343602e473dSmrg# commands in the documentation. 344602e473dSmrg 345602e473dSmrgGENERATE_TODOLIST = YES 346602e473dSmrg 347602e473dSmrg# The GENERATE_TESTLIST tag can be used to enable (YES) or 348602e473dSmrg# disable (NO) the test list. This list is created by putting \test 349602e473dSmrg# commands in the documentation. 350602e473dSmrg 351602e473dSmrgGENERATE_TESTLIST = YES 352602e473dSmrg 353602e473dSmrg# The GENERATE_BUGLIST tag can be used to enable (YES) or 354602e473dSmrg# disable (NO) the bug list. This list is created by putting \bug 355602e473dSmrg# commands in the documentation. 356602e473dSmrg 357602e473dSmrgGENERATE_BUGLIST = YES 358602e473dSmrg 359602e473dSmrg# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 360602e473dSmrg# disable (NO) the deprecated list. This list is created by putting 361602e473dSmrg# \deprecated commands in the documentation. 362602e473dSmrg 363602e473dSmrgGENERATE_DEPRECATEDLIST= YES 364602e473dSmrg 365602e473dSmrg# The ENABLED_SECTIONS tag can be used to enable conditional 366602e473dSmrg# documentation sections, marked by \if sectionname ... \endif. 367602e473dSmrg 368602e473dSmrgENABLED_SECTIONS = 369602e473dSmrg 370602e473dSmrg# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 371602e473dSmrg# the initial value of a variable or define consists of for it to appear in 372602e473dSmrg# the documentation. If the initializer consists of more lines than specified 373602e473dSmrg# here it will be hidden. Use a value of 0 to hide initializers completely. 374602e473dSmrg# The appearance of the initializer of individual variables and defines in the 375602e473dSmrg# documentation can be controlled using \showinitializer or \hideinitializer 376602e473dSmrg# command in the documentation regardless of this setting. 377602e473dSmrg 378602e473dSmrgMAX_INITIALIZER_LINES = 30 379602e473dSmrg 380602e473dSmrg# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 381602e473dSmrg# at the bottom of the documentation of classes and structs. If set to YES the 382602e473dSmrg# list will mention the files that were used to generate the documentation. 383602e473dSmrg 384602e473dSmrgSHOW_USED_FILES = YES 385602e473dSmrg 386602e473dSmrg# If the sources in your project are distributed over multiple directories 387602e473dSmrg# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 388602e473dSmrg# in the documentation. The default is NO. 389602e473dSmrg 390602e473dSmrgSHOW_DIRECTORIES = NO 391602e473dSmrg 392602e473dSmrg# The FILE_VERSION_FILTER tag can be used to specify a program or script that 393602e473dSmrg# doxygen should invoke to get the current version for each file (typically from the 394602e473dSmrg# version control system). Doxygen will invoke the program by executing (via 395602e473dSmrg# popen()) the command <command> <input-file>, where <command> is the value of 396602e473dSmrg# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 397602e473dSmrg# provided by doxygen. Whatever the program writes to standard output 398602e473dSmrg# is used as the file version. See the manual for examples. 399602e473dSmrg 400602e473dSmrgFILE_VERSION_FILTER = 401602e473dSmrg 402602e473dSmrg#--------------------------------------------------------------------------- 403602e473dSmrg# configuration options related to warning and progress messages 404602e473dSmrg#--------------------------------------------------------------------------- 405602e473dSmrg 406602e473dSmrg# The QUIET tag can be used to turn on/off the messages that are generated 407602e473dSmrg# by doxygen. Possible values are YES and NO. If left blank NO is used. 408602e473dSmrg 409602e473dSmrgQUIET = YES 410602e473dSmrg 411602e473dSmrg# The WARNINGS tag can be used to turn on/off the warning messages that are 412602e473dSmrg# generated by doxygen. Possible values are YES and NO. If left blank 413602e473dSmrg# NO is used. 414602e473dSmrg 415602e473dSmrgWARNINGS = YES 416602e473dSmrg 417602e473dSmrg# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 418602e473dSmrg# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 419602e473dSmrg# automatically be disabled. 420602e473dSmrg 421602e473dSmrg# XXX: In the future this should be turned on. For now it generates too much noise. 422602e473dSmrgWARN_IF_UNDOCUMENTED = NO 423602e473dSmrg 424602e473dSmrg# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 425602e473dSmrg# potential errors in the documentation, such as not documenting some 426602e473dSmrg# parameters in a documented function, or documenting parameters that 427602e473dSmrg# don't exist or using markup commands wrongly. 428602e473dSmrg 429602e473dSmrgWARN_IF_DOC_ERROR = YES 430602e473dSmrg 431602e473dSmrg# This WARN_NO_PARAMDOC option can be abled to get warnings for 432602e473dSmrg# functions that are documented, but have no documentation for their parameters 433602e473dSmrg# or return value. If set to NO (the default) doxygen will only warn about 434602e473dSmrg# wrong or incomplete parameter documentation, but not about the absence of 435602e473dSmrg# documentation. 436602e473dSmrg 437602e473dSmrgWARN_NO_PARAMDOC = YES 438602e473dSmrg 439602e473dSmrg# The WARN_FORMAT tag determines the format of the warning messages that 440602e473dSmrg# doxygen can produce. The string should contain the $file, $line, and $text 441602e473dSmrg# tags, which will be replaced by the file and line number from which the 442602e473dSmrg# warning originated and the warning text. Optionally the format may contain 443602e473dSmrg# $version, which will be replaced by the version of the file (if it could 444602e473dSmrg# be obtained via FILE_VERSION_FILTER) 445602e473dSmrg 446602e473dSmrgWARN_FORMAT = "$file:$line: $text" 447602e473dSmrg 448602e473dSmrg# The WARN_LOGFILE tag can be used to specify a file to which warning 449602e473dSmrg# and error messages should be written. If left blank the output is written 450602e473dSmrg# to stderr. 451602e473dSmrg 452602e473dSmrgWARN_LOGFILE = 453602e473dSmrg 454602e473dSmrg#--------------------------------------------------------------------------- 455602e473dSmrg# configuration options related to the input files 456602e473dSmrg#--------------------------------------------------------------------------- 457602e473dSmrg 458602e473dSmrg# The INPUT tag can be used to specify the files and/or directories that contain 459602e473dSmrg# documented source files. You may enter file names like "myfile.cpp" or 460602e473dSmrg# directories like "/usr/src/myproject". Separate the files or directories 461602e473dSmrg# with spaces. 462602e473dSmrg 463602e473dSmrgINPUT = @top_srcdir@/src @top_builddir@/src 464602e473dSmrg 465602e473dSmrg# If the value of the INPUT tag contains directories, you can use the 466602e473dSmrg# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 467602e473dSmrg# and *.h) to filter out the source-files in the directories. If left 468602e473dSmrg# blank the following patterns are tested: 469602e473dSmrg# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 470602e473dSmrg# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py 471602e473dSmrg 472602e473dSmrgFILE_PATTERNS = 473602e473dSmrg 474602e473dSmrg# The RECURSIVE tag can be used to turn specify whether or not subdirectories 475602e473dSmrg# should be searched for input files as well. Possible values are YES and NO. 476602e473dSmrg# If left blank NO is used. 477602e473dSmrg 478602e473dSmrgRECURSIVE = NO 479602e473dSmrg 480602e473dSmrg# The EXCLUDE tag can be used to specify files and/or directories that should 481602e473dSmrg# excluded from the INPUT source files. This way you can easily exclude a 482602e473dSmrg# subdirectory from a directory tree whose root is specified with the INPUT tag. 483602e473dSmrg 484602e473dSmrgEXCLUDE = 485602e473dSmrg 486602e473dSmrg# The EXCLUDE_SYMLINKS tag can be used select whether or not files or 487602e473dSmrg# directories that are symbolic links (a Unix filesystem feature) are excluded 488602e473dSmrg# from the input. 489602e473dSmrg 490602e473dSmrgEXCLUDE_SYMLINKS = NO 491602e473dSmrg 492602e473dSmrg# If the value of the INPUT tag contains directories, you can use the 493602e473dSmrg# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 494602e473dSmrg# certain files from those directories. Note that the wildcards are matched 495602e473dSmrg# against the file with absolute path, so to exclude all test directories 496602e473dSmrg# for example use the pattern */test/* 497602e473dSmrg 498602e473dSmrgEXCLUDE_PATTERNS = 499602e473dSmrg 500602e473dSmrg# The EXAMPLE_PATH tag can be used to specify one or more files or 501602e473dSmrg# directories that contain example code fragments that are included (see 502602e473dSmrg# the \include command). 503602e473dSmrg 504602e473dSmrgEXAMPLE_PATH = 505602e473dSmrg 506602e473dSmrg# If the value of the EXAMPLE_PATH tag contains directories, you can use the 507602e473dSmrg# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 508602e473dSmrg# and *.h) to filter out the source-files in the directories. If left 509602e473dSmrg# blank all files are included. 510602e473dSmrg 511602e473dSmrgEXAMPLE_PATTERNS = 512602e473dSmrg 513602e473dSmrg# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 514602e473dSmrg# searched for input files to be used with the \include or \dontinclude 515602e473dSmrg# commands irrespective of the value of the RECURSIVE tag. 516602e473dSmrg# Possible values are YES and NO. If left blank NO is used. 517602e473dSmrg 518602e473dSmrgEXAMPLE_RECURSIVE = NO 519602e473dSmrg 520602e473dSmrg# The IMAGE_PATH tag can be used to specify one or more files or 521602e473dSmrg# directories that contain image that are included in the documentation (see 522602e473dSmrg# the \image command). 523602e473dSmrg 524602e473dSmrgIMAGE_PATH = 525602e473dSmrg 526602e473dSmrg# The INPUT_FILTER tag can be used to specify a program that doxygen should 527602e473dSmrg# invoke to filter for each input file. Doxygen will invoke the filter program 528602e473dSmrg# by executing (via popen()) the command <filter> <input-file>, where <filter> 529602e473dSmrg# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 530602e473dSmrg# input file. Doxygen will then use the output that the filter program writes 531602e473dSmrg# to standard output. If FILTER_PATTERNS is specified, this tag will be 532602e473dSmrg# ignored. 533602e473dSmrg 534602e473dSmrgINPUT_FILTER = 535602e473dSmrg 536602e473dSmrg# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 537602e473dSmrg# basis. Doxygen will compare the file name with each pattern and apply the 538602e473dSmrg# filter if there is a match. The filters are a list of the form: 539602e473dSmrg# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 540602e473dSmrg# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 541602e473dSmrg# is applied to all files. 542602e473dSmrg 543602e473dSmrgFILTER_PATTERNS = 544602e473dSmrg 545602e473dSmrg# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 546602e473dSmrg# INPUT_FILTER) will be used to filter the input files when producing source 547602e473dSmrg# files to browse (i.e. when SOURCE_BROWSER is set to YES). 548602e473dSmrg 549602e473dSmrgFILTER_SOURCE_FILES = NO 550602e473dSmrg 551602e473dSmrg#--------------------------------------------------------------------------- 552602e473dSmrg# configuration options related to source browsing 553602e473dSmrg#--------------------------------------------------------------------------- 554602e473dSmrg 555602e473dSmrg# If the SOURCE_BROWSER tag is set to YES then a list of source files will 556602e473dSmrg# be generated. Documented entities will be cross-referenced with these sources. 557602e473dSmrg# Note: To get rid of all source code in the generated output, make sure also 558602e473dSmrg# VERBATIM_HEADERS is set to NO. 559602e473dSmrg 560602e473dSmrgSOURCE_BROWSER = NO 561602e473dSmrg 562602e473dSmrg# Setting the INLINE_SOURCES tag to YES will include the body 563602e473dSmrg# of functions and classes directly in the documentation. 564602e473dSmrg 565602e473dSmrgINLINE_SOURCES = NO 566602e473dSmrg 567602e473dSmrg# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 568602e473dSmrg# doxygen to hide any special comment blocks from generated source code 569602e473dSmrg# fragments. Normal C and C++ comments will always remain visible. 570602e473dSmrg 571602e473dSmrgSTRIP_CODE_COMMENTS = YES 572602e473dSmrg 573602e473dSmrg# If the REFERENCED_BY_RELATION tag is set to YES (the default) 574602e473dSmrg# then for each documented function all documented 575602e473dSmrg# functions referencing it will be listed. 576602e473dSmrg 577602e473dSmrgREFERENCED_BY_RELATION = YES 578602e473dSmrg 579602e473dSmrg# If the REFERENCES_RELATION tag is set to YES (the default) 580602e473dSmrg# then for each documented function all documented entities 581602e473dSmrg# called/used by that function will be listed. 582602e473dSmrg 583602e473dSmrgREFERENCES_RELATION = YES 584602e473dSmrg 585602e473dSmrg# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 586602e473dSmrg# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 587602e473dSmrg# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 588602e473dSmrg# link to the source code. Otherwise they will link to the documentstion. 589602e473dSmrg 590602e473dSmrgREFERENCES_LINK_SOURCE = YES 591602e473dSmrg 592602e473dSmrg# If the USE_HTAGS tag is set to YES then the references to source code 593602e473dSmrg# will point to the HTML generated by the htags(1) tool instead of doxygen 594602e473dSmrg# built-in source browser. The htags tool is part of GNU's global source 595602e473dSmrg# tagging system (see http://www.gnu.org/software/global/global.html). You 596602e473dSmrg# will need version 4.8.6 or higher. 597602e473dSmrg 598602e473dSmrgUSE_HTAGS = NO 599602e473dSmrg 600602e473dSmrg# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 601602e473dSmrg# will generate a verbatim copy of the header file for each class for 602602e473dSmrg# which an include is specified. Set to NO to disable this. 603602e473dSmrg 604602e473dSmrgVERBATIM_HEADERS = YES 605602e473dSmrg 606602e473dSmrg#--------------------------------------------------------------------------- 607602e473dSmrg# configuration options related to the alphabetical class index 608602e473dSmrg#--------------------------------------------------------------------------- 609602e473dSmrg 610602e473dSmrg# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 611602e473dSmrg# of all compounds will be generated. Enable this if the project 612602e473dSmrg# contains a lot of classes, structs, unions or interfaces. 613602e473dSmrg 614602e473dSmrgALPHABETICAL_INDEX = NO 615602e473dSmrg 616602e473dSmrg# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 617602e473dSmrg# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 618602e473dSmrg# in which this list will be split (can be a number in the range [1..20]) 619602e473dSmrg 620602e473dSmrgCOLS_IN_ALPHA_INDEX = 5 621602e473dSmrg 622602e473dSmrg# In case all classes in a project start with a common prefix, all 623602e473dSmrg# classes will be put under the same header in the alphabetical index. 624602e473dSmrg# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 625602e473dSmrg# should be ignored while generating the index headers. 626602e473dSmrg 627602e473dSmrgIGNORE_PREFIX = 628602e473dSmrg 629602e473dSmrg#--------------------------------------------------------------------------- 630602e473dSmrg# configuration options related to the HTML output 631602e473dSmrg#--------------------------------------------------------------------------- 632602e473dSmrg 633602e473dSmrg# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 634602e473dSmrg# generate HTML output. 635602e473dSmrg 636602e473dSmrgGENERATE_HTML = YES 637602e473dSmrg 638602e473dSmrg# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 639602e473dSmrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 640602e473dSmrg# put in front of it. If left blank `html' will be used as the default path. 641602e473dSmrg 642602e473dSmrgHTML_OUTPUT = manual 643602e473dSmrg 644602e473dSmrg# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 645602e473dSmrg# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 646602e473dSmrg# doxygen will generate files with .html extension. 647602e473dSmrg 648602e473dSmrgHTML_FILE_EXTENSION = .html 649602e473dSmrg 650602e473dSmrg# The HTML_HEADER tag can be used to specify a personal HTML header for 651602e473dSmrg# each generated HTML page. If it is left blank doxygen will generate a 652602e473dSmrg# standard header. 653602e473dSmrg 654602e473dSmrgHTML_HEADER = 655602e473dSmrg 656602e473dSmrg# The HTML_FOOTER tag can be used to specify a personal HTML footer for 657602e473dSmrg# each generated HTML page. If it is left blank doxygen will generate a 658602e473dSmrg# standard footer. 659602e473dSmrg 660602e473dSmrgHTML_FOOTER = 661602e473dSmrg 662602e473dSmrg# The HTML_STYLESHEET tag can be used to specify a user-defined cascading 663602e473dSmrg# style sheet that is used by each HTML page. It can be used to 664602e473dSmrg# fine-tune the look of the HTML output. If the tag is left blank doxygen 665602e473dSmrg# will generate a default style sheet. Note that doxygen will try to copy 666602e473dSmrg# the style sheet file to the HTML output directory, so don't put your own 667602e473dSmrg# stylesheet in the HTML output directory as well, or it will be erased! 668602e473dSmrg 669602e473dSmrgHTML_STYLESHEET = 670602e473dSmrg 671602e473dSmrg# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 672602e473dSmrg# files or namespaces will be aligned in HTML using tables. If set to 673602e473dSmrg# NO a bullet list will be used. 674602e473dSmrg 675602e473dSmrgHTML_ALIGN_MEMBERS = YES 676602e473dSmrg 677602e473dSmrg# If the GENERATE_HTMLHELP tag is set to YES, additional index files 678602e473dSmrg# will be generated that can be used as input for tools like the 679602e473dSmrg# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 680602e473dSmrg# of the generated HTML documentation. 681602e473dSmrg 682602e473dSmrgGENERATE_HTMLHELP = NO 683602e473dSmrg 684602e473dSmrg# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 685602e473dSmrg# be used to specify the file name of the resulting .chm file. You 686602e473dSmrg# can add a path in front of the file if the result should not be 687602e473dSmrg# written to the html output directory. 688602e473dSmrg 689602e473dSmrgCHM_FILE = 690602e473dSmrg 691602e473dSmrg# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 692602e473dSmrg# be used to specify the location (absolute path including file name) of 693602e473dSmrg# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 694602e473dSmrg# the HTML help compiler on the generated index.hhp. 695602e473dSmrg 696602e473dSmrgHHC_LOCATION = 697602e473dSmrg 698602e473dSmrg# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 699602e473dSmrg# controls if a separate .chi index file is generated (YES) or that 700602e473dSmrg# it should be included in the master .chm file (NO). 701602e473dSmrg 702602e473dSmrgGENERATE_CHI = NO 703602e473dSmrg 704602e473dSmrg# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 705602e473dSmrg# controls whether a binary table of contents is generated (YES) or a 706602e473dSmrg# normal table of contents (NO) in the .chm file. 707602e473dSmrg 708602e473dSmrgBINARY_TOC = NO 709602e473dSmrg 710602e473dSmrg# The TOC_EXPAND flag can be set to YES to add extra items for group members 711602e473dSmrg# to the contents of the HTML help documentation and to the tree view. 712602e473dSmrg 713602e473dSmrgTOC_EXPAND = NO 714602e473dSmrg 715602e473dSmrg# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 716602e473dSmrg# top of each HTML page. The value NO (the default) enables the index and 717602e473dSmrg# the value YES disables it. 718602e473dSmrg 719602e473dSmrgDISABLE_INDEX = NO 720602e473dSmrg 721602e473dSmrg# This tag can be used to set the number of enum values (range [1..20]) 722602e473dSmrg# that doxygen will group on one line in the generated HTML documentation. 723602e473dSmrg 724602e473dSmrgENUM_VALUES_PER_LINE = 4 725602e473dSmrg 726602e473dSmrg# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be 727602e473dSmrg# generated containing a tree-like index structure (just like the one that 728602e473dSmrg# is generated for HTML Help). For this to work a browser that supports 729602e473dSmrg# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 730602e473dSmrg# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 731602e473dSmrg# probably better off using the HTML help feature. 732602e473dSmrg 733602e473dSmrgGENERATE_TREEVIEW = NO 734602e473dSmrg 735602e473dSmrg# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 736602e473dSmrg# used to set the initial width (in pixels) of the frame in which the tree 737602e473dSmrg# is shown. 738602e473dSmrg 739602e473dSmrgTREEVIEW_WIDTH = 250 740602e473dSmrg 741602e473dSmrg#--------------------------------------------------------------------------- 742602e473dSmrg# configuration options related to the LaTeX output 743602e473dSmrg#--------------------------------------------------------------------------- 744602e473dSmrg 745602e473dSmrg# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 746602e473dSmrg# generate Latex output. 747602e473dSmrg 748602e473dSmrgGENERATE_LATEX = NO 749602e473dSmrg 750602e473dSmrg# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 751602e473dSmrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 752602e473dSmrg# put in front of it. If left blank `latex' will be used as the default path. 753602e473dSmrg 754602e473dSmrgLATEX_OUTPUT = latex 755602e473dSmrg 756602e473dSmrg# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 757602e473dSmrg# invoked. If left blank `latex' will be used as the default command name. 758602e473dSmrg 759602e473dSmrgLATEX_CMD_NAME = latex 760602e473dSmrg 761602e473dSmrg# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 762602e473dSmrg# generate index for LaTeX. If left blank `makeindex' will be used as the 763602e473dSmrg# default command name. 764602e473dSmrg 765602e473dSmrgMAKEINDEX_CMD_NAME = makeindex 766602e473dSmrg 767602e473dSmrg# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 768602e473dSmrg# LaTeX documents. This may be useful for small projects and may help to 769602e473dSmrg# save some trees in general. 770602e473dSmrg 771602e473dSmrgCOMPACT_LATEX = NO 772602e473dSmrg 773602e473dSmrg# The PAPER_TYPE tag can be used to set the paper type that is used 774602e473dSmrg# by the printer. Possible values are: a4, a4wide, letter, legal and 775602e473dSmrg# executive. If left blank a4wide will be used. 776602e473dSmrg 777602e473dSmrgPAPER_TYPE = a4wide 778602e473dSmrg 779602e473dSmrg# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 780602e473dSmrg# packages that should be included in the LaTeX output. 781602e473dSmrg 782602e473dSmrgEXTRA_PACKAGES = 783602e473dSmrg 784602e473dSmrg# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 785602e473dSmrg# the generated latex document. The header should contain everything until 786602e473dSmrg# the first chapter. If it is left blank doxygen will generate a 787602e473dSmrg# standard header. Notice: only use this tag if you know what you are doing! 788602e473dSmrg 789602e473dSmrgLATEX_HEADER = 790602e473dSmrg 791602e473dSmrg# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 792602e473dSmrg# is prepared for conversion to pdf (using ps2pdf). The pdf file will 793602e473dSmrg# contain links (just like the HTML output) instead of page references 794602e473dSmrg# This makes the output suitable for online browsing using a pdf viewer. 795602e473dSmrg 796602e473dSmrgPDF_HYPERLINKS = NO 797602e473dSmrg 798602e473dSmrg# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 799602e473dSmrg# plain latex in the generated Makefile. Set this option to YES to get a 800602e473dSmrg# higher quality PDF documentation. 801602e473dSmrg 802602e473dSmrgUSE_PDFLATEX = NO 803602e473dSmrg 804602e473dSmrg# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 805602e473dSmrg# command to the generated LaTeX files. This will instruct LaTeX to keep 806602e473dSmrg# running if errors occur, instead of asking the user for help. 807602e473dSmrg# This option is also used when generating formulas in HTML. 808602e473dSmrg 809602e473dSmrgLATEX_BATCHMODE = NO 810602e473dSmrg 811602e473dSmrg# If LATEX_HIDE_INDICES is set to YES then doxygen will not 812602e473dSmrg# include the index chapters (such as File Index, Compound Index, etc.) 813602e473dSmrg# in the output. 814602e473dSmrg 815602e473dSmrgLATEX_HIDE_INDICES = NO 816602e473dSmrg 817602e473dSmrg#--------------------------------------------------------------------------- 818602e473dSmrg# configuration options related to the RTF output 819602e473dSmrg#--------------------------------------------------------------------------- 820602e473dSmrg 821602e473dSmrg# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 822602e473dSmrg# The RTF output is optimized for Word 97 and may not look very pretty with 823602e473dSmrg# other RTF readers or editors. 824602e473dSmrg 825602e473dSmrgGENERATE_RTF = NO 826602e473dSmrg 827602e473dSmrg# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 828602e473dSmrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 829602e473dSmrg# put in front of it. If left blank `rtf' will be used as the default path. 830602e473dSmrg 831602e473dSmrgRTF_OUTPUT = rtf 832602e473dSmrg 833602e473dSmrg# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 834602e473dSmrg# RTF documents. This may be useful for small projects and may help to 835602e473dSmrg# save some trees in general. 836602e473dSmrg 837602e473dSmrgCOMPACT_RTF = NO 838602e473dSmrg 839602e473dSmrg# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 840602e473dSmrg# will contain hyperlink fields. The RTF file will 841602e473dSmrg# contain links (just like the HTML output) instead of page references. 842602e473dSmrg# This makes the output suitable for online browsing using WORD or other 843602e473dSmrg# programs which support those fields. 844602e473dSmrg# Note: wordpad (write) and others do not support links. 845602e473dSmrg 846602e473dSmrgRTF_HYPERLINKS = NO 847602e473dSmrg 848602e473dSmrg# Load stylesheet definitions from file. Syntax is similar to doxygen's 849602e473dSmrg# config file, i.e. a series of assignments. You only have to provide 850602e473dSmrg# replacements, missing definitions are set to their default value. 851602e473dSmrg 852602e473dSmrgRTF_STYLESHEET_FILE = 853602e473dSmrg 854602e473dSmrg# Set optional variables used in the generation of an rtf document. 855602e473dSmrg# Syntax is similar to doxygen's config file. 856602e473dSmrg 857602e473dSmrgRTF_EXTENSIONS_FILE = 858602e473dSmrg 859602e473dSmrg#--------------------------------------------------------------------------- 860602e473dSmrg# configuration options related to the man page output 861602e473dSmrg#--------------------------------------------------------------------------- 862602e473dSmrg 863602e473dSmrg# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 864602e473dSmrg# generate man pages 865602e473dSmrg 866602e473dSmrgGENERATE_MAN = NO 867602e473dSmrg 868602e473dSmrg# The MAN_OUTPUT tag is used to specify where the man pages will be put. 869602e473dSmrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 870602e473dSmrg# put in front of it. If left blank `man' will be used as the default path. 871602e473dSmrg 872602e473dSmrgMAN_OUTPUT = man 873602e473dSmrg 874602e473dSmrg# The MAN_EXTENSION tag determines the extension that is added to 875602e473dSmrg# the generated man pages (default is the subroutine's section .3) 876602e473dSmrg 877602e473dSmrgMAN_EXTENSION = .3 878602e473dSmrg 879602e473dSmrg# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 880602e473dSmrg# then it will generate one additional man file for each entity 881602e473dSmrg# documented in the real man page(s). These additional files 882602e473dSmrg# only source the real man page, but without them the man command 883602e473dSmrg# would be unable to find the correct page. The default is NO. 884602e473dSmrg 885602e473dSmrgMAN_LINKS = NO 886602e473dSmrg 887602e473dSmrg#--------------------------------------------------------------------------- 888602e473dSmrg# configuration options related to the XML output 889602e473dSmrg#--------------------------------------------------------------------------- 890602e473dSmrg 891602e473dSmrg# If the GENERATE_XML tag is set to YES Doxygen will 892602e473dSmrg# generate an XML file that captures the structure of 893602e473dSmrg# the code including all documentation. 894602e473dSmrg 895602e473dSmrgGENERATE_XML = NO 896602e473dSmrg 897602e473dSmrg# The XML_OUTPUT tag is used to specify where the XML pages will be put. 898602e473dSmrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 899602e473dSmrg# put in front of it. If left blank `xml' will be used as the default path. 900602e473dSmrg 901602e473dSmrgXML_OUTPUT = xml 902602e473dSmrg 903602e473dSmrg# The XML_SCHEMA tag can be used to specify an XML schema, 904602e473dSmrg# which can be used by a validating XML parser to check the 905602e473dSmrg# syntax of the XML files. 906602e473dSmrg 907602e473dSmrgXML_SCHEMA = 908602e473dSmrg 909602e473dSmrg# The XML_DTD tag can be used to specify an XML DTD, 910602e473dSmrg# which can be used by a validating XML parser to check the 911602e473dSmrg# syntax of the XML files. 912602e473dSmrg 913602e473dSmrgXML_DTD = 914602e473dSmrg 915602e473dSmrg# If the XML_PROGRAMLISTING tag is set to YES Doxygen will 916602e473dSmrg# dump the program listings (including syntax highlighting 917602e473dSmrg# and cross-referencing information) to the XML output. Note that 918602e473dSmrg# enabling this will significantly increase the size of the XML output. 919602e473dSmrg 920602e473dSmrgXML_PROGRAMLISTING = YES 921602e473dSmrg 922602e473dSmrg#--------------------------------------------------------------------------- 923602e473dSmrg# configuration options for the AutoGen Definitions output 924602e473dSmrg#--------------------------------------------------------------------------- 925602e473dSmrg 926602e473dSmrg# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 927602e473dSmrg# generate an AutoGen Definitions (see autogen.sf.net) file 928602e473dSmrg# that captures the structure of the code including all 929602e473dSmrg# documentation. Note that this feature is still experimental 930602e473dSmrg# and incomplete at the moment. 931602e473dSmrg 932602e473dSmrgGENERATE_AUTOGEN_DEF = NO 933602e473dSmrg 934602e473dSmrg#--------------------------------------------------------------------------- 935602e473dSmrg# configuration options related to the Perl module output 936602e473dSmrg#--------------------------------------------------------------------------- 937602e473dSmrg 938602e473dSmrg# If the GENERATE_PERLMOD tag is set to YES Doxygen will 939602e473dSmrg# generate a Perl module file that captures the structure of 940602e473dSmrg# the code including all documentation. Note that this 941602e473dSmrg# feature is still experimental and incomplete at the 942602e473dSmrg# moment. 943602e473dSmrg 944602e473dSmrgGENERATE_PERLMOD = NO 945602e473dSmrg 946602e473dSmrg# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 947602e473dSmrg# the necessary Makefile rules, Perl scripts and LaTeX code to be able 948602e473dSmrg# to generate PDF and DVI output from the Perl module output. 949602e473dSmrg 950602e473dSmrgPERLMOD_LATEX = NO 951602e473dSmrg 952602e473dSmrg# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 953602e473dSmrg# nicely formatted so it can be parsed by a human reader. This is useful 954602e473dSmrg# if you want to understand what is going on. On the other hand, if this 955602e473dSmrg# tag is set to NO the size of the Perl module output will be much smaller 956602e473dSmrg# and Perl will parse it just the same. 957602e473dSmrg 958602e473dSmrgPERLMOD_PRETTY = YES 959602e473dSmrg 960602e473dSmrg# The names of the make variables in the generated doxyrules.make file 961602e473dSmrg# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 962602e473dSmrg# This is useful so different doxyrules.make files included by the same 963602e473dSmrg# Makefile don't overwrite each other's variables. 964602e473dSmrg 965602e473dSmrgPERLMOD_MAKEVAR_PREFIX = 966602e473dSmrg 967602e473dSmrg#--------------------------------------------------------------------------- 968602e473dSmrg# Configuration options related to the preprocessor 969602e473dSmrg#--------------------------------------------------------------------------- 970602e473dSmrg 971602e473dSmrg# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 972602e473dSmrg# evaluate all C-preprocessor directives found in the sources and include 973602e473dSmrg# files. 974602e473dSmrg 975602e473dSmrgENABLE_PREPROCESSING = YES 976602e473dSmrg 977602e473dSmrg# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 978602e473dSmrg# names in the source code. If set to NO (the default) only conditional 979602e473dSmrg# compilation will be performed. Macro expansion can be done in a controlled 980602e473dSmrg# way by setting EXPAND_ONLY_PREDEF to YES. 981602e473dSmrg 982602e473dSmrgMACRO_EXPANSION = NO 983602e473dSmrg 984602e473dSmrg# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 985602e473dSmrg# then the macro expansion is limited to the macros specified with the 986602e473dSmrg# PREDEFINED and EXPAND_AS_DEFINED tags. 987602e473dSmrg 988602e473dSmrgEXPAND_ONLY_PREDEF = NO 989602e473dSmrg 990602e473dSmrg# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 991602e473dSmrg# in the INCLUDE_PATH (see below) will be search if a #include is found. 992602e473dSmrg 993602e473dSmrgSEARCH_INCLUDES = YES 994602e473dSmrg 995602e473dSmrg# The INCLUDE_PATH tag can be used to specify one or more directories that 996602e473dSmrg# contain include files that are not input files but should be processed by 997602e473dSmrg# the preprocessor. 998602e473dSmrg 999602e473dSmrgINCLUDE_PATH = 1000602e473dSmrg 1001602e473dSmrg# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 1002602e473dSmrg# patterns (like *.h and *.hpp) to filter out the header-files in the 1003602e473dSmrg# directories. If left blank, the patterns specified with FILE_PATTERNS will 1004602e473dSmrg# be used. 1005602e473dSmrg 1006602e473dSmrgINCLUDE_FILE_PATTERNS = 1007602e473dSmrg 1008602e473dSmrg# The PREDEFINED tag can be used to specify one or more macro names that 1009602e473dSmrg# are defined before the preprocessor is started (similar to the -D option of 1010602e473dSmrg# gcc). The argument of the tag is a list of macros of the form: name 1011602e473dSmrg# or name=definition (no spaces). If the definition and the = are 1012602e473dSmrg# omitted =1 is assumed. To prevent a macro definition from being 1013602e473dSmrg# undefined via #undef or recursively expanded use the := operator 1014602e473dSmrg# instead of the = operator. 1015602e473dSmrg 1016602e473dSmrgPREDEFINED = 1017602e473dSmrg 1018602e473dSmrg# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 1019602e473dSmrg# this tag can be used to specify a list of macro names that should be expanded. 1020602e473dSmrg# The macro definition that is found in the sources will be used. 1021602e473dSmrg# Use the PREDEFINED tag if you want to use a different macro definition. 1022602e473dSmrg 1023602e473dSmrgEXPAND_AS_DEFINED = 1024602e473dSmrg 1025602e473dSmrg# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 1026602e473dSmrg# doxygen's preprocessor will remove all function-like macros that are alone 1027602e473dSmrg# on a line, have an all uppercase name, and do not end with a semicolon. Such 1028602e473dSmrg# function macros are typically used for boiler-plate code, and will confuse 1029602e473dSmrg# the parser if not removed. 1030602e473dSmrg 1031602e473dSmrgSKIP_FUNCTION_MACROS = YES 1032602e473dSmrg 1033602e473dSmrg#--------------------------------------------------------------------------- 1034602e473dSmrg# Configuration::additions related to external references 1035602e473dSmrg#--------------------------------------------------------------------------- 1036602e473dSmrg 1037602e473dSmrg# The TAGFILES option can be used to specify one or more tagfiles. 1038602e473dSmrg# Optionally an initial location of the external documentation 1039602e473dSmrg# can be added for each tagfile. The format of a tag file without 1040602e473dSmrg# this location is as follows: 1041602e473dSmrg# TAGFILES = file1 file2 ... 1042602e473dSmrg# Adding location for the tag files is done as follows: 1043602e473dSmrg# TAGFILES = file1=loc1 "file2 = loc2" ... 1044602e473dSmrg# where "loc1" and "loc2" can be relative or absolute paths or 1045602e473dSmrg# URLs. If a location is present for each tag, the installdox tool 1046602e473dSmrg# does not have to be run to correct the links. 1047602e473dSmrg# Note that each tag file must have a unique name 1048602e473dSmrg# (where the name does NOT include the path) 1049602e473dSmrg# If a tag file is not located in the directory in which doxygen 1050602e473dSmrg# is run, you must also specify the path to the tagfile here. 1051602e473dSmrg 1052602e473dSmrgTAGFILES = 1053602e473dSmrg 1054602e473dSmrg# When a file name is specified after GENERATE_TAGFILE, doxygen will create 1055602e473dSmrg# a tag file that is based on the input files it reads. 1056602e473dSmrg 1057602e473dSmrgGENERATE_TAGFILE = 1058602e473dSmrg 1059602e473dSmrg# If the ALLEXTERNALS tag is set to YES all external classes will be listed 1060602e473dSmrg# in the class index. If set to NO only the inherited external classes 1061602e473dSmrg# will be listed. 1062602e473dSmrg 1063602e473dSmrgALLEXTERNALS = NO 1064602e473dSmrg 1065602e473dSmrg# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 1066602e473dSmrg# in the modules index. If set to NO, only the current project's groups will 1067602e473dSmrg# be listed. 1068602e473dSmrg 1069602e473dSmrgEXTERNAL_GROUPS = YES 1070602e473dSmrg 1071602e473dSmrg# The PERL_PATH should be the absolute path and name of the perl script 1072602e473dSmrg# interpreter (i.e. the result of `which perl'). 1073602e473dSmrg 1074602e473dSmrgPERL_PATH = /usr/bin/perl 1075602e473dSmrg 1076602e473dSmrg#--------------------------------------------------------------------------- 1077602e473dSmrg# Configuration options related to the dot tool 1078602e473dSmrg#--------------------------------------------------------------------------- 1079602e473dSmrg 1080602e473dSmrg# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 1081602e473dSmrg# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 1082602e473dSmrg# or super classes. Setting the tag to NO turns the diagrams off. Note that 1083602e473dSmrg# this option is superseded by the HAVE_DOT option below. This is only a 1084602e473dSmrg# fallback. It is recommended to install and use dot, since it yields more 1085602e473dSmrg# powerful graphs. 1086602e473dSmrg 1087602e473dSmrgCLASS_DIAGRAMS = YES 1088602e473dSmrg 1089602e473dSmrg# If set to YES, the inheritance and collaboration graphs will hide 1090602e473dSmrg# inheritance and usage relations if the target is undocumented 1091602e473dSmrg# or is not a class. 1092602e473dSmrg 1093602e473dSmrgHIDE_UNDOC_RELATIONS = YES 1094602e473dSmrg 1095602e473dSmrg# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 1096602e473dSmrg# available from the path. This tool is part of Graphviz, a graph visualization 1097602e473dSmrg# toolkit from AT&T and Lucent Bell Labs. The other options in this section 1098602e473dSmrg# have no effect if this option is set to NO (the default) 1099602e473dSmrg 1100602e473dSmrgHAVE_DOT = YES 1101602e473dSmrg 1102602e473dSmrg# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 1103602e473dSmrg# will generate a graph for each documented class showing the direct and 1104602e473dSmrg# indirect inheritance relations. Setting this tag to YES will force the 1105602e473dSmrg# the CLASS_DIAGRAMS tag to NO. 1106602e473dSmrg 1107602e473dSmrgCLASS_GRAPH = YES 1108602e473dSmrg 1109602e473dSmrg# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 1110602e473dSmrg# will generate a graph for each documented class showing the direct and 1111602e473dSmrg# indirect implementation dependencies (inheritance, containment, and 1112602e473dSmrg# class references variables) of the class with other documented classes. 1113602e473dSmrg 1114602e473dSmrgCOLLABORATION_GRAPH = YES 1115602e473dSmrg 1116602e473dSmrg# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 1117602e473dSmrg# will generate a graph for groups, showing the direct groups dependencies 1118602e473dSmrg 1119602e473dSmrgGROUP_GRAPHS = YES 1120602e473dSmrg 1121602e473dSmrg# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 1122602e473dSmrg# collaboration diagrams in a style similar to the OMG's Unified Modeling 1123602e473dSmrg# Language. 1124602e473dSmrg 1125602e473dSmrgUML_LOOK = NO 1126602e473dSmrg 1127602e473dSmrg# If set to YES, the inheritance and collaboration graphs will show the 1128602e473dSmrg# relations between templates and their instances. 1129602e473dSmrg 1130602e473dSmrgTEMPLATE_RELATIONS = NO 1131602e473dSmrg 1132602e473dSmrg# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 1133602e473dSmrg# tags are set to YES then doxygen will generate a graph for each documented 1134602e473dSmrg# file showing the direct and indirect include dependencies of the file with 1135602e473dSmrg# other documented files. 1136602e473dSmrg 1137602e473dSmrgINCLUDE_GRAPH = YES 1138602e473dSmrg 1139602e473dSmrg# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 1140602e473dSmrg# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 1141602e473dSmrg# documented header file showing the documented files that directly or 1142602e473dSmrg# indirectly include this file. 1143602e473dSmrg 1144602e473dSmrgINCLUDED_BY_GRAPH = YES 1145602e473dSmrg 1146602e473dSmrg# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will 1147602e473dSmrg# generate a call dependency graph for every global function or class method. 1148602e473dSmrg# Note that enabling this option will significantly increase the time of a run. 1149602e473dSmrg# So in most cases it will be better to enable call graphs for selected 1150602e473dSmrg# functions only using the \callgraph command. 1151602e473dSmrg 1152602e473dSmrgCALL_GRAPH = NO 1153602e473dSmrg 1154602e473dSmrg# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then doxygen will 1155602e473dSmrg# generate a caller dependency graph for every global function or class method. 1156602e473dSmrg# Note that enabling this option will significantly increase the time of a run. 1157602e473dSmrg# So in most cases it will be better to enable caller graphs for selected 1158602e473dSmrg# functions only using the \callergraph command. 1159602e473dSmrg 1160602e473dSmrgCALLER_GRAPH = NO 1161602e473dSmrg 1162602e473dSmrg# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 1163602e473dSmrg# will graphical hierarchy of all classes instead of a textual one. 1164602e473dSmrg 1165602e473dSmrgGRAPHICAL_HIERARCHY = YES 1166602e473dSmrg 1167602e473dSmrg# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 1168602e473dSmrg# then doxygen will show the dependencies a directory has on other directories 1169602e473dSmrg# in a graphical way. The dependency relations are determined by the #include 1170602e473dSmrg# relations between the files in the directories. 1171602e473dSmrg 1172602e473dSmrgDIRECTORY_GRAPH = YES 1173602e473dSmrg 1174602e473dSmrg# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 1175602e473dSmrg# generated by dot. Possible values are png, jpg, or gif 1176602e473dSmrg# If left blank png will be used. 1177602e473dSmrg 1178602e473dSmrgDOT_IMAGE_FORMAT = png 1179602e473dSmrg 1180602e473dSmrg# The tag DOT_PATH can be used to specify the path where the dot tool can be 1181602e473dSmrg# found. If left blank, it is assumed the dot tool can be found in the path. 1182602e473dSmrg 1183602e473dSmrgDOT_PATH = 1184602e473dSmrg 1185602e473dSmrg# The DOTFILE_DIRS tag can be used to specify one or more directories that 1186602e473dSmrg# contain dot files that are included in the documentation (see the 1187602e473dSmrg# \dotfile command). 1188602e473dSmrg 1189602e473dSmrgDOTFILE_DIRS = 1190602e473dSmrg 1191602e473dSmrg# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 1192602e473dSmrg# (in pixels) of the graphs generated by dot. If a graph becomes larger than 1193602e473dSmrg# this value, doxygen will try to truncate the graph, so that it fits within 1194602e473dSmrg# the specified constraint. Beware that most browsers cannot cope with very 1195602e473dSmrg# large images. 1196602e473dSmrg 1197602e473dSmrgMAX_DOT_GRAPH_WIDTH = 1024 1198602e473dSmrg 1199602e473dSmrg# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 1200602e473dSmrg# (in pixels) of the graphs generated by dot. If a graph becomes larger than 1201602e473dSmrg# this value, doxygen will try to truncate the graph, so that it fits within 1202602e473dSmrg# the specified constraint. Beware that most browsers cannot cope with very 1203602e473dSmrg# large images. 1204602e473dSmrg 1205602e473dSmrgMAX_DOT_GRAPH_HEIGHT = 1024 1206602e473dSmrg 1207602e473dSmrg# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1208602e473dSmrg# graphs generated by dot. A depth value of 3 means that only nodes reachable 1209602e473dSmrg# from the root by following a path via at most 3 edges will be shown. Nodes 1210602e473dSmrg# that lay further from the root node will be omitted. Note that setting this 1211602e473dSmrg# option to 1 or 2 may greatly reduce the computation time needed for large 1212602e473dSmrg# code bases. Also note that a graph may be further truncated if the graph's 1213602e473dSmrg# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH 1214602e473dSmrg# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), 1215602e473dSmrg# the graph is not depth-constrained. 1216602e473dSmrg 1217602e473dSmrgMAX_DOT_GRAPH_DEPTH = 0 1218602e473dSmrg 1219602e473dSmrg# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 1220602e473dSmrg# background. This is disabled by default, which results in a white background. 1221602e473dSmrg# Warning: Depending on the platform used, enabling this option may lead to 1222602e473dSmrg# badly anti-aliased labels on the edges of a graph (i.e. they become hard to 1223602e473dSmrg# read). 1224602e473dSmrg 1225602e473dSmrgDOT_TRANSPARENT = NO 1226602e473dSmrg 1227602e473dSmrg# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 1228602e473dSmrg# files in one run (i.e. multiple -o and -T options on the command line). This 1229602e473dSmrg# makes dot run faster, but since only newer versions of dot (>1.8.10) 1230602e473dSmrg# support this, this feature is disabled by default. 1231602e473dSmrg 1232602e473dSmrgDOT_MULTI_TARGETS = NO 1233602e473dSmrg 1234602e473dSmrg# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 1235602e473dSmrg# generate a legend page explaining the meaning of the various boxes and 1236602e473dSmrg# arrows in the dot generated graphs. 1237602e473dSmrg 1238602e473dSmrgGENERATE_LEGEND = YES 1239602e473dSmrg 1240602e473dSmrg# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 1241602e473dSmrg# remove the intermediate dot files that are used to generate 1242602e473dSmrg# the various graphs. 1243602e473dSmrg 1244602e473dSmrgDOT_CLEANUP = YES 1245602e473dSmrg 1246602e473dSmrg#--------------------------------------------------------------------------- 1247602e473dSmrg# Configuration::additions related to the search engine 1248602e473dSmrg#--------------------------------------------------------------------------- 1249602e473dSmrg 1250602e473dSmrg# The SEARCHENGINE tag specifies whether or not a search engine should be 1251602e473dSmrg# used. If set to NO the values of all tags below this one will be ignored. 1252602e473dSmrg 1253602e473dSmrgSEARCHENGINE = NO 1254