Doxyfile revision a4f78def
1a4f78defSmrg# Doxyfile 1.5.3 2a4f78defSmrg 3a4f78defSmrg# This file describes the settings to be used by the documentation system 4a4f78defSmrg# doxygen (www.doxygen.org) for a project 5a4f78defSmrg# 6a4f78defSmrg# All text after a hash (#) is considered a comment and will be ignored 7a4f78defSmrg# The format is: 8a4f78defSmrg# TAG = value [value, ...] 9a4f78defSmrg# For lists items can also be appended using: 10a4f78defSmrg# TAG += value [value, ...] 11a4f78defSmrg# Values that contain spaces should be placed between quotes (" ") 12a4f78defSmrg 13a4f78defSmrg#--------------------------------------------------------------------------- 14a4f78defSmrg# Project related configuration options 15a4f78defSmrg#--------------------------------------------------------------------------- 16a4f78defSmrg 17a4f78defSmrg# This tag specifies the encoding used for all characters in the config file that 18a4f78defSmrg# follow. The default is UTF-8 which is also the encoding used for all text before 19a4f78defSmrg# the first occurrence of this tag. Doxygen uses libiconv (or the iconv built into 20a4f78defSmrg# libc) for the transcoding. See http://www.gnu.org/software/libiconv for the list of 21a4f78defSmrg# possible encodings. 22a4f78defSmrg 23a4f78defSmrgDOXYFILE_ENCODING = UTF-8 24a4f78defSmrg 25a4f78defSmrg# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 26a4f78defSmrg# by quotes) that should identify the project. 27a4f78defSmrg 28a4f78defSmrgPROJECT_NAME = VDPAU 29a4f78defSmrg 30a4f78defSmrg# The PROJECT_NUMBER tag can be used to enter a project or revision number. 31a4f78defSmrg# This could be handy for archiving the generated documentation or 32a4f78defSmrg# if some version control system is used. 33a4f78defSmrg 34a4f78defSmrgPROJECT_NUMBER = 35a4f78defSmrg 36a4f78defSmrg# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 37a4f78defSmrg# base path where the generated documentation will be put. 38a4f78defSmrg# If a relative path is entered, it will be relative to the location 39a4f78defSmrg# where doxygen was started. If left blank the current directory will be used. 40a4f78defSmrg 41a4f78defSmrgOUTPUT_DIRECTORY = 42a4f78defSmrg 43a4f78defSmrg# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 44a4f78defSmrg# 4096 sub-directories (in 2 levels) under the output directory of each output 45a4f78defSmrg# format and will distribute the generated files over these directories. 46a4f78defSmrg# Enabling this option can be useful when feeding doxygen a huge amount of 47a4f78defSmrg# source files, where putting all generated files in the same directory would 48a4f78defSmrg# otherwise cause performance problems for the file system. 49a4f78defSmrg 50a4f78defSmrgCREATE_SUBDIRS = NO 51a4f78defSmrg 52a4f78defSmrg# The OUTPUT_LANGUAGE tag is used to specify the language in which all 53a4f78defSmrg# documentation generated by doxygen is written. Doxygen will use this 54a4f78defSmrg# information to generate all constant output in the proper language. 55a4f78defSmrg# The default language is English, other supported languages are: 56a4f78defSmrg# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 57a4f78defSmrg# Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian, 58a4f78defSmrg# Italian, Japanese, Japanese-en (Japanese with English messages), Korean, 59a4f78defSmrg# Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian, 60a4f78defSmrg# Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian. 61a4f78defSmrg 62a4f78defSmrgOUTPUT_LANGUAGE = English 63a4f78defSmrg 64a4f78defSmrg# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 65a4f78defSmrg# include brief member descriptions after the members that are listed in 66a4f78defSmrg# the file and class documentation (similar to JavaDoc). 67a4f78defSmrg# Set to NO to disable this. 68a4f78defSmrg 69a4f78defSmrgBRIEF_MEMBER_DESC = YES 70a4f78defSmrg 71a4f78defSmrg# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 72a4f78defSmrg# the brief description of a member or function before the detailed description. 73a4f78defSmrg# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 74a4f78defSmrg# brief descriptions will be completely suppressed. 75a4f78defSmrg 76a4f78defSmrgREPEAT_BRIEF = YES 77a4f78defSmrg 78a4f78defSmrg# This tag implements a quasi-intelligent brief description abbreviator 79a4f78defSmrg# that is used to form the text in various listings. Each string 80a4f78defSmrg# in this list, if found as the leading text of the brief description, will be 81a4f78defSmrg# stripped from the text and the result after processing the whole list, is 82a4f78defSmrg# used as the annotated text. Otherwise, the brief description is used as-is. 83a4f78defSmrg# If left blank, the following values are used ("$name" is automatically 84a4f78defSmrg# replaced with the name of the entity): "The $name class" "The $name widget" 85a4f78defSmrg# "The $name file" "is" "provides" "specifies" "contains" 86a4f78defSmrg# "represents" "a" "an" "the" 87a4f78defSmrg 88a4f78defSmrgABBREVIATE_BRIEF = 89a4f78defSmrg 90a4f78defSmrg# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 91a4f78defSmrg# Doxygen will generate a detailed section even if there is only a brief 92a4f78defSmrg# description. 93a4f78defSmrg 94a4f78defSmrgALWAYS_DETAILED_SEC = NO 95a4f78defSmrg 96a4f78defSmrg# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 97a4f78defSmrg# inherited members of a class in the documentation of that class as if those 98a4f78defSmrg# members were ordinary class members. Constructors, destructors and assignment 99a4f78defSmrg# operators of the base classes will not be shown. 100a4f78defSmrg 101a4f78defSmrgINLINE_INHERITED_MEMB = NO 102a4f78defSmrg 103a4f78defSmrg# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 104a4f78defSmrg# path before files name in the file list and in the header files. If set 105a4f78defSmrg# to NO the shortest path that makes the file name unique will be used. 106a4f78defSmrg 107a4f78defSmrgFULL_PATH_NAMES = YES 108a4f78defSmrg 109a4f78defSmrg# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 110a4f78defSmrg# can be used to strip a user-defined part of the path. Stripping is 111a4f78defSmrg# only done if one of the specified strings matches the left-hand part of 112a4f78defSmrg# the path. The tag can be used to show relative paths in the file list. 113a4f78defSmrg# If left blank the directory from which doxygen is run is used as the 114a4f78defSmrg# path to strip. 115a4f78defSmrg 116a4f78defSmrgSTRIP_FROM_PATH = $(VDPAU_HEADER_DIR) 117a4f78defSmrg 118a4f78defSmrg# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 119a4f78defSmrg# the path mentioned in the documentation of a class, which tells 120a4f78defSmrg# the reader which header file to include in order to use a class. 121a4f78defSmrg# If left blank only the name of the header file containing the class 122a4f78defSmrg# definition is used. Otherwise one should specify the include paths that 123a4f78defSmrg# are normally passed to the compiler using the -I flag. 124a4f78defSmrg 125a4f78defSmrgSTRIP_FROM_INC_PATH = 126a4f78defSmrg 127a4f78defSmrg# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 128a4f78defSmrg# (but less readable) file names. This can be useful is your file systems 129a4f78defSmrg# doesn't support long names like on DOS, Mac, or CD-ROM. 130a4f78defSmrg 131a4f78defSmrgSHORT_NAMES = NO 132a4f78defSmrg 133a4f78defSmrg# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 134a4f78defSmrg# will interpret the first line (until the first dot) of a JavaDoc-style 135a4f78defSmrg# comment as the brief description. If set to NO, the JavaDoc 136a4f78defSmrg# comments will behave just like regular Qt-style comments 137a4f78defSmrg# (thus requiring an explicit @brief command for a brief description.) 138a4f78defSmrg 139a4f78defSmrgJAVADOC_AUTOBRIEF = NO 140a4f78defSmrg 141a4f78defSmrg# If the QT_AUTOBRIEF tag is set to YES then Doxygen will 142a4f78defSmrg# interpret the first line (until the first dot) of a Qt-style 143a4f78defSmrg# comment as the brief description. If set to NO, the comments 144a4f78defSmrg# will behave just like regular Qt-style comments (thus requiring 145a4f78defSmrg# an explicit \brief command for a brief description.) 146a4f78defSmrg 147a4f78defSmrgQT_AUTOBRIEF = NO 148a4f78defSmrg 149a4f78defSmrg# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 150a4f78defSmrg# treat a multi-line C++ special comment block (i.e. a block of //! or /// 151a4f78defSmrg# comments) as a brief description. This used to be the default behaviour. 152a4f78defSmrg# The new default is to treat a multi-line C++ comment block as a detailed 153a4f78defSmrg# description. Set this tag to YES if you prefer the old behaviour instead. 154a4f78defSmrg 155a4f78defSmrgMULTILINE_CPP_IS_BRIEF = NO 156a4f78defSmrg 157a4f78defSmrg# If the DETAILS_AT_TOP tag is set to YES then Doxygen 158a4f78defSmrg# will output the detailed description near the top, like JavaDoc. 159a4f78defSmrg# If set to NO, the detailed description appears after the member 160a4f78defSmrg# documentation. 161a4f78defSmrg 162a4f78defSmrgDETAILS_AT_TOP = YES 163a4f78defSmrg 164a4f78defSmrg# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 165a4f78defSmrg# member inherits the documentation from any documented member that it 166a4f78defSmrg# re-implements. 167a4f78defSmrg 168a4f78defSmrgINHERIT_DOCS = YES 169a4f78defSmrg 170a4f78defSmrg# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 171a4f78defSmrg# a new page for each member. If set to NO, the documentation of a member will 172a4f78defSmrg# be part of the file/class/namespace that contains it. 173a4f78defSmrg 174a4f78defSmrgSEPARATE_MEMBER_PAGES = NO 175a4f78defSmrg 176a4f78defSmrg# The TAB_SIZE tag can be used to set the number of spaces in a tab. 177a4f78defSmrg# Doxygen uses this value to replace tabs by spaces in code fragments. 178a4f78defSmrg 179a4f78defSmrgTAB_SIZE = 8 180a4f78defSmrg 181a4f78defSmrg# This tag can be used to specify a number of aliases that acts 182a4f78defSmrg# as commands in the documentation. An alias has the form "name=value". 183a4f78defSmrg# For example adding "sideeffect=\par Side Effects:\n" will allow you to 184a4f78defSmrg# put the command \sideeffect (or @sideeffect) in the documentation, which 185a4f78defSmrg# will result in a user-defined paragraph with heading "Side Effects:". 186a4f78defSmrg# You can put \n's in the value part of an alias to insert newlines. 187a4f78defSmrg 188a4f78defSmrgALIASES = 189a4f78defSmrg 190a4f78defSmrg# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 191a4f78defSmrg# sources only. Doxygen will then generate output that is more tailored for C. 192a4f78defSmrg# For instance, some of the names that are used will be different. The list 193a4f78defSmrg# of all members will be omitted, etc. 194a4f78defSmrg 195a4f78defSmrgOPTIMIZE_OUTPUT_FOR_C = YES 196a4f78defSmrg 197a4f78defSmrg# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 198a4f78defSmrg# sources only. Doxygen will then generate output that is more tailored for Java. 199a4f78defSmrg# For instance, namespaces will be presented as packages, qualified scopes 200a4f78defSmrg# will look different, etc. 201a4f78defSmrg 202a4f78defSmrgOPTIMIZE_OUTPUT_JAVA = NO 203a4f78defSmrg 204a4f78defSmrg# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to 205a4f78defSmrg# include (a tag file for) the STL sources as input, then you should 206a4f78defSmrg# set this tag to YES in order to let doxygen match functions declarations and 207a4f78defSmrg# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 208a4f78defSmrg# func(std::string) {}). This also make the inheritance and collaboration 209a4f78defSmrg# diagrams that involve STL classes more complete and accurate. 210a4f78defSmrg 211a4f78defSmrgBUILTIN_STL_SUPPORT = NO 212a4f78defSmrg 213a4f78defSmrg# If you use Microsoft's C++/CLI language, you should set this option to YES to 214a4f78defSmrg# enable parsing support. 215a4f78defSmrg 216a4f78defSmrgCPP_CLI_SUPPORT = NO 217a4f78defSmrg 218a4f78defSmrg# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 219a4f78defSmrg# tag is set to YES, then doxygen will reuse the documentation of the first 220a4f78defSmrg# member in the group (if any) for the other members of the group. By default 221a4f78defSmrg# all members of a group must be documented explicitly. 222a4f78defSmrg 223a4f78defSmrgDISTRIBUTE_GROUP_DOC = NO 224a4f78defSmrg 225a4f78defSmrg# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 226a4f78defSmrg# the same type (for instance a group of public functions) to be put as a 227a4f78defSmrg# subgroup of that type (e.g. under the Public Functions section). Set it to 228a4f78defSmrg# NO to prevent subgrouping. Alternatively, this can be done per class using 229a4f78defSmrg# the \nosubgrouping command. 230a4f78defSmrg 231a4f78defSmrgSUBGROUPING = YES 232a4f78defSmrg 233a4f78defSmrg#--------------------------------------------------------------------------- 234a4f78defSmrg# Build related configuration options 235a4f78defSmrg#--------------------------------------------------------------------------- 236a4f78defSmrg 237a4f78defSmrg# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 238a4f78defSmrg# documentation are documented, even if no documentation was available. 239a4f78defSmrg# Private class members and static file members will be hidden unless 240a4f78defSmrg# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 241a4f78defSmrg 242a4f78defSmrgEXTRACT_ALL = YES 243a4f78defSmrg 244a4f78defSmrg# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 245a4f78defSmrg# will be included in the documentation. 246a4f78defSmrg 247a4f78defSmrgEXTRACT_PRIVATE = NO 248a4f78defSmrg 249a4f78defSmrg# If the EXTRACT_STATIC tag is set to YES all static members of a file 250a4f78defSmrg# will be included in the documentation. 251a4f78defSmrg 252a4f78defSmrgEXTRACT_STATIC = NO 253a4f78defSmrg 254a4f78defSmrg# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 255a4f78defSmrg# defined locally in source files will be included in the documentation. 256a4f78defSmrg# If set to NO only classes defined in header files are included. 257a4f78defSmrg 258a4f78defSmrgEXTRACT_LOCAL_CLASSES = YES 259a4f78defSmrg 260a4f78defSmrg# This flag is only useful for Objective-C code. When set to YES local 261a4f78defSmrg# methods, which are defined in the implementation section but not in 262a4f78defSmrg# the interface are included in the documentation. 263a4f78defSmrg# If set to NO (the default) only methods in the interface are included. 264a4f78defSmrg 265a4f78defSmrgEXTRACT_LOCAL_METHODS = NO 266a4f78defSmrg 267a4f78defSmrg# If this flag is set to YES, the members of anonymous namespaces will be extracted 268a4f78defSmrg# and appear in the documentation as a namespace called 'anonymous_namespace{file}', 269a4f78defSmrg# where file will be replaced with the base name of the file that contains the anonymous 270a4f78defSmrg# namespace. By default anonymous namespace are hidden. 271a4f78defSmrg 272a4f78defSmrgEXTRACT_ANON_NSPACES = NO 273a4f78defSmrg 274a4f78defSmrg# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 275a4f78defSmrg# undocumented members of documented classes, files or namespaces. 276a4f78defSmrg# If set to NO (the default) these members will be included in the 277a4f78defSmrg# various overviews, but no documentation section is generated. 278a4f78defSmrg# This option has no effect if EXTRACT_ALL is enabled. 279a4f78defSmrg 280a4f78defSmrgHIDE_UNDOC_MEMBERS = NO 281a4f78defSmrg 282a4f78defSmrg# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 283a4f78defSmrg# undocumented classes that are normally visible in the class hierarchy. 284a4f78defSmrg# If set to NO (the default) these classes will be included in the various 285a4f78defSmrg# overviews. This option has no effect if EXTRACT_ALL is enabled. 286a4f78defSmrg 287a4f78defSmrgHIDE_UNDOC_CLASSES = NO 288a4f78defSmrg 289a4f78defSmrg# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 290a4f78defSmrg# friend (class|struct|union) declarations. 291a4f78defSmrg# If set to NO (the default) these declarations will be included in the 292a4f78defSmrg# documentation. 293a4f78defSmrg 294a4f78defSmrgHIDE_FRIEND_COMPOUNDS = NO 295a4f78defSmrg 296a4f78defSmrg# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 297a4f78defSmrg# documentation blocks found inside the body of a function. 298a4f78defSmrg# If set to NO (the default) these blocks will be appended to the 299a4f78defSmrg# function's detailed documentation block. 300a4f78defSmrg 301a4f78defSmrgHIDE_IN_BODY_DOCS = NO 302a4f78defSmrg 303a4f78defSmrg# The INTERNAL_DOCS tag determines if documentation 304a4f78defSmrg# that is typed after a \internal command is included. If the tag is set 305a4f78defSmrg# to NO (the default) then the documentation will be excluded. 306a4f78defSmrg# Set it to YES to include the internal documentation. 307a4f78defSmrg 308a4f78defSmrgINTERNAL_DOCS = NO 309a4f78defSmrg 310a4f78defSmrg# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 311a4f78defSmrg# file names in lower-case letters. If set to YES upper-case letters are also 312a4f78defSmrg# allowed. This is useful if you have classes or files whose names only differ 313a4f78defSmrg# in case and if your file system supports case sensitive file names. Windows 314a4f78defSmrg# and Mac users are advised to set this option to NO. 315a4f78defSmrg 316a4f78defSmrgCASE_SENSE_NAMES = NO 317a4f78defSmrg 318a4f78defSmrg# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 319a4f78defSmrg# will show members with their full class and namespace scopes in the 320a4f78defSmrg# documentation. If set to YES the scope will be hidden. 321a4f78defSmrg 322a4f78defSmrgHIDE_SCOPE_NAMES = NO 323a4f78defSmrg 324a4f78defSmrg# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 325a4f78defSmrg# will put a list of the files that are included by a file in the documentation 326a4f78defSmrg# of that file. 327a4f78defSmrg 328a4f78defSmrgSHOW_INCLUDE_FILES = YES 329a4f78defSmrg 330a4f78defSmrg# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 331a4f78defSmrg# is inserted in the documentation for inline members. 332a4f78defSmrg 333a4f78defSmrgINLINE_INFO = YES 334a4f78defSmrg 335a4f78defSmrg# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 336a4f78defSmrg# will sort the (detailed) documentation of file and class members 337a4f78defSmrg# alphabetically by member name. If set to NO the members will appear in 338a4f78defSmrg# declaration order. 339a4f78defSmrg 340a4f78defSmrgSORT_MEMBER_DOCS = YES 341a4f78defSmrg 342a4f78defSmrg# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 343a4f78defSmrg# brief documentation of file, namespace and class members alphabetically 344a4f78defSmrg# by member name. If set to NO (the default) the members will appear in 345a4f78defSmrg# declaration order. 346a4f78defSmrg 347a4f78defSmrgSORT_BRIEF_DOCS = NO 348a4f78defSmrg 349a4f78defSmrg# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 350a4f78defSmrg# sorted by fully-qualified names, including namespaces. If set to 351a4f78defSmrg# NO (the default), the class list will be sorted only by class name, 352a4f78defSmrg# not including the namespace part. 353a4f78defSmrg# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 354a4f78defSmrg# Note: This option applies only to the class list, not to the 355a4f78defSmrg# alphabetical list. 356a4f78defSmrg 357a4f78defSmrgSORT_BY_SCOPE_NAME = NO 358a4f78defSmrg 359a4f78defSmrg# The GENERATE_TODOLIST tag can be used to enable (YES) or 360a4f78defSmrg# disable (NO) the todo list. This list is created by putting \todo 361a4f78defSmrg# commands in the documentation. 362a4f78defSmrg 363a4f78defSmrgGENERATE_TODOLIST = YES 364a4f78defSmrg 365a4f78defSmrg# The GENERATE_TESTLIST tag can be used to enable (YES) or 366a4f78defSmrg# disable (NO) the test list. This list is created by putting \test 367a4f78defSmrg# commands in the documentation. 368a4f78defSmrg 369a4f78defSmrgGENERATE_TESTLIST = YES 370a4f78defSmrg 371a4f78defSmrg# The GENERATE_BUGLIST tag can be used to enable (YES) or 372a4f78defSmrg# disable (NO) the bug list. This list is created by putting \bug 373a4f78defSmrg# commands in the documentation. 374a4f78defSmrg 375a4f78defSmrgGENERATE_BUGLIST = YES 376a4f78defSmrg 377a4f78defSmrg# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 378a4f78defSmrg# disable (NO) the deprecated list. This list is created by putting 379a4f78defSmrg# \deprecated commands in the documentation. 380a4f78defSmrg 381a4f78defSmrgGENERATE_DEPRECATEDLIST= YES 382a4f78defSmrg 383a4f78defSmrg# The ENABLED_SECTIONS tag can be used to enable conditional 384a4f78defSmrg# documentation sections, marked by \if sectionname ... \endif. 385a4f78defSmrg 386a4f78defSmrgENABLED_SECTIONS = 387a4f78defSmrg 388a4f78defSmrg# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 389a4f78defSmrg# the initial value of a variable or define consists of for it to appear in 390a4f78defSmrg# the documentation. If the initializer consists of more lines than specified 391a4f78defSmrg# here it will be hidden. Use a value of 0 to hide initializers completely. 392a4f78defSmrg# The appearance of the initializer of individual variables and defines in the 393a4f78defSmrg# documentation can be controlled using \showinitializer or \hideinitializer 394a4f78defSmrg# command in the documentation regardless of this setting. 395a4f78defSmrg 396a4f78defSmrgMAX_INITIALIZER_LINES = 30 397a4f78defSmrg 398a4f78defSmrg# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 399a4f78defSmrg# at the bottom of the documentation of classes and structs. If set to YES the 400a4f78defSmrg# list will mention the files that were used to generate the documentation. 401a4f78defSmrg 402a4f78defSmrgSHOW_USED_FILES = YES 403a4f78defSmrg 404a4f78defSmrg# If the sources in your project are distributed over multiple directories 405a4f78defSmrg# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 406a4f78defSmrg# in the documentation. The default is NO. 407a4f78defSmrg 408a4f78defSmrgSHOW_DIRECTORIES = YES 409a4f78defSmrg 410a4f78defSmrg# The FILE_VERSION_FILTER tag can be used to specify a program or script that 411a4f78defSmrg# doxygen should invoke to get the current version for each file (typically from the 412a4f78defSmrg# version control system). Doxygen will invoke the program by executing (via 413a4f78defSmrg# popen()) the command <command> <input-file>, where <command> is the value of 414a4f78defSmrg# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 415a4f78defSmrg# provided by doxygen. Whatever the program writes to standard output 416a4f78defSmrg# is used as the file version. See the manual for examples. 417a4f78defSmrg 418a4f78defSmrgFILE_VERSION_FILTER = 419a4f78defSmrg 420a4f78defSmrg#--------------------------------------------------------------------------- 421a4f78defSmrg# configuration options related to warning and progress messages 422a4f78defSmrg#--------------------------------------------------------------------------- 423a4f78defSmrg 424a4f78defSmrg# The QUIET tag can be used to turn on/off the messages that are generated 425a4f78defSmrg# by doxygen. Possible values are YES and NO. If left blank NO is used. 426a4f78defSmrg 427a4f78defSmrgQUIET = NO 428a4f78defSmrg 429a4f78defSmrg# The WARNINGS tag can be used to turn on/off the warning messages that are 430a4f78defSmrg# generated by doxygen. Possible values are YES and NO. If left blank 431a4f78defSmrg# NO is used. 432a4f78defSmrg 433a4f78defSmrgWARNINGS = YES 434a4f78defSmrg 435a4f78defSmrg# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 436a4f78defSmrg# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 437a4f78defSmrg# automatically be disabled. 438a4f78defSmrg 439a4f78defSmrgWARN_IF_UNDOCUMENTED = YES 440a4f78defSmrg 441a4f78defSmrg# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 442a4f78defSmrg# potential errors in the documentation, such as not documenting some 443a4f78defSmrg# parameters in a documented function, or documenting parameters that 444a4f78defSmrg# don't exist or using markup commands wrongly. 445a4f78defSmrg 446a4f78defSmrgWARN_IF_DOC_ERROR = YES 447a4f78defSmrg 448a4f78defSmrg# This WARN_NO_PARAMDOC option can be abled to get warnings for 449a4f78defSmrg# functions that are documented, but have no documentation for their parameters 450a4f78defSmrg# or return value. If set to NO (the default) doxygen will only warn about 451a4f78defSmrg# wrong or incomplete parameter documentation, but not about the absence of 452a4f78defSmrg# documentation. 453a4f78defSmrg 454a4f78defSmrgWARN_NO_PARAMDOC = NO 455a4f78defSmrg 456a4f78defSmrg# The WARN_FORMAT tag determines the format of the warning messages that 457a4f78defSmrg# doxygen can produce. The string should contain the $file, $line, and $text 458a4f78defSmrg# tags, which will be replaced by the file and line number from which the 459a4f78defSmrg# warning originated and the warning text. Optionally the format may contain 460a4f78defSmrg# $version, which will be replaced by the version of the file (if it could 461a4f78defSmrg# be obtained via FILE_VERSION_FILTER) 462a4f78defSmrg 463a4f78defSmrgWARN_FORMAT = "$file:$line: $text" 464a4f78defSmrg 465a4f78defSmrg# The WARN_LOGFILE tag can be used to specify a file to which warning 466a4f78defSmrg# and error messages should be written. If left blank the output is written 467a4f78defSmrg# to stderr. 468a4f78defSmrg 469a4f78defSmrgWARN_LOGFILE = 470a4f78defSmrg 471a4f78defSmrg#--------------------------------------------------------------------------- 472a4f78defSmrg# configuration options related to the input files 473a4f78defSmrg#--------------------------------------------------------------------------- 474a4f78defSmrg 475a4f78defSmrg# The INPUT tag can be used to specify the files and/or directories that contain 476a4f78defSmrg# documented source files. You may enter file names like "myfile.cpp" or 477a4f78defSmrg# directories like "/usr/src/myproject". Separate the files or directories 478a4f78defSmrg# with spaces. 479a4f78defSmrg 480a4f78defSmrgINPUT = $(VDPAU_HEADER_FILES) 481a4f78defSmrg 482a4f78defSmrg# This tag can be used to specify the character encoding of the source files that 483a4f78defSmrg# doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default 484a4f78defSmrg# input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding. 485a4f78defSmrg# See http://www.gnu.org/software/libiconv for the list of possible encodings. 486a4f78defSmrg 487a4f78defSmrgINPUT_ENCODING = UTF-8 488a4f78defSmrg 489a4f78defSmrg# If the value of the INPUT tag contains directories, you can use the 490a4f78defSmrg# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 491a4f78defSmrg# and *.h) to filter out the source-files in the directories. If left 492a4f78defSmrg# blank the following patterns are tested: 493a4f78defSmrg# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 494a4f78defSmrg# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py 495a4f78defSmrg 496a4f78defSmrgFILE_PATTERNS = *.h 497a4f78defSmrg 498a4f78defSmrg# The RECURSIVE tag can be used to turn specify whether or not subdirectories 499a4f78defSmrg# should be searched for input files as well. Possible values are YES and NO. 500a4f78defSmrg# If left blank NO is used. 501a4f78defSmrg 502a4f78defSmrgRECURSIVE = YES 503a4f78defSmrg 504a4f78defSmrg# The EXCLUDE tag can be used to specify files and/or directories that should 505a4f78defSmrg# excluded from the INPUT source files. This way you can easily exclude a 506a4f78defSmrg# subdirectory from a directory tree whose root is specified with the INPUT tag. 507a4f78defSmrg 508a4f78defSmrgEXCLUDE = 509a4f78defSmrg 510a4f78defSmrg# The EXCLUDE_SYMLINKS tag can be used select whether or not files or 511a4f78defSmrg# directories that are symbolic links (a Unix filesystem feature) are excluded 512a4f78defSmrg# from the input. 513a4f78defSmrg 514a4f78defSmrgEXCLUDE_SYMLINKS = NO 515a4f78defSmrg 516a4f78defSmrg# If the value of the INPUT tag contains directories, you can use the 517a4f78defSmrg# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 518a4f78defSmrg# certain files from those directories. Note that the wildcards are matched 519a4f78defSmrg# against the file with absolute path, so to exclude all test directories 520a4f78defSmrg# for example use the pattern */test/* 521a4f78defSmrg 522a4f78defSmrgEXCLUDE_PATTERNS = */autogen/* */private/* */test/* 523a4f78defSmrg 524a4f78defSmrg# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 525a4f78defSmrg# (namespaces, classes, functions, etc.) that should be excluded from the output. 526a4f78defSmrg# The symbol name can be a fully qualified name, a word, or if the wildcard * is used, 527a4f78defSmrg# a substring. Examples: ANamespace, AClass, AClass::ANamespace, ANamespace::*Test 528a4f78defSmrg 529a4f78defSmrgEXCLUDE_SYMBOLS = 530a4f78defSmrg 531a4f78defSmrg# The EXAMPLE_PATH tag can be used to specify one or more files or 532a4f78defSmrg# directories that contain example code fragments that are included (see 533a4f78defSmrg# the \include command). 534a4f78defSmrg 535a4f78defSmrgEXAMPLE_PATH = 536a4f78defSmrg 537a4f78defSmrg# If the value of the EXAMPLE_PATH tag contains directories, you can use the 538a4f78defSmrg# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 539a4f78defSmrg# and *.h) to filter out the source-files in the directories. If left 540a4f78defSmrg# blank all files are included. 541a4f78defSmrg 542a4f78defSmrgEXAMPLE_PATTERNS = 543a4f78defSmrg 544a4f78defSmrg# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 545a4f78defSmrg# searched for input files to be used with the \include or \dontinclude 546a4f78defSmrg# commands irrespective of the value of the RECURSIVE tag. 547a4f78defSmrg# Possible values are YES and NO. If left blank NO is used. 548a4f78defSmrg 549a4f78defSmrgEXAMPLE_RECURSIVE = NO 550a4f78defSmrg 551a4f78defSmrg# The IMAGE_PATH tag can be used to specify one or more files or 552a4f78defSmrg# directories that contain image that are included in the documentation (see 553a4f78defSmrg# the \image command). 554a4f78defSmrg 555a4f78defSmrgIMAGE_PATH = . 556a4f78defSmrg 557a4f78defSmrg# The INPUT_FILTER tag can be used to specify a program that doxygen should 558a4f78defSmrg# invoke to filter for each input file. Doxygen will invoke the filter program 559a4f78defSmrg# by executing (via popen()) the command <filter> <input-file>, where <filter> 560a4f78defSmrg# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 561a4f78defSmrg# input file. Doxygen will then use the output that the filter program writes 562a4f78defSmrg# to standard output. If FILTER_PATTERNS is specified, this tag will be 563a4f78defSmrg# ignored. 564a4f78defSmrg 565a4f78defSmrgINPUT_FILTER = 566a4f78defSmrg 567a4f78defSmrg# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 568a4f78defSmrg# basis. Doxygen will compare the file name with each pattern and apply the 569a4f78defSmrg# filter if there is a match. The filters are a list of the form: 570a4f78defSmrg# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 571a4f78defSmrg# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 572a4f78defSmrg# is applied to all files. 573a4f78defSmrg 574a4f78defSmrgFILTER_PATTERNS = 575a4f78defSmrg 576a4f78defSmrg# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 577a4f78defSmrg# INPUT_FILTER) will be used to filter the input files when producing source 578a4f78defSmrg# files to browse (i.e. when SOURCE_BROWSER is set to YES). 579a4f78defSmrg 580a4f78defSmrgFILTER_SOURCE_FILES = NO 581a4f78defSmrg 582a4f78defSmrg#--------------------------------------------------------------------------- 583a4f78defSmrg# configuration options related to source browsing 584a4f78defSmrg#--------------------------------------------------------------------------- 585a4f78defSmrg 586a4f78defSmrg# If the SOURCE_BROWSER tag is set to YES then a list of source files will 587a4f78defSmrg# be generated. Documented entities will be cross-referenced with these sources. 588a4f78defSmrg# Note: To get rid of all source code in the generated output, make sure also 589a4f78defSmrg# VERBATIM_HEADERS is set to NO. If you have enabled CALL_GRAPH or CALLER_GRAPH 590a4f78defSmrg# then you must also enable this option. If you don't then doxygen will produce 591a4f78defSmrg# a warning and turn it on anyway 592a4f78defSmrg 593a4f78defSmrgSOURCE_BROWSER = NO 594a4f78defSmrg 595a4f78defSmrg# Setting the INLINE_SOURCES tag to YES will include the body 596a4f78defSmrg# of functions and classes directly in the documentation. 597a4f78defSmrg 598a4f78defSmrgINLINE_SOURCES = NO 599a4f78defSmrg 600a4f78defSmrg# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 601a4f78defSmrg# doxygen to hide any special comment blocks from generated source code 602a4f78defSmrg# fragments. Normal C and C++ comments will always remain visible. 603a4f78defSmrg 604a4f78defSmrgSTRIP_CODE_COMMENTS = YES 605a4f78defSmrg 606a4f78defSmrg# If the REFERENCED_BY_RELATION tag is set to YES (the default) 607a4f78defSmrg# then for each documented function all documented 608a4f78defSmrg# functions referencing it will be listed. 609a4f78defSmrg 610a4f78defSmrgREFERENCED_BY_RELATION = YES 611a4f78defSmrg 612a4f78defSmrg# If the REFERENCES_RELATION tag is set to YES (the default) 613a4f78defSmrg# then for each documented function all documented entities 614a4f78defSmrg# called/used by that function will be listed. 615a4f78defSmrg 616a4f78defSmrgREFERENCES_RELATION = YES 617a4f78defSmrg 618a4f78defSmrg# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 619a4f78defSmrg# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 620a4f78defSmrg# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 621a4f78defSmrg# link to the source code. Otherwise they will link to the documentstion. 622a4f78defSmrg 623a4f78defSmrgREFERENCES_LINK_SOURCE = YES 624a4f78defSmrg 625a4f78defSmrg# If the USE_HTAGS tag is set to YES then the references to source code 626a4f78defSmrg# will point to the HTML generated by the htags(1) tool instead of doxygen 627a4f78defSmrg# built-in source browser. The htags tool is part of GNU's global source 628a4f78defSmrg# tagging system (see http://www.gnu.org/software/global/global.html). You 629a4f78defSmrg# will need version 4.8.6 or higher. 630a4f78defSmrg 631a4f78defSmrgUSE_HTAGS = NO 632a4f78defSmrg 633a4f78defSmrg# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 634a4f78defSmrg# will generate a verbatim copy of the header file for each class for 635a4f78defSmrg# which an include is specified. Set to NO to disable this. 636a4f78defSmrg 637a4f78defSmrgVERBATIM_HEADERS = YES 638a4f78defSmrg 639a4f78defSmrg#--------------------------------------------------------------------------- 640a4f78defSmrg# configuration options related to the alphabetical class index 641a4f78defSmrg#--------------------------------------------------------------------------- 642a4f78defSmrg 643a4f78defSmrg# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 644a4f78defSmrg# of all compounds will be generated. Enable this if the project 645a4f78defSmrg# contains a lot of classes, structs, unions or interfaces. 646a4f78defSmrg 647a4f78defSmrgALPHABETICAL_INDEX = NO 648a4f78defSmrg 649a4f78defSmrg# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 650a4f78defSmrg# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 651a4f78defSmrg# in which this list will be split (can be a number in the range [1..20]) 652a4f78defSmrg 653a4f78defSmrgCOLS_IN_ALPHA_INDEX = 5 654a4f78defSmrg 655a4f78defSmrg# In case all classes in a project start with a common prefix, all 656a4f78defSmrg# classes will be put under the same header in the alphabetical index. 657a4f78defSmrg# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 658a4f78defSmrg# should be ignored while generating the index headers. 659a4f78defSmrg 660a4f78defSmrgIGNORE_PREFIX = 661a4f78defSmrg 662a4f78defSmrg#--------------------------------------------------------------------------- 663a4f78defSmrg# configuration options related to the HTML output 664a4f78defSmrg#--------------------------------------------------------------------------- 665a4f78defSmrg 666a4f78defSmrg# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 667a4f78defSmrg# generate HTML output. 668a4f78defSmrg 669a4f78defSmrgGENERATE_HTML = YES 670a4f78defSmrg 671a4f78defSmrg# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 672a4f78defSmrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 673a4f78defSmrg# put in front of it. If left blank `html' will be used as the default path. 674a4f78defSmrg 675a4f78defSmrgHTML_OUTPUT = html-out 676a4f78defSmrg 677a4f78defSmrg# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 678a4f78defSmrg# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 679a4f78defSmrg# doxygen will generate files with .html extension. 680a4f78defSmrg 681a4f78defSmrgHTML_FILE_EXTENSION = .html 682a4f78defSmrg 683a4f78defSmrg# The HTML_HEADER tag can be used to specify a personal HTML header for 684a4f78defSmrg# each generated HTML page. If it is left blank doxygen will generate a 685a4f78defSmrg# standard header. 686a4f78defSmrg 687a4f78defSmrgHTML_HEADER = 688a4f78defSmrg 689a4f78defSmrg# The HTML_FOOTER tag can be used to specify a personal HTML footer for 690a4f78defSmrg# each generated HTML page. If it is left blank doxygen will generate a 691a4f78defSmrg# standard footer. 692a4f78defSmrg 693a4f78defSmrgHTML_FOOTER = 694a4f78defSmrg 695a4f78defSmrg# The HTML_STYLESHEET tag can be used to specify a user-defined cascading 696a4f78defSmrg# style sheet that is used by each HTML page. It can be used to 697a4f78defSmrg# fine-tune the look of the HTML output. If the tag is left blank doxygen 698a4f78defSmrg# will generate a default style sheet. Note that doxygen will try to copy 699a4f78defSmrg# the style sheet file to the HTML output directory, so don't put your own 700a4f78defSmrg# stylesheet in the HTML output directory as well, or it will be erased! 701a4f78defSmrg 702a4f78defSmrgHTML_STYLESHEET = 703a4f78defSmrg 704a4f78defSmrg# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 705a4f78defSmrg# files or namespaces will be aligned in HTML using tables. If set to 706a4f78defSmrg# NO a bullet list will be used. 707a4f78defSmrg 708a4f78defSmrgHTML_ALIGN_MEMBERS = YES 709a4f78defSmrg 710a4f78defSmrg# If the GENERATE_HTMLHELP tag is set to YES, additional index files 711a4f78defSmrg# will be generated that can be used as input for tools like the 712a4f78defSmrg# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 713a4f78defSmrg# of the generated HTML documentation. 714a4f78defSmrg 715a4f78defSmrgGENERATE_HTMLHELP = NO 716a4f78defSmrg 717a4f78defSmrg# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 718a4f78defSmrg# documentation will contain sections that can be hidden and shown after the 719a4f78defSmrg# page has loaded. For this to work a browser that supports 720a4f78defSmrg# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox 721a4f78defSmrg# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). 722a4f78defSmrg 723a4f78defSmrgHTML_DYNAMIC_SECTIONS = NO 724a4f78defSmrg 725a4f78defSmrg# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 726a4f78defSmrg# be used to specify the file name of the resulting .chm file. You 727a4f78defSmrg# can add a path in front of the file if the result should not be 728a4f78defSmrg# written to the html output directory. 729a4f78defSmrg 730a4f78defSmrgCHM_FILE = 731a4f78defSmrg 732a4f78defSmrg# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 733a4f78defSmrg# be used to specify the location (absolute path including file name) of 734a4f78defSmrg# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 735a4f78defSmrg# the HTML help compiler on the generated index.hhp. 736a4f78defSmrg 737a4f78defSmrgHHC_LOCATION = 738a4f78defSmrg 739a4f78defSmrg# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 740a4f78defSmrg# controls if a separate .chi index file is generated (YES) or that 741a4f78defSmrg# it should be included in the master .chm file (NO). 742a4f78defSmrg 743a4f78defSmrgGENERATE_CHI = NO 744a4f78defSmrg 745a4f78defSmrg# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 746a4f78defSmrg# controls whether a binary table of contents is generated (YES) or a 747a4f78defSmrg# normal table of contents (NO) in the .chm file. 748a4f78defSmrg 749a4f78defSmrgBINARY_TOC = NO 750a4f78defSmrg 751a4f78defSmrg# The TOC_EXPAND flag can be set to YES to add extra items for group members 752a4f78defSmrg# to the contents of the HTML help documentation and to the tree view. 753a4f78defSmrg 754a4f78defSmrgTOC_EXPAND = NO 755a4f78defSmrg 756a4f78defSmrg# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 757a4f78defSmrg# top of each HTML page. The value NO (the default) enables the index and 758a4f78defSmrg# the value YES disables it. 759a4f78defSmrg 760a4f78defSmrgDISABLE_INDEX = NO 761a4f78defSmrg 762a4f78defSmrg# This tag can be used to set the number of enum values (range [1..20]) 763a4f78defSmrg# that doxygen will group on one line in the generated HTML documentation. 764a4f78defSmrg 765a4f78defSmrgENUM_VALUES_PER_LINE = 4 766a4f78defSmrg 767a4f78defSmrg# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be 768a4f78defSmrg# generated containing a tree-like index structure (just like the one that 769a4f78defSmrg# is generated for HTML Help). For this to work a browser that supports 770a4f78defSmrg# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 771a4f78defSmrg# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 772a4f78defSmrg# probably better off using the HTML help feature. 773a4f78defSmrg 774a4f78defSmrgGENERATE_TREEVIEW = NO 775a4f78defSmrg 776a4f78defSmrg# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 777a4f78defSmrg# used to set the initial width (in pixels) of the frame in which the tree 778a4f78defSmrg# is shown. 779a4f78defSmrg 780a4f78defSmrgTREEVIEW_WIDTH = 250 781a4f78defSmrg 782a4f78defSmrg#--------------------------------------------------------------------------- 783a4f78defSmrg# configuration options related to the LaTeX output 784a4f78defSmrg#--------------------------------------------------------------------------- 785a4f78defSmrg 786a4f78defSmrg# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 787a4f78defSmrg# generate Latex output. 788a4f78defSmrg 789a4f78defSmrgGENERATE_LATEX = NO 790a4f78defSmrg 791a4f78defSmrg# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 792a4f78defSmrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 793a4f78defSmrg# put in front of it. If left blank `latex' will be used as the default path. 794a4f78defSmrg 795a4f78defSmrgLATEX_OUTPUT = latex 796a4f78defSmrg 797a4f78defSmrg# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 798a4f78defSmrg# invoked. If left blank `latex' will be used as the default command name. 799a4f78defSmrg 800a4f78defSmrgLATEX_CMD_NAME = latex 801a4f78defSmrg 802a4f78defSmrg# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 803a4f78defSmrg# generate index for LaTeX. If left blank `makeindex' will be used as the 804a4f78defSmrg# default command name. 805a4f78defSmrg 806a4f78defSmrgMAKEINDEX_CMD_NAME = makeindex 807a4f78defSmrg 808a4f78defSmrg# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 809a4f78defSmrg# LaTeX documents. This may be useful for small projects and may help to 810a4f78defSmrg# save some trees in general. 811a4f78defSmrg 812a4f78defSmrgCOMPACT_LATEX = NO 813a4f78defSmrg 814a4f78defSmrg# The PAPER_TYPE tag can be used to set the paper type that is used 815a4f78defSmrg# by the printer. Possible values are: a4, a4wide, letter, legal and 816a4f78defSmrg# executive. If left blank a4wide will be used. 817a4f78defSmrg 818a4f78defSmrgPAPER_TYPE = a4wide 819a4f78defSmrg 820a4f78defSmrg# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 821a4f78defSmrg# packages that should be included in the LaTeX output. 822a4f78defSmrg 823a4f78defSmrgEXTRA_PACKAGES = 824a4f78defSmrg 825a4f78defSmrg# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 826a4f78defSmrg# the generated latex document. The header should contain everything until 827a4f78defSmrg# the first chapter. If it is left blank doxygen will generate a 828a4f78defSmrg# standard header. Notice: only use this tag if you know what you are doing! 829a4f78defSmrg 830a4f78defSmrgLATEX_HEADER = 831a4f78defSmrg 832a4f78defSmrg# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 833a4f78defSmrg# is prepared for conversion to pdf (using ps2pdf). The pdf file will 834a4f78defSmrg# contain links (just like the HTML output) instead of page references 835a4f78defSmrg# This makes the output suitable for online browsing using a pdf viewer. 836a4f78defSmrg 837a4f78defSmrgPDF_HYPERLINKS = NO 838a4f78defSmrg 839a4f78defSmrg# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 840a4f78defSmrg# plain latex in the generated Makefile. Set this option to YES to get a 841a4f78defSmrg# higher quality PDF documentation. 842a4f78defSmrg 843a4f78defSmrgUSE_PDFLATEX = YES 844a4f78defSmrg 845a4f78defSmrg# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 846a4f78defSmrg# command to the generated LaTeX files. This will instruct LaTeX to keep 847a4f78defSmrg# running if errors occur, instead of asking the user for help. 848a4f78defSmrg# This option is also used when generating formulas in HTML. 849a4f78defSmrg 850a4f78defSmrgLATEX_BATCHMODE = YES 851a4f78defSmrg 852a4f78defSmrg# If LATEX_HIDE_INDICES is set to YES then doxygen will not 853a4f78defSmrg# include the index chapters (such as File Index, Compound Index, etc.) 854a4f78defSmrg# in the output. 855a4f78defSmrg 856a4f78defSmrgLATEX_HIDE_INDICES = NO 857a4f78defSmrg 858a4f78defSmrg#--------------------------------------------------------------------------- 859a4f78defSmrg# configuration options related to the RTF output 860a4f78defSmrg#--------------------------------------------------------------------------- 861a4f78defSmrg 862a4f78defSmrg# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 863a4f78defSmrg# The RTF output is optimized for Word 97 and may not look very pretty with 864a4f78defSmrg# other RTF readers or editors. 865a4f78defSmrg 866a4f78defSmrgGENERATE_RTF = NO 867a4f78defSmrg 868a4f78defSmrg# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 869a4f78defSmrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 870a4f78defSmrg# put in front of it. If left blank `rtf' will be used as the default path. 871a4f78defSmrg 872a4f78defSmrgRTF_OUTPUT = rtf 873a4f78defSmrg 874a4f78defSmrg# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 875a4f78defSmrg# RTF documents. This may be useful for small projects and may help to 876a4f78defSmrg# save some trees in general. 877a4f78defSmrg 878a4f78defSmrgCOMPACT_RTF = NO 879a4f78defSmrg 880a4f78defSmrg# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 881a4f78defSmrg# will contain hyperlink fields. The RTF file will 882a4f78defSmrg# contain links (just like the HTML output) instead of page references. 883a4f78defSmrg# This makes the output suitable for online browsing using WORD or other 884a4f78defSmrg# programs which support those fields. 885a4f78defSmrg# Note: wordpad (write) and others do not support links. 886a4f78defSmrg 887a4f78defSmrgRTF_HYPERLINKS = NO 888a4f78defSmrg 889a4f78defSmrg# Load stylesheet definitions from file. Syntax is similar to doxygen's 890a4f78defSmrg# config file, i.e. a series of assignments. You only have to provide 891a4f78defSmrg# replacements, missing definitions are set to their default value. 892a4f78defSmrg 893a4f78defSmrgRTF_STYLESHEET_FILE = 894a4f78defSmrg 895a4f78defSmrg# Set optional variables used in the generation of an rtf document. 896a4f78defSmrg# Syntax is similar to doxygen's config file. 897a4f78defSmrg 898a4f78defSmrgRTF_EXTENSIONS_FILE = 899a4f78defSmrg 900a4f78defSmrg#--------------------------------------------------------------------------- 901a4f78defSmrg# configuration options related to the man page output 902a4f78defSmrg#--------------------------------------------------------------------------- 903a4f78defSmrg 904a4f78defSmrg# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 905a4f78defSmrg# generate man pages 906a4f78defSmrg 907a4f78defSmrgGENERATE_MAN = NO 908a4f78defSmrg 909a4f78defSmrg# The MAN_OUTPUT tag is used to specify where the man pages will be put. 910a4f78defSmrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 911a4f78defSmrg# put in front of it. If left blank `man' will be used as the default path. 912a4f78defSmrg 913a4f78defSmrgMAN_OUTPUT = man 914a4f78defSmrg 915a4f78defSmrg# The MAN_EXTENSION tag determines the extension that is added to 916a4f78defSmrg# the generated man pages (default is the subroutine's section .3) 917a4f78defSmrg 918a4f78defSmrgMAN_EXTENSION = .3 919a4f78defSmrg 920a4f78defSmrg# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 921a4f78defSmrg# then it will generate one additional man file for each entity 922a4f78defSmrg# documented in the real man page(s). These additional files 923a4f78defSmrg# only source the real man page, but without them the man command 924a4f78defSmrg# would be unable to find the correct page. The default is NO. 925a4f78defSmrg 926a4f78defSmrgMAN_LINKS = NO 927a4f78defSmrg 928a4f78defSmrg#--------------------------------------------------------------------------- 929a4f78defSmrg# configuration options related to the XML output 930a4f78defSmrg#--------------------------------------------------------------------------- 931a4f78defSmrg 932a4f78defSmrg# If the GENERATE_XML tag is set to YES Doxygen will 933a4f78defSmrg# generate an XML file that captures the structure of 934a4f78defSmrg# the code including all documentation. 935a4f78defSmrg 936a4f78defSmrgGENERATE_XML = NO 937a4f78defSmrg 938a4f78defSmrg# The XML_OUTPUT tag is used to specify where the XML pages will be put. 939a4f78defSmrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 940a4f78defSmrg# put in front of it. If left blank `xml' will be used as the default path. 941a4f78defSmrg 942a4f78defSmrgXML_OUTPUT = xml 943a4f78defSmrg 944a4f78defSmrg# The XML_SCHEMA tag can be used to specify an XML schema, 945a4f78defSmrg# which can be used by a validating XML parser to check the 946a4f78defSmrg# syntax of the XML files. 947a4f78defSmrg 948a4f78defSmrgXML_SCHEMA = 949a4f78defSmrg 950a4f78defSmrg# The XML_DTD tag can be used to specify an XML DTD, 951a4f78defSmrg# which can be used by a validating XML parser to check the 952a4f78defSmrg# syntax of the XML files. 953a4f78defSmrg 954a4f78defSmrgXML_DTD = 955a4f78defSmrg 956a4f78defSmrg# If the XML_PROGRAMLISTING tag is set to YES Doxygen will 957a4f78defSmrg# dump the program listings (including syntax highlighting 958a4f78defSmrg# and cross-referencing information) to the XML output. Note that 959a4f78defSmrg# enabling this will significantly increase the size of the XML output. 960a4f78defSmrg 961a4f78defSmrgXML_PROGRAMLISTING = YES 962a4f78defSmrg 963a4f78defSmrg#--------------------------------------------------------------------------- 964a4f78defSmrg# configuration options for the AutoGen Definitions output 965a4f78defSmrg#--------------------------------------------------------------------------- 966a4f78defSmrg 967a4f78defSmrg# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 968a4f78defSmrg# generate an AutoGen Definitions (see autogen.sf.net) file 969a4f78defSmrg# that captures the structure of the code including all 970a4f78defSmrg# documentation. Note that this feature is still experimental 971a4f78defSmrg# and incomplete at the moment. 972a4f78defSmrg 973a4f78defSmrgGENERATE_AUTOGEN_DEF = NO 974a4f78defSmrg 975a4f78defSmrg#--------------------------------------------------------------------------- 976a4f78defSmrg# configuration options related to the Perl module output 977a4f78defSmrg#--------------------------------------------------------------------------- 978a4f78defSmrg 979a4f78defSmrg# If the GENERATE_PERLMOD tag is set to YES Doxygen will 980a4f78defSmrg# generate a Perl module file that captures the structure of 981a4f78defSmrg# the code including all documentation. Note that this 982a4f78defSmrg# feature is still experimental and incomplete at the 983a4f78defSmrg# moment. 984a4f78defSmrg 985a4f78defSmrgGENERATE_PERLMOD = NO 986a4f78defSmrg 987a4f78defSmrg# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 988a4f78defSmrg# the necessary Makefile rules, Perl scripts and LaTeX code to be able 989a4f78defSmrg# to generate PDF and DVI output from the Perl module output. 990a4f78defSmrg 991a4f78defSmrgPERLMOD_LATEX = NO 992a4f78defSmrg 993a4f78defSmrg# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 994a4f78defSmrg# nicely formatted so it can be parsed by a human reader. This is useful 995a4f78defSmrg# if you want to understand what is going on. On the other hand, if this 996a4f78defSmrg# tag is set to NO the size of the Perl module output will be much smaller 997a4f78defSmrg# and Perl will parse it just the same. 998a4f78defSmrg 999a4f78defSmrgPERLMOD_PRETTY = YES 1000a4f78defSmrg 1001a4f78defSmrg# The names of the make variables in the generated doxyrules.make file 1002a4f78defSmrg# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 1003a4f78defSmrg# This is useful so different doxyrules.make files included by the same 1004a4f78defSmrg# Makefile don't overwrite each other's variables. 1005a4f78defSmrg 1006a4f78defSmrgPERLMOD_MAKEVAR_PREFIX = 1007a4f78defSmrg 1008a4f78defSmrg#--------------------------------------------------------------------------- 1009a4f78defSmrg# Configuration options related to the preprocessor 1010a4f78defSmrg#--------------------------------------------------------------------------- 1011a4f78defSmrg 1012a4f78defSmrg# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 1013a4f78defSmrg# evaluate all C-preprocessor directives found in the sources and include 1014a4f78defSmrg# files. 1015a4f78defSmrg 1016a4f78defSmrgENABLE_PREPROCESSING = YES 1017a4f78defSmrg 1018a4f78defSmrg# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 1019a4f78defSmrg# names in the source code. If set to NO (the default) only conditional 1020a4f78defSmrg# compilation will be performed. Macro expansion can be done in a controlled 1021a4f78defSmrg# way by setting EXPAND_ONLY_PREDEF to YES. 1022a4f78defSmrg 1023a4f78defSmrgMACRO_EXPANSION = NO 1024a4f78defSmrg 1025a4f78defSmrg# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 1026a4f78defSmrg# then the macro expansion is limited to the macros specified with the 1027a4f78defSmrg# PREDEFINED and EXPAND_AS_DEFINED tags. 1028a4f78defSmrg 1029a4f78defSmrgEXPAND_ONLY_PREDEF = NO 1030a4f78defSmrg 1031a4f78defSmrg# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 1032a4f78defSmrg# in the INCLUDE_PATH (see below) will be search if a #include is found. 1033a4f78defSmrg 1034a4f78defSmrgSEARCH_INCLUDES = YES 1035a4f78defSmrg 1036a4f78defSmrg# The INCLUDE_PATH tag can be used to specify one or more directories that 1037a4f78defSmrg# contain include files that are not input files but should be processed by 1038a4f78defSmrg# the preprocessor. 1039a4f78defSmrg 1040a4f78defSmrgINCLUDE_PATH = . 1041a4f78defSmrg 1042a4f78defSmrg# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 1043a4f78defSmrg# patterns (like *.h and *.hpp) to filter out the header-files in the 1044a4f78defSmrg# directories. If left blank, the patterns specified with FILE_PATTERNS will 1045a4f78defSmrg# be used. 1046a4f78defSmrg 1047a4f78defSmrgINCLUDE_FILE_PATTERNS = 1048a4f78defSmrg 1049a4f78defSmrg# The PREDEFINED tag can be used to specify one or more macro names that 1050a4f78defSmrg# are defined before the preprocessor is started (similar to the -D option of 1051a4f78defSmrg# gcc). The argument of the tag is a list of macros of the form: name 1052a4f78defSmrg# or name=definition (no spaces). If the definition and the = are 1053a4f78defSmrg# omitted =1 is assumed. To prevent a macro definition from being 1054a4f78defSmrg# undefined via #undef or recursively expanded use the := operator 1055a4f78defSmrg# instead of the = operator. 1056a4f78defSmrg 1057a4f78defSmrgPREDEFINED = HIDE_FROM_DOXYGEN 1058a4f78defSmrg 1059a4f78defSmrg# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 1060a4f78defSmrg# this tag can be used to specify a list of macro names that should be expanded. 1061a4f78defSmrg# The macro definition that is found in the sources will be used. 1062a4f78defSmrg# Use the PREDEFINED tag if you want to use a different macro definition. 1063a4f78defSmrg 1064a4f78defSmrgEXPAND_AS_DEFINED = 1065a4f78defSmrg 1066a4f78defSmrg# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 1067a4f78defSmrg# doxygen's preprocessor will remove all function-like macros that are alone 1068a4f78defSmrg# on a line, have an all uppercase name, and do not end with a semicolon. Such 1069a4f78defSmrg# function macros are typically used for boiler-plate code, and will confuse 1070a4f78defSmrg# the parser if not removed. 1071a4f78defSmrg 1072a4f78defSmrgSKIP_FUNCTION_MACROS = YES 1073a4f78defSmrg 1074a4f78defSmrg#--------------------------------------------------------------------------- 1075a4f78defSmrg# Configuration::additions related to external references 1076a4f78defSmrg#--------------------------------------------------------------------------- 1077a4f78defSmrg 1078a4f78defSmrg# The TAGFILES option can be used to specify one or more tagfiles. 1079a4f78defSmrg# Optionally an initial location of the external documentation 1080a4f78defSmrg# can be added for each tagfile. The format of a tag file without 1081a4f78defSmrg# this location is as follows: 1082a4f78defSmrg# TAGFILES = file1 file2 ... 1083a4f78defSmrg# Adding location for the tag files is done as follows: 1084a4f78defSmrg# TAGFILES = file1=loc1 "file2 = loc2" ... 1085a4f78defSmrg# where "loc1" and "loc2" can be relative or absolute paths or 1086a4f78defSmrg# URLs. If a location is present for each tag, the installdox tool 1087a4f78defSmrg# does not have to be run to correct the links. 1088a4f78defSmrg# Note that each tag file must have a unique name 1089a4f78defSmrg# (where the name does NOT include the path) 1090a4f78defSmrg# If a tag file is not located in the directory in which doxygen 1091a4f78defSmrg# is run, you must also specify the path to the tagfile here. 1092a4f78defSmrg 1093a4f78defSmrgTAGFILES = 1094a4f78defSmrg 1095a4f78defSmrg# When a file name is specified after GENERATE_TAGFILE, doxygen will create 1096a4f78defSmrg# a tag file that is based on the input files it reads. 1097a4f78defSmrg 1098a4f78defSmrgGENERATE_TAGFILE = 1099a4f78defSmrg 1100a4f78defSmrg# If the ALLEXTERNALS tag is set to YES all external classes will be listed 1101a4f78defSmrg# in the class index. If set to NO only the inherited external classes 1102a4f78defSmrg# will be listed. 1103a4f78defSmrg 1104a4f78defSmrgALLEXTERNALS = NO 1105a4f78defSmrg 1106a4f78defSmrg# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 1107a4f78defSmrg# in the modules index. If set to NO, only the current project's groups will 1108a4f78defSmrg# be listed. 1109a4f78defSmrg 1110a4f78defSmrgEXTERNAL_GROUPS = YES 1111a4f78defSmrg 1112a4f78defSmrg# The PERL_PATH should be the absolute path and name of the perl script 1113a4f78defSmrg# interpreter (i.e. the result of `which perl'). 1114a4f78defSmrg 1115a4f78defSmrgPERL_PATH = /usr/bin/perl 1116a4f78defSmrg 1117a4f78defSmrg#--------------------------------------------------------------------------- 1118a4f78defSmrg# Configuration options related to the dot tool 1119a4f78defSmrg#--------------------------------------------------------------------------- 1120a4f78defSmrg 1121a4f78defSmrg# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 1122a4f78defSmrg# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 1123a4f78defSmrg# or super classes. Setting the tag to NO turns the diagrams off. Note that 1124a4f78defSmrg# this option is superseded by the HAVE_DOT option below. This is only a 1125a4f78defSmrg# fallback. It is recommended to install and use dot, since it yields more 1126a4f78defSmrg# powerful graphs. 1127a4f78defSmrg 1128a4f78defSmrgCLASS_DIAGRAMS = YES 1129a4f78defSmrg 1130a4f78defSmrg# You can define message sequence charts within doxygen comments using the \msc 1131a4f78defSmrg# command. Doxygen will then run the mscgen tool (see http://www.mcternan.me.uk/mscgen/) to 1132a4f78defSmrg# produce the chart and insert it in the documentation. The MSCGEN_PATH tag allows you to 1133a4f78defSmrg# specify the directory where the mscgen tool resides. If left empty the tool is assumed to 1134a4f78defSmrg# be found in the default search path. 1135a4f78defSmrg 1136a4f78defSmrgMSCGEN_PATH = 1137a4f78defSmrg 1138a4f78defSmrg# If set to YES, the inheritance and collaboration graphs will hide 1139a4f78defSmrg# inheritance and usage relations if the target is undocumented 1140a4f78defSmrg# or is not a class. 1141a4f78defSmrg 1142a4f78defSmrgHIDE_UNDOC_RELATIONS = YES 1143a4f78defSmrg 1144a4f78defSmrg# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 1145a4f78defSmrg# available from the path. This tool is part of Graphviz, a graph visualization 1146a4f78defSmrg# toolkit from AT&T and Lucent Bell Labs. The other options in this section 1147a4f78defSmrg# have no effect if this option is set to NO (the default) 1148a4f78defSmrg 1149a4f78defSmrgHAVE_DOT = YES 1150a4f78defSmrg 1151a4f78defSmrg# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 1152a4f78defSmrg# will generate a graph for each documented class showing the direct and 1153a4f78defSmrg# indirect inheritance relations. Setting this tag to YES will force the 1154a4f78defSmrg# the CLASS_DIAGRAMS tag to NO. 1155a4f78defSmrg 1156a4f78defSmrgCLASS_GRAPH = YES 1157a4f78defSmrg 1158a4f78defSmrg# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 1159a4f78defSmrg# will generate a graph for each documented class showing the direct and 1160a4f78defSmrg# indirect implementation dependencies (inheritance, containment, and 1161a4f78defSmrg# class references variables) of the class with other documented classes. 1162a4f78defSmrg 1163a4f78defSmrgCOLLABORATION_GRAPH = NO 1164a4f78defSmrg 1165a4f78defSmrg# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 1166a4f78defSmrg# will generate a graph for groups, showing the direct groups dependencies 1167a4f78defSmrg 1168a4f78defSmrgGROUP_GRAPHS = YES 1169a4f78defSmrg 1170a4f78defSmrg# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 1171a4f78defSmrg# collaboration diagrams in a style similar to the OMG's Unified Modeling 1172a4f78defSmrg# Language. 1173a4f78defSmrg 1174a4f78defSmrgUML_LOOK = NO 1175a4f78defSmrg 1176a4f78defSmrg# If set to YES, the inheritance and collaboration graphs will show the 1177a4f78defSmrg# relations between templates and their instances. 1178a4f78defSmrg 1179a4f78defSmrgTEMPLATE_RELATIONS = NO 1180a4f78defSmrg 1181a4f78defSmrg# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 1182a4f78defSmrg# tags are set to YES then doxygen will generate a graph for each documented 1183a4f78defSmrg# file showing the direct and indirect include dependencies of the file with 1184a4f78defSmrg# other documented files. 1185a4f78defSmrg 1186a4f78defSmrgINCLUDE_GRAPH = YES 1187a4f78defSmrg 1188a4f78defSmrg# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 1189a4f78defSmrg# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 1190a4f78defSmrg# documented header file showing the documented files that directly or 1191a4f78defSmrg# indirectly include this file. 1192a4f78defSmrg 1193a4f78defSmrgINCLUDED_BY_GRAPH = YES 1194a4f78defSmrg 1195a4f78defSmrg# If the CALL_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will 1196a4f78defSmrg# generate a call dependency graph for every global function or class method. 1197a4f78defSmrg# Note that enabling this option will significantly increase the time of a run. 1198a4f78defSmrg# So in most cases it will be better to enable call graphs for selected 1199a4f78defSmrg# functions only using the \callgraph command. 1200a4f78defSmrg 1201a4f78defSmrgCALL_GRAPH = NO 1202a4f78defSmrg 1203a4f78defSmrg# If the CALLER_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will 1204a4f78defSmrg# generate a caller dependency graph for every global function or class method. 1205a4f78defSmrg# Note that enabling this option will significantly increase the time of a run. 1206a4f78defSmrg# So in most cases it will be better to enable caller graphs for selected 1207a4f78defSmrg# functions only using the \callergraph command. 1208a4f78defSmrg 1209a4f78defSmrgCALLER_GRAPH = NO 1210a4f78defSmrg 1211a4f78defSmrg# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 1212a4f78defSmrg# will graphical hierarchy of all classes instead of a textual one. 1213a4f78defSmrg 1214a4f78defSmrgGRAPHICAL_HIERARCHY = YES 1215a4f78defSmrg 1216a4f78defSmrg# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 1217a4f78defSmrg# then doxygen will show the dependencies a directory has on other directories 1218a4f78defSmrg# in a graphical way. The dependency relations are determined by the #include 1219a4f78defSmrg# relations between the files in the directories. 1220a4f78defSmrg 1221a4f78defSmrgDIRECTORY_GRAPH = YES 1222a4f78defSmrg 1223a4f78defSmrg# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 1224a4f78defSmrg# generated by dot. Possible values are png, jpg, or gif 1225a4f78defSmrg# If left blank png will be used. 1226a4f78defSmrg 1227a4f78defSmrgDOT_IMAGE_FORMAT = png 1228a4f78defSmrg 1229a4f78defSmrg# The tag DOT_PATH can be used to specify the path where the dot tool can be 1230a4f78defSmrg# found. If left blank, it is assumed the dot tool can be found in the path. 1231a4f78defSmrg 1232a4f78defSmrgDOT_PATH = 1233a4f78defSmrg 1234a4f78defSmrg# The DOTFILE_DIRS tag can be used to specify one or more directories that 1235a4f78defSmrg# contain dot files that are included in the documentation (see the 1236a4f78defSmrg# \dotfile command). 1237a4f78defSmrg 1238a4f78defSmrgDOTFILE_DIRS = 1239a4f78defSmrg 1240a4f78defSmrg# The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of 1241a4f78defSmrg# nodes that will be shown in the graph. If the number of nodes in a graph 1242a4f78defSmrg# becomes larger than this value, doxygen will truncate the graph, which is 1243a4f78defSmrg# visualized by representing a node as a red box. Note that doxygen if the number 1244a4f78defSmrg# of direct children of the root node in a graph is already larger than 1245a4f78defSmrg# MAX_DOT_GRAPH_NOTES then the graph will not be shown at all. Also note 1246a4f78defSmrg# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 1247a4f78defSmrg 1248a4f78defSmrgDOT_GRAPH_MAX_NODES = 50 1249a4f78defSmrg 1250a4f78defSmrg# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1251a4f78defSmrg# graphs generated by dot. A depth value of 3 means that only nodes reachable 1252a4f78defSmrg# from the root by following a path via at most 3 edges will be shown. Nodes 1253a4f78defSmrg# that lay further from the root node will be omitted. Note that setting this 1254a4f78defSmrg# option to 1 or 2 may greatly reduce the computation time needed for large 1255a4f78defSmrg# code bases. Also note that the size of a graph can be further restricted by 1256a4f78defSmrg# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 1257a4f78defSmrg 1258a4f78defSmrgMAX_DOT_GRAPH_DEPTH = 0 1259a4f78defSmrg 1260a4f78defSmrg# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 1261a4f78defSmrg# background. This is disabled by default, which results in a white background. 1262a4f78defSmrg# Warning: Depending on the platform used, enabling this option may lead to 1263a4f78defSmrg# badly anti-aliased labels on the edges of a graph (i.e. they become hard to 1264a4f78defSmrg# read). 1265a4f78defSmrg 1266a4f78defSmrgDOT_TRANSPARENT = NO 1267a4f78defSmrg 1268a4f78defSmrg# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 1269a4f78defSmrg# files in one run (i.e. multiple -o and -T options on the command line). This 1270a4f78defSmrg# makes dot run faster, but since only newer versions of dot (>1.8.10) 1271a4f78defSmrg# support this, this feature is disabled by default. 1272a4f78defSmrg 1273a4f78defSmrgDOT_MULTI_TARGETS = NO 1274a4f78defSmrg 1275a4f78defSmrg# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 1276a4f78defSmrg# generate a legend page explaining the meaning of the various boxes and 1277a4f78defSmrg# arrows in the dot generated graphs. 1278a4f78defSmrg 1279a4f78defSmrgGENERATE_LEGEND = YES 1280a4f78defSmrg 1281a4f78defSmrg# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 1282a4f78defSmrg# remove the intermediate dot files that are used to generate 1283a4f78defSmrg# the various graphs. 1284a4f78defSmrg 1285a4f78defSmrgDOT_CLEANUP = YES 1286a4f78defSmrg 1287a4f78defSmrg#--------------------------------------------------------------------------- 1288a4f78defSmrg# Configuration::additions related to the search engine 1289a4f78defSmrg#--------------------------------------------------------------------------- 1290a4f78defSmrg 1291a4f78defSmrg# The SEARCHENGINE tag specifies whether or not a search engine should be 1292a4f78defSmrg# used. If set to NO the values of all tags below this one will be ignored. 1293a4f78defSmrg 1294a4f78defSmrgSEARCHENGINE = NO 1295a4f78defSmrg 1296