1*01ff933cSJeremy L Thompson# Doxyfile 1.9.5 2afef199bSTzanio 3afef199bSTzanio# This file describes the settings to be used by the documentation system 4afef199bSTzanio# doxygen (www.doxygen.org) for a project. 5afef199bSTzanio# 6afef199bSTzanio# All text after a double hash (##) is considered a comment and is placed in 7afef199bSTzanio# front of the TAG it is preceding. 8afef199bSTzanio# 9afef199bSTzanio# All text after a single hash (#) is considered a comment and will be ignored. 10afef199bSTzanio# The format is: 11afef199bSTzanio# TAG = value [value, ...] 12afef199bSTzanio# For lists, items can also be appended using: 13afef199bSTzanio# TAG += value [value, ...] 14afef199bSTzanio# Values that contain spaces should be placed between quotes (\" \"). 15*01ff933cSJeremy L Thompson# 16*01ff933cSJeremy L Thompson# Note: 17*01ff933cSJeremy L Thompson# 18*01ff933cSJeremy L Thompson# Use doxygen to compare the used configuration file with the template 19*01ff933cSJeremy L Thompson# configuration file: 20*01ff933cSJeremy L Thompson# doxygen -x [configFile] 21*01ff933cSJeremy L Thompson# Use doxygen to compare the used configuration file with the template 22*01ff933cSJeremy L Thompson# configuration file without replacing the environment variables or CMake type 23*01ff933cSJeremy L Thompson# replacement variables: 24*01ff933cSJeremy L Thompson# doxygen -x_noenv [configFile] 25afef199bSTzanio 26afef199bSTzanio#--------------------------------------------------------------------------- 27afef199bSTzanio# Project related configuration options 28afef199bSTzanio#--------------------------------------------------------------------------- 29afef199bSTzanio 30288c0443SJeremy L Thompson# This tag specifies the encoding used for all characters in the configuration 31288c0443SJeremy L Thompson# file that follow. The default is UTF-8 which is also the encoding used for all 32288c0443SJeremy L Thompson# text before the first occurrence of this tag. Doxygen uses libiconv (or the 33288c0443SJeremy L Thompson# iconv built into libc) for the transcoding. See 34288c0443SJeremy L Thompson# https://www.gnu.org/software/libiconv/ for the list of possible encodings. 35afef199bSTzanio# The default value is: UTF-8. 36afef199bSTzanio 37afef199bSTzanioDOXYFILE_ENCODING = UTF-8 38afef199bSTzanio 39afef199bSTzanio# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 40afef199bSTzanio# double-quotes, unless you are using Doxywizard) that should identify the 41afef199bSTzanio# project for which the documentation is generated. This name is used in the 42afef199bSTzanio# title of most generated pages and in a few other places. 43afef199bSTzanio# The default value is: My Project. 44afef199bSTzanio 45b52d7143SJeremy L ThompsonPROJECT_NAME = libCEED 46afef199bSTzanio 47afef199bSTzanio# The PROJECT_NUMBER tag can be used to enter a project or revision number. This 48afef199bSTzanio# could be handy for archiving the generated documentation or if some version 49afef199bSTzanio# control system is used. 50afef199bSTzanio 51f374d6a3SJeremy L ThompsonPROJECT_NUMBER = v0.10.1 52afef199bSTzanio 53afef199bSTzanio# Using the PROJECT_BRIEF tag one can provide an optional one line description 54afef199bSTzanio# for a project that appears at the top of each page and should give viewer a 55afef199bSTzanio# quick idea about the purpose of the project. Keep the description short. 56afef199bSTzanio 57afef199bSTzanioPROJECT_BRIEF = "Code for Efficient Extensible Discretizations" 58afef199bSTzanio 59afef199bSTzanio# With the PROJECT_LOGO tag one can specify a logo or an icon that is included 60afef199bSTzanio# in the documentation. The maximum height of the logo should not exceed 55 61afef199bSTzanio# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy 62afef199bSTzanio# the logo to the output directory. 63afef199bSTzanio 64288c0443SJeremy L ThompsonPROJECT_LOGO = doc/img/logo.svg 65afef199bSTzanio 66afef199bSTzanio# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path 67afef199bSTzanio# into which the generated documentation will be written. If a relative path is 68afef199bSTzanio# entered, it will be relative to the location where doxygen was started. If 69afef199bSTzanio# left blank the current directory will be used. 70afef199bSTzanio 71afef199bSTzanioOUTPUT_DIRECTORY = . 72afef199bSTzanio 73*01ff933cSJeremy L Thompson# If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096 74*01ff933cSJeremy L Thompson# sub-directories (in 2 levels) under the output directory of each output format 75*01ff933cSJeremy L Thompson# and will distribute the generated files over these directories. Enabling this 76afef199bSTzanio# option can be useful when feeding doxygen a huge amount of source files, where 77afef199bSTzanio# putting all generated files in the same directory would otherwise causes 78*01ff933cSJeremy L Thompson# performance problems for the file system. Adapt CREATE_SUBDIRS_LEVEL to 79*01ff933cSJeremy L Thompson# control the number of sub-directories. 80afef199bSTzanio# The default value is: NO. 81afef199bSTzanio 82afef199bSTzanioCREATE_SUBDIRS = NO 83afef199bSTzanio 84*01ff933cSJeremy L Thompson# Controls the number of sub-directories that will be created when 85*01ff933cSJeremy L Thompson# CREATE_SUBDIRS tag is set to YES. Level 0 represents 16 directories, and every 86*01ff933cSJeremy L Thompson# level increment doubles the number of directories, resulting in 4096 87*01ff933cSJeremy L Thompson# directories at level 8 which is the default and also the maximum value. The 88*01ff933cSJeremy L Thompson# sub-directories are organized in 2 levels, the first level always has a fixed 89*01ff933cSJeremy L Thompson# numer of 16 directories. 90*01ff933cSJeremy L Thompson# Minimum value: 0, maximum value: 8, default value: 8. 91*01ff933cSJeremy L Thompson# This tag requires that the tag CREATE_SUBDIRS is set to YES. 92*01ff933cSJeremy L Thompson 93*01ff933cSJeremy L ThompsonCREATE_SUBDIRS_LEVEL = 8 94*01ff933cSJeremy L Thompson 95afef199bSTzanio# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 96afef199bSTzanio# characters to appear in the names of generated files. If set to NO, non-ASCII 97afef199bSTzanio# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode 98afef199bSTzanio# U+3044. 99afef199bSTzanio# The default value is: NO. 100afef199bSTzanio 101afef199bSTzanioALLOW_UNICODE_NAMES = NO 102afef199bSTzanio 103afef199bSTzanio# The OUTPUT_LANGUAGE tag is used to specify the language in which all 104afef199bSTzanio# documentation generated by doxygen is written. Doxygen will use this 105afef199bSTzanio# information to generate all constant output in the proper language. 106*01ff933cSJeremy L Thompson# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Bulgarian, 107*01ff933cSJeremy L Thompson# Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, English 108*01ff933cSJeremy L Thompson# (United States), Esperanto, Farsi (Persian), Finnish, French, German, Greek, 109*01ff933cSJeremy L Thompson# Hindi, Hungarian, Indonesian, Italian, Japanese, Japanese-en (Japanese with 110*01ff933cSJeremy L Thompson# English messages), Korean, Korean-en (Korean with English messages), Latvian, 111*01ff933cSJeremy L Thompson# Lithuanian, Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, 112*01ff933cSJeremy L Thompson# Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, 113*01ff933cSJeremy L Thompson# Swedish, Turkish, Ukrainian and Vietnamese. 114afef199bSTzanio# The default value is: English. 115afef199bSTzanio 116afef199bSTzanioOUTPUT_LANGUAGE = English 117afef199bSTzanio 118afef199bSTzanio# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member 119afef199bSTzanio# descriptions after the members that are listed in the file and class 120afef199bSTzanio# documentation (similar to Javadoc). Set to NO to disable this. 121afef199bSTzanio# The default value is: YES. 122afef199bSTzanio 123afef199bSTzanioBRIEF_MEMBER_DESC = YES 124afef199bSTzanio 125afef199bSTzanio# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief 126afef199bSTzanio# description of a member or function before the detailed description 127afef199bSTzanio# 128afef199bSTzanio# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 129afef199bSTzanio# brief descriptions will be completely suppressed. 130afef199bSTzanio# The default value is: YES. 131afef199bSTzanio 132afef199bSTzanioREPEAT_BRIEF = YES 133afef199bSTzanio 134afef199bSTzanio# This tag implements a quasi-intelligent brief description abbreviator that is 135afef199bSTzanio# used to form the text in various listings. Each string in this list, if found 136afef199bSTzanio# as the leading text of the brief description, will be stripped from the text 137afef199bSTzanio# and the result, after processing the whole list, is used as the annotated 138afef199bSTzanio# text. Otherwise, the brief description is used as-is. If left blank, the 139afef199bSTzanio# following values are used ($name is automatically replaced with the name of 140afef199bSTzanio# the entity):The $name class, The $name widget, The $name file, is, provides, 141afef199bSTzanio# specifies, contains, represents, a, an and the. 142afef199bSTzanio 143afef199bSTzanioABBREVIATE_BRIEF = "The $name class" \ 144afef199bSTzanio "The $name widget" \ 145afef199bSTzanio "The $name file" \ 146afef199bSTzanio is \ 147afef199bSTzanio provides \ 148afef199bSTzanio specifies \ 149afef199bSTzanio contains \ 150afef199bSTzanio represents \ 151afef199bSTzanio a \ 152afef199bSTzanio an \ 153afef199bSTzanio the 154afef199bSTzanio 155afef199bSTzanio# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 156afef199bSTzanio# doxygen will generate a detailed section even if there is only a brief 157afef199bSTzanio# description. 158afef199bSTzanio# The default value is: NO. 159afef199bSTzanio 160afef199bSTzanioALWAYS_DETAILED_SEC = NO 161afef199bSTzanio 162afef199bSTzanio# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 163afef199bSTzanio# inherited members of a class in the documentation of that class as if those 164afef199bSTzanio# members were ordinary class members. Constructors, destructors and assignment 165afef199bSTzanio# operators of the base classes will not be shown. 166afef199bSTzanio# The default value is: NO. 167afef199bSTzanio 168afef199bSTzanioINLINE_INHERITED_MEMB = NO 169afef199bSTzanio 170afef199bSTzanio# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path 171afef199bSTzanio# before files name in the file list and in the header files. If set to NO the 172afef199bSTzanio# shortest path that makes the file name unique will be used 173afef199bSTzanio# The default value is: YES. 174afef199bSTzanio 175afef199bSTzanioFULL_PATH_NAMES = YES 176afef199bSTzanio 177afef199bSTzanio# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. 178afef199bSTzanio# Stripping is only done if one of the specified strings matches the left-hand 179afef199bSTzanio# part of the path. The tag can be used to show relative paths in the file list. 180afef199bSTzanio# If left blank the directory from which doxygen is run is used as the path to 181afef199bSTzanio# strip. 182afef199bSTzanio# 183afef199bSTzanio# Note that you can specify absolute paths here, but also relative paths, which 184afef199bSTzanio# will be relative from the directory where doxygen is started. 185afef199bSTzanio# This tag requires that the tag FULL_PATH_NAMES is set to YES. 186afef199bSTzanio 187afef199bSTzanioSTRIP_FROM_PATH = 188afef199bSTzanio 189afef199bSTzanio# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the 190afef199bSTzanio# path mentioned in the documentation of a class, which tells the reader which 191afef199bSTzanio# header file to include in order to use a class. If left blank only the name of 192afef199bSTzanio# the header file containing the class definition is used. Otherwise one should 193afef199bSTzanio# specify the list of include paths that are normally passed to the compiler 194afef199bSTzanio# using the -I flag. 195afef199bSTzanio 196afef199bSTzanioSTRIP_FROM_INC_PATH = 197afef199bSTzanio 198afef199bSTzanio# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but 199afef199bSTzanio# less readable) file names. This can be useful is your file systems doesn't 200afef199bSTzanio# support long names like on DOS, Mac, or CD-ROM. 201afef199bSTzanio# The default value is: NO. 202afef199bSTzanio 203afef199bSTzanioSHORT_NAMES = NO 204afef199bSTzanio 205afef199bSTzanio# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the 206afef199bSTzanio# first line (until the first dot) of a Javadoc-style comment as the brief 207afef199bSTzanio# description. If set to NO, the Javadoc-style will behave just like regular Qt- 208afef199bSTzanio# style comments (thus requiring an explicit @brief command for a brief 209afef199bSTzanio# description.) 210afef199bSTzanio# The default value is: NO. 211afef199bSTzanio 212afef199bSTzanioJAVADOC_AUTOBRIEF = YES 213afef199bSTzanio 214288c0443SJeremy L Thompson# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line 215288c0443SJeremy L Thompson# such as 216288c0443SJeremy L Thompson# /*************** 217288c0443SJeremy L Thompson# as being the beginning of a Javadoc-style comment "banner". If set to NO, the 218288c0443SJeremy L Thompson# Javadoc-style will behave just like regular comments and it will not be 219288c0443SJeremy L Thompson# interpreted by doxygen. 220288c0443SJeremy L Thompson# The default value is: NO. 221288c0443SJeremy L Thompson 222288c0443SJeremy L ThompsonJAVADOC_BANNER = NO 223288c0443SJeremy L Thompson 224afef199bSTzanio# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first 225afef199bSTzanio# line (until the first dot) of a Qt-style comment as the brief description. If 226afef199bSTzanio# set to NO, the Qt-style will behave just like regular Qt-style comments (thus 227afef199bSTzanio# requiring an explicit \brief command for a brief description.) 228afef199bSTzanio# The default value is: NO. 229afef199bSTzanio 230afef199bSTzanioQT_AUTOBRIEF = NO 231afef199bSTzanio 232afef199bSTzanio# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a 233afef199bSTzanio# multi-line C++ special comment block (i.e. a block of //! or /// comments) as 234afef199bSTzanio# a brief description. This used to be the default behavior. The new default is 235afef199bSTzanio# to treat a multi-line C++ comment block as a detailed description. Set this 236afef199bSTzanio# tag to YES if you prefer the old behavior instead. 237afef199bSTzanio# 238afef199bSTzanio# Note that setting this tag to YES also means that rational rose comments are 239afef199bSTzanio# not recognized any more. 240afef199bSTzanio# The default value is: NO. 241afef199bSTzanio 242afef199bSTzanioMULTILINE_CPP_IS_BRIEF = NO 243afef199bSTzanio 244b52d7143SJeremy L Thompson# By default Python docstrings are displayed as preformatted text and doxygen's 245b52d7143SJeremy L Thompson# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the 246b52d7143SJeremy L Thompson# doxygen's special commands can be used and the contents of the docstring 247b52d7143SJeremy L Thompson# documentation blocks is shown as doxygen documentation. 248b52d7143SJeremy L Thompson# The default value is: YES. 249b52d7143SJeremy L Thompson 250b52d7143SJeremy L ThompsonPYTHON_DOCSTRING = YES 251b52d7143SJeremy L Thompson 252afef199bSTzanio# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the 253afef199bSTzanio# documentation from any documented member that it re-implements. 254afef199bSTzanio# The default value is: YES. 255afef199bSTzanio 256afef199bSTzanioINHERIT_DOCS = YES 257afef199bSTzanio 258afef199bSTzanio# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new 259afef199bSTzanio# page for each member. If set to NO, the documentation of a member will be part 260afef199bSTzanio# of the file/class/namespace that contains it. 261afef199bSTzanio# The default value is: NO. 262afef199bSTzanio 263afef199bSTzanioSEPARATE_MEMBER_PAGES = NO 264afef199bSTzanio 265afef199bSTzanio# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen 266afef199bSTzanio# uses this value to replace tabs by spaces in code fragments. 267afef199bSTzanio# Minimum value: 1, maximum value: 16, default value: 4. 268afef199bSTzanio 269afef199bSTzanioTAB_SIZE = 2 270afef199bSTzanio 271afef199bSTzanio# This tag can be used to specify a number of aliases that act as commands in 272afef199bSTzanio# the documentation. An alias has the form: 273afef199bSTzanio# name=value 274afef199bSTzanio# For example adding 275b52d7143SJeremy L Thompson# "sideeffect=@par Side Effects:^^" 276afef199bSTzanio# will allow you to put the command \sideeffect (or @sideeffect) in the 277afef199bSTzanio# documentation, which will result in a user-defined paragraph with heading 278b52d7143SJeremy L Thompson# "Side Effects:". Note that you cannot put \n's in the value part of an alias 279b52d7143SJeremy L Thompson# to insert newlines (in the resulting output). You can put ^^ in the value part 280b52d7143SJeremy L Thompson# of an alias to insert a newline as if a physical newline was in the original 281b52d7143SJeremy L Thompson# file. When you need a literal { or } or , in the value part of an alias you 282b52d7143SJeremy L Thompson# have to escape them by means of a backslash (\), this can lead to conflicts 283b52d7143SJeremy L Thompson# with the commands \{ and \} for these it is advised to use the version @{ and 284b52d7143SJeremy L Thompson# @} or use a double escape (\\{ and \\}) 285afef199bSTzanio 286afef199bSTzanioALIASES = 287afef199bSTzanio 288afef199bSTzanio# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 289afef199bSTzanio# only. Doxygen will then generate output that is more tailored for C. For 290afef199bSTzanio# instance, some of the names that are used will be different. The list of all 291afef199bSTzanio# members will be omitted, etc. 292afef199bSTzanio# The default value is: NO. 293afef199bSTzanio 294afef199bSTzanioOPTIMIZE_OUTPUT_FOR_C = NO 295afef199bSTzanio 296afef199bSTzanio# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or 297afef199bSTzanio# Python sources only. Doxygen will then generate output that is more tailored 298afef199bSTzanio# for that language. For instance, namespaces will be presented as packages, 299afef199bSTzanio# qualified scopes will look different, etc. 300afef199bSTzanio# The default value is: NO. 301afef199bSTzanio 302afef199bSTzanioOPTIMIZE_OUTPUT_JAVA = NO 303afef199bSTzanio 304afef199bSTzanio# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran 305afef199bSTzanio# sources. Doxygen will then generate output that is tailored for Fortran. 306afef199bSTzanio# The default value is: NO. 307afef199bSTzanio 3085d6bafb2SjeremyltOPTIMIZE_FOR_FORTRAN = YES 309afef199bSTzanio 310afef199bSTzanio# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL 311afef199bSTzanio# sources. Doxygen will then generate output that is tailored for VHDL. 312afef199bSTzanio# The default value is: NO. 313afef199bSTzanio 314afef199bSTzanioOPTIMIZE_OUTPUT_VHDL = NO 315afef199bSTzanio 316288c0443SJeremy L Thompson# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice 317288c0443SJeremy L Thompson# sources only. Doxygen will then generate output that is more tailored for that 318288c0443SJeremy L Thompson# language. For instance, namespaces will be presented as modules, types will be 319288c0443SJeremy L Thompson# separated into more groups, etc. 320288c0443SJeremy L Thompson# The default value is: NO. 321288c0443SJeremy L Thompson 322288c0443SJeremy L ThompsonOPTIMIZE_OUTPUT_SLICE = NO 323288c0443SJeremy L Thompson 324afef199bSTzanio# Doxygen selects the parser to use depending on the extension of the files it 325afef199bSTzanio# parses. With this tag you can assign which parser to use for a given 326afef199bSTzanio# extension. Doxygen has a built-in mapping, but you can override or extend it 327afef199bSTzanio# using this tag. The format is ext=language, where ext is a file extension, and 328b52d7143SJeremy L Thompson# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, 329b52d7143SJeremy L Thompson# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice, 330b52d7143SJeremy L Thompson# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: 331288c0443SJeremy L Thompson# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser 332288c0443SJeremy L Thompson# tries to guess whether the code is fixed or free formatted code, this is the 333b52d7143SJeremy L Thompson# default for Fortran type files). For instance to make doxygen treat .inc files 334b52d7143SJeremy L Thompson# as Fortran files (default is PHP), and .f files as C (default is Fortran), 335b52d7143SJeremy L Thompson# use: inc=Fortran f=C. 336afef199bSTzanio# 337afef199bSTzanio# Note: For files without extension you can use no_extension as a placeholder. 338afef199bSTzanio# 339afef199bSTzanio# Note that for custom extensions you also need to set FILE_PATTERNS otherwise 340b52d7143SJeremy L Thompson# the files are not read by doxygen. When specifying no_extension you should add 341b52d7143SJeremy L Thompson# * to the FILE_PATTERNS. 342b52d7143SJeremy L Thompson# 343b52d7143SJeremy L Thompson# Note see also the list of default file extension mappings. 344afef199bSTzanio 345288c0443SJeremy L ThompsonEXTENSION_MAPPING = f=FortranFixed \ 346288c0443SJeremy L Thompson usr=FortranFixed 347afef199bSTzanio 348afef199bSTzanio# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments 349afef199bSTzanio# according to the Markdown format, which allows for more readable 350288c0443SJeremy L Thompson# documentation. See https://daringfireball.net/projects/markdown/ for details. 351afef199bSTzanio# The output of markdown processing is further processed by doxygen, so you can 352afef199bSTzanio# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in 353afef199bSTzanio# case of backward compatibilities issues. 354afef199bSTzanio# The default value is: YES. 355afef199bSTzanio 356afef199bSTzanioMARKDOWN_SUPPORT = YES 357afef199bSTzanio 358afef199bSTzanio# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up 359afef199bSTzanio# to that level are automatically included in the table of contents, even if 360afef199bSTzanio# they do not have an id attribute. 361afef199bSTzanio# Note: This feature currently applies only to Markdown headings. 362288c0443SJeremy L Thompson# Minimum value: 0, maximum value: 99, default value: 5. 363afef199bSTzanio# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. 364afef199bSTzanio 365afef199bSTzanioTOC_INCLUDE_HEADINGS = 0 366afef199bSTzanio 367afef199bSTzanio# When enabled doxygen tries to link words that correspond to documented 368afef199bSTzanio# classes, or namespaces to their corresponding documentation. Such a link can 369afef199bSTzanio# be prevented in individual cases by putting a % sign in front of the word or 370afef199bSTzanio# globally by setting AUTOLINK_SUPPORT to NO. 371afef199bSTzanio# The default value is: YES. 372afef199bSTzanio 373afef199bSTzanioAUTOLINK_SUPPORT = YES 374afef199bSTzanio 375afef199bSTzanio# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 376afef199bSTzanio# to include (a tag file for) the STL sources as input, then you should set this 377afef199bSTzanio# tag to YES in order to let doxygen match functions declarations and 378afef199bSTzanio# definitions whose arguments contain STL classes (e.g. func(std::string); 379afef199bSTzanio# versus func(std::string) {}). This also make the inheritance and collaboration 380afef199bSTzanio# diagrams that involve STL classes more complete and accurate. 381afef199bSTzanio# The default value is: NO. 382afef199bSTzanio 383afef199bSTzanioBUILTIN_STL_SUPPORT = NO 384afef199bSTzanio 385afef199bSTzanio# If you use Microsoft's C++/CLI language, you should set this option to YES to 386afef199bSTzanio# enable parsing support. 387afef199bSTzanio# The default value is: NO. 388afef199bSTzanio 389afef199bSTzanioCPP_CLI_SUPPORT = NO 390afef199bSTzanio 391afef199bSTzanio# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: 392288c0443SJeremy L Thompson# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen 393afef199bSTzanio# will parse them like normal C++ but will assume all classes use public instead 394afef199bSTzanio# of private inheritance when no explicit protection keyword is present. 395afef199bSTzanio# The default value is: NO. 396afef199bSTzanio 397afef199bSTzanioSIP_SUPPORT = NO 398afef199bSTzanio 399afef199bSTzanio# For Microsoft's IDL there are propget and propput attributes to indicate 400afef199bSTzanio# getter and setter methods for a property. Setting this option to YES will make 401afef199bSTzanio# doxygen to replace the get and set methods by a property in the documentation. 402afef199bSTzanio# This will only work if the methods are indeed getting or setting a simple 403afef199bSTzanio# type. If this is not the case, or you want to show the methods anyway, you 404afef199bSTzanio# should set this option to NO. 405afef199bSTzanio# The default value is: YES. 406afef199bSTzanio 407afef199bSTzanioIDL_PROPERTY_SUPPORT = YES 408afef199bSTzanio 409afef199bSTzanio# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 410afef199bSTzanio# tag is set to YES then doxygen will reuse the documentation of the first 411afef199bSTzanio# member in the group (if any) for the other members of the group. By default 412afef199bSTzanio# all members of a group must be documented explicitly. 413afef199bSTzanio# The default value is: NO. 414afef199bSTzanio 415afef199bSTzanioDISTRIBUTE_GROUP_DOC = NO 416afef199bSTzanio 417afef199bSTzanio# If one adds a struct or class to a group and this option is enabled, then also 418afef199bSTzanio# any nested class or struct is added to the same group. By default this option 419afef199bSTzanio# is disabled and one has to add nested compounds explicitly via \ingroup. 420afef199bSTzanio# The default value is: NO. 421afef199bSTzanio 422afef199bSTzanioGROUP_NESTED_COMPOUNDS = NO 423afef199bSTzanio 424afef199bSTzanio# Set the SUBGROUPING tag to YES to allow class member groups of the same type 425afef199bSTzanio# (for instance a group of public functions) to be put as a subgroup of that 426afef199bSTzanio# type (e.g. under the Public Functions section). Set it to NO to prevent 427afef199bSTzanio# subgrouping. Alternatively, this can be done per class using the 428afef199bSTzanio# \nosubgrouping command. 429afef199bSTzanio# The default value is: YES. 430afef199bSTzanio 431afef199bSTzanioSUBGROUPING = YES 432afef199bSTzanio 433afef199bSTzanio# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions 434afef199bSTzanio# are shown inside the group in which they are included (e.g. using \ingroup) 435afef199bSTzanio# instead of on a separate page (for HTML and Man pages) or section (for LaTeX 436afef199bSTzanio# and RTF). 437afef199bSTzanio# 438afef199bSTzanio# Note that this feature does not work in combination with 439afef199bSTzanio# SEPARATE_MEMBER_PAGES. 440afef199bSTzanio# The default value is: NO. 441afef199bSTzanio 442afef199bSTzanioINLINE_GROUPED_CLASSES = NO 443afef199bSTzanio 444afef199bSTzanio# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions 445afef199bSTzanio# with only public data fields or simple typedef fields will be shown inline in 446afef199bSTzanio# the documentation of the scope in which they are defined (i.e. file, 447afef199bSTzanio# namespace, or group documentation), provided this scope is documented. If set 448afef199bSTzanio# to NO, structs, classes, and unions are shown on a separate page (for HTML and 449afef199bSTzanio# Man pages) or section (for LaTeX and RTF). 450afef199bSTzanio# The default value is: NO. 451afef199bSTzanio 452afef199bSTzanioINLINE_SIMPLE_STRUCTS = NO 453afef199bSTzanio 454afef199bSTzanio# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or 455afef199bSTzanio# enum is documented as struct, union, or enum with the name of the typedef. So 456afef199bSTzanio# typedef struct TypeS {} TypeT, will appear in the documentation as a struct 457afef199bSTzanio# with name TypeT. When disabled the typedef will appear as a member of a file, 458afef199bSTzanio# namespace, or class. And the struct will be named TypeS. This can typically be 459afef199bSTzanio# useful for C code in case the coding convention dictates that all compound 460afef199bSTzanio# types are typedef'ed and only the typedef is referenced, never the tag name. 461afef199bSTzanio# The default value is: NO. 462afef199bSTzanio 463afef199bSTzanioTYPEDEF_HIDES_STRUCT = NO 464afef199bSTzanio 465afef199bSTzanio# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 466afef199bSTzanio# cache is used to resolve symbols given their name and scope. Since this can be 467afef199bSTzanio# an expensive process and often the same symbol appears multiple times in the 468afef199bSTzanio# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small 469afef199bSTzanio# doxygen will become slower. If the cache is too large, memory is wasted. The 470afef199bSTzanio# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range 471afef199bSTzanio# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 472afef199bSTzanio# symbols. At the end of a run doxygen will report the cache usage and suggest 473afef199bSTzanio# the optimal cache size from a speed point of view. 474afef199bSTzanio# Minimum value: 0, maximum value: 9, default value: 0. 475afef199bSTzanio 476afef199bSTzanioLOOKUP_CACHE_SIZE = 0 477afef199bSTzanio 478*01ff933cSJeremy L Thompson# The NUM_PROC_THREADS specifies the number of threads doxygen is allowed to use 479b52d7143SJeremy L Thompson# during processing. When set to 0 doxygen will based this on the number of 480b52d7143SJeremy L Thompson# cores available in the system. You can set it explicitly to a value larger 481b52d7143SJeremy L Thompson# than 0 to get more control over the balance between CPU load and processing 482b52d7143SJeremy L Thompson# speed. At this moment only the input processing can be done using multiple 483b52d7143SJeremy L Thompson# threads. Since this is still an experimental feature the default is set to 1, 484b52d7143SJeremy L Thompson# which effectively disables parallel processing. Please report any issues you 485b52d7143SJeremy L Thompson# encounter. Generating dot graphs in parallel is controlled by the 486b52d7143SJeremy L Thompson# DOT_NUM_THREADS setting. 487b52d7143SJeremy L Thompson# Minimum value: 0, maximum value: 32, default value: 1. 488b52d7143SJeremy L Thompson 489b52d7143SJeremy L ThompsonNUM_PROC_THREADS = 1 490b52d7143SJeremy L Thompson 491afef199bSTzanio#--------------------------------------------------------------------------- 492afef199bSTzanio# Build related configuration options 493afef199bSTzanio#--------------------------------------------------------------------------- 494afef199bSTzanio 495afef199bSTzanio# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in 496afef199bSTzanio# documentation are documented, even if no documentation was available. Private 497afef199bSTzanio# class members and static file members will be hidden unless the 498afef199bSTzanio# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. 499afef199bSTzanio# Note: This will also disable the warnings about undocumented members that are 500afef199bSTzanio# normally produced when WARNINGS is set to YES. 501afef199bSTzanio# The default value is: NO. 502afef199bSTzanio 503afef199bSTzanioEXTRACT_ALL = YES 504afef199bSTzanio 505afef199bSTzanio# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will 506afef199bSTzanio# be included in the documentation. 507afef199bSTzanio# The default value is: NO. 508afef199bSTzanio 509afef199bSTzanioEXTRACT_PRIVATE = NO 510afef199bSTzanio 511288c0443SJeremy L Thompson# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual 512288c0443SJeremy L Thompson# methods of a class will be included in the documentation. 513288c0443SJeremy L Thompson# The default value is: NO. 514288c0443SJeremy L Thompson 515288c0443SJeremy L ThompsonEXTRACT_PRIV_VIRTUAL = NO 516288c0443SJeremy L Thompson 517afef199bSTzanio# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal 518afef199bSTzanio# scope will be included in the documentation. 519afef199bSTzanio# The default value is: NO. 520afef199bSTzanio 521afef199bSTzanioEXTRACT_PACKAGE = NO 522afef199bSTzanio 523afef199bSTzanio# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be 524afef199bSTzanio# included in the documentation. 525afef199bSTzanio# The default value is: NO. 526afef199bSTzanio 527afef199bSTzanioEXTRACT_STATIC = NO 528afef199bSTzanio 529afef199bSTzanio# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined 530afef199bSTzanio# locally in source files will be included in the documentation. If set to NO, 531afef199bSTzanio# only classes defined in header files are included. Does not have any effect 532afef199bSTzanio# for Java sources. 533afef199bSTzanio# The default value is: YES. 534afef199bSTzanio 535afef199bSTzanioEXTRACT_LOCAL_CLASSES = NO 536afef199bSTzanio 537afef199bSTzanio# This flag is only useful for Objective-C code. If set to YES, local methods, 538afef199bSTzanio# which are defined in the implementation section but not in the interface are 539afef199bSTzanio# included in the documentation. If set to NO, only methods in the interface are 540afef199bSTzanio# included. 541afef199bSTzanio# The default value is: NO. 542afef199bSTzanio 543afef199bSTzanioEXTRACT_LOCAL_METHODS = NO 544afef199bSTzanio 545afef199bSTzanio# If this flag is set to YES, the members of anonymous namespaces will be 546afef199bSTzanio# extracted and appear in the documentation as a namespace called 547afef199bSTzanio# 'anonymous_namespace{file}', where file will be replaced with the base name of 548afef199bSTzanio# the file that contains the anonymous namespace. By default anonymous namespace 549afef199bSTzanio# are hidden. 550afef199bSTzanio# The default value is: NO. 551afef199bSTzanio 552afef199bSTzanioEXTRACT_ANON_NSPACES = NO 553afef199bSTzanio 554b52d7143SJeremy L Thompson# If this flag is set to YES, the name of an unnamed parameter in a declaration 555b52d7143SJeremy L Thompson# will be determined by the corresponding definition. By default unnamed 556b52d7143SJeremy L Thompson# parameters remain unnamed in the output. 557b52d7143SJeremy L Thompson# The default value is: YES. 558b52d7143SJeremy L Thompson 559b52d7143SJeremy L ThompsonRESOLVE_UNNAMED_PARAMS = YES 560b52d7143SJeremy L Thompson 561afef199bSTzanio# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all 562afef199bSTzanio# undocumented members inside documented classes or files. If set to NO these 563afef199bSTzanio# members will be included in the various overviews, but no documentation 564afef199bSTzanio# section is generated. This option has no effect if EXTRACT_ALL is enabled. 565afef199bSTzanio# The default value is: NO. 566afef199bSTzanio 567afef199bSTzanioHIDE_UNDOC_MEMBERS = NO 568afef199bSTzanio 569afef199bSTzanio# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all 570afef199bSTzanio# undocumented classes that are normally visible in the class hierarchy. If set 571afef199bSTzanio# to NO, these classes will be included in the various overviews. This option 572afef199bSTzanio# has no effect if EXTRACT_ALL is enabled. 573afef199bSTzanio# The default value is: NO. 574afef199bSTzanio 575afef199bSTzanioHIDE_UNDOC_CLASSES = NO 576afef199bSTzanio 577afef199bSTzanio# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend 578b52d7143SJeremy L Thompson# declarations. If set to NO, these declarations will be included in the 579b52d7143SJeremy L Thompson# documentation. 580afef199bSTzanio# The default value is: NO. 581afef199bSTzanio 582afef199bSTzanioHIDE_FRIEND_COMPOUNDS = NO 583afef199bSTzanio 584afef199bSTzanio# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any 585afef199bSTzanio# documentation blocks found inside the body of a function. If set to NO, these 586afef199bSTzanio# blocks will be appended to the function's detailed documentation block. 587afef199bSTzanio# The default value is: NO. 588afef199bSTzanio 589afef199bSTzanioHIDE_IN_BODY_DOCS = NO 590afef199bSTzanio 591afef199bSTzanio# The INTERNAL_DOCS tag determines if documentation that is typed after a 592afef199bSTzanio# \internal command is included. If the tag is set to NO then the documentation 593afef199bSTzanio# will be excluded. Set it to YES to include the internal documentation. 594afef199bSTzanio# The default value is: NO. 595afef199bSTzanio 596afef199bSTzanioINTERNAL_DOCS = NO 597afef199bSTzanio 598b52d7143SJeremy L Thompson# With the correct setting of option CASE_SENSE_NAMES doxygen will better be 599b52d7143SJeremy L Thompson# able to match the capabilities of the underlying filesystem. In case the 600b52d7143SJeremy L Thompson# filesystem is case sensitive (i.e. it supports files in the same directory 601b52d7143SJeremy L Thompson# whose names only differ in casing), the option must be set to YES to properly 602b52d7143SJeremy L Thompson# deal with such files in case they appear in the input. For filesystems that 603*01ff933cSJeremy L Thompson# are not case sensitive the option should be set to NO to properly deal with 604b52d7143SJeremy L Thompson# output files written for symbols that only differ in casing, such as for two 605b52d7143SJeremy L Thompson# classes, one named CLASS and the other named Class, and to also support 606b52d7143SJeremy L Thompson# references to files without having to specify the exact matching casing. On 607b52d7143SJeremy L Thompson# Windows (including Cygwin) and MacOS, users should typically set this option 608b52d7143SJeremy L Thompson# to NO, whereas on Linux or other Unix flavors it should typically be set to 609b52d7143SJeremy L Thompson# YES. 610*01ff933cSJeremy L Thompson# Possible values are: SYSTEM, NO and YES. 611*01ff933cSJeremy L Thompson# The default value is: SYSTEM. 612afef199bSTzanio 613afef199bSTzanioCASE_SENSE_NAMES = YES 614afef199bSTzanio 615afef199bSTzanio# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with 616afef199bSTzanio# their full class and namespace scopes in the documentation. If set to YES, the 617afef199bSTzanio# scope will be hidden. 618afef199bSTzanio# The default value is: NO. 619afef199bSTzanio 620afef199bSTzanioHIDE_SCOPE_NAMES = NO 621afef199bSTzanio 622afef199bSTzanio# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will 623afef199bSTzanio# append additional text to a page's title, such as Class Reference. If set to 624afef199bSTzanio# YES the compound reference will be hidden. 625afef199bSTzanio# The default value is: NO. 626afef199bSTzanio 627afef199bSTzanioHIDE_COMPOUND_REFERENCE= NO 628afef199bSTzanio 629b52d7143SJeremy L Thompson# If the SHOW_HEADERFILE tag is set to YES then the documentation for a class 630b52d7143SJeremy L Thompson# will show which file needs to be included to use the class. 631b52d7143SJeremy L Thompson# The default value is: YES. 632b52d7143SJeremy L Thompson 633b52d7143SJeremy L ThompsonSHOW_HEADERFILE = YES 634b52d7143SJeremy L Thompson 635afef199bSTzanio# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of 636afef199bSTzanio# the files that are included by a file in the documentation of that file. 637afef199bSTzanio# The default value is: YES. 638afef199bSTzanio 639afef199bSTzanioSHOW_INCLUDE_FILES = YES 640afef199bSTzanio 641afef199bSTzanio# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each 642afef199bSTzanio# grouped member an include statement to the documentation, telling the reader 643afef199bSTzanio# which file to include in order to use the member. 644afef199bSTzanio# The default value is: NO. 645afef199bSTzanio 646afef199bSTzanioSHOW_GROUPED_MEMB_INC = NO 647afef199bSTzanio 648afef199bSTzanio# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include 649afef199bSTzanio# files with double quotes in the documentation rather than with sharp brackets. 650afef199bSTzanio# The default value is: NO. 651afef199bSTzanio 652afef199bSTzanioFORCE_LOCAL_INCLUDES = NO 653afef199bSTzanio 654afef199bSTzanio# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the 655afef199bSTzanio# documentation for inline members. 656afef199bSTzanio# The default value is: YES. 657afef199bSTzanio 658afef199bSTzanioINLINE_INFO = YES 659afef199bSTzanio 660afef199bSTzanio# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the 661afef199bSTzanio# (detailed) documentation of file and class members alphabetically by member 662afef199bSTzanio# name. If set to NO, the members will appear in declaration order. 663afef199bSTzanio# The default value is: YES. 664afef199bSTzanio 665afef199bSTzanioSORT_MEMBER_DOCS = YES 666afef199bSTzanio 667afef199bSTzanio# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief 668afef199bSTzanio# descriptions of file, namespace and class members alphabetically by member 669afef199bSTzanio# name. If set to NO, the members will appear in declaration order. Note that 670afef199bSTzanio# this will also influence the order of the classes in the class list. 671afef199bSTzanio# The default value is: NO. 672afef199bSTzanio 673afef199bSTzanioSORT_BRIEF_DOCS = NO 674afef199bSTzanio 675afef199bSTzanio# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the 676afef199bSTzanio# (brief and detailed) documentation of class members so that constructors and 677afef199bSTzanio# destructors are listed first. If set to NO the constructors will appear in the 678afef199bSTzanio# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. 679afef199bSTzanio# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief 680afef199bSTzanio# member documentation. 681afef199bSTzanio# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting 682afef199bSTzanio# detailed member documentation. 683afef199bSTzanio# The default value is: NO. 684afef199bSTzanio 685afef199bSTzanioSORT_MEMBERS_CTORS_1ST = NO 686afef199bSTzanio 687afef199bSTzanio# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy 688afef199bSTzanio# of group names into alphabetical order. If set to NO the group names will 689afef199bSTzanio# appear in their defined order. 690afef199bSTzanio# The default value is: NO. 691afef199bSTzanio 692afef199bSTzanioSORT_GROUP_NAMES = NO 693afef199bSTzanio 694afef199bSTzanio# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by 695afef199bSTzanio# fully-qualified names, including namespaces. If set to NO, the class list will 696afef199bSTzanio# be sorted only by class name, not including the namespace part. 697afef199bSTzanio# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 698afef199bSTzanio# Note: This option applies only to the class list, not to the alphabetical 699afef199bSTzanio# list. 700afef199bSTzanio# The default value is: NO. 701afef199bSTzanio 702afef199bSTzanioSORT_BY_SCOPE_NAME = NO 703afef199bSTzanio 704afef199bSTzanio# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper 705afef199bSTzanio# type resolution of all parameters of a function it will reject a match between 706afef199bSTzanio# the prototype and the implementation of a member function even if there is 707afef199bSTzanio# only one candidate or it is obvious which candidate to choose by doing a 708afef199bSTzanio# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still 709afef199bSTzanio# accept a match between prototype and implementation in such cases. 710afef199bSTzanio# The default value is: NO. 711afef199bSTzanio 712afef199bSTzanioSTRICT_PROTO_MATCHING = NO 713afef199bSTzanio 714afef199bSTzanio# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo 715afef199bSTzanio# list. This list is created by putting \todo commands in the documentation. 716afef199bSTzanio# The default value is: YES. 717afef199bSTzanio 718afef199bSTzanioGENERATE_TODOLIST = YES 719afef199bSTzanio 720afef199bSTzanio# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test 721afef199bSTzanio# list. This list is created by putting \test commands in the documentation. 722afef199bSTzanio# The default value is: YES. 723afef199bSTzanio 724afef199bSTzanioGENERATE_TESTLIST = YES 725afef199bSTzanio 726afef199bSTzanio# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug 727afef199bSTzanio# list. This list is created by putting \bug commands in the documentation. 728afef199bSTzanio# The default value is: YES. 729afef199bSTzanio 730afef199bSTzanioGENERATE_BUGLIST = YES 731afef199bSTzanio 732afef199bSTzanio# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) 733afef199bSTzanio# the deprecated list. This list is created by putting \deprecated commands in 734afef199bSTzanio# the documentation. 735afef199bSTzanio# The default value is: YES. 736afef199bSTzanio 737afef199bSTzanioGENERATE_DEPRECATEDLIST= YES 738afef199bSTzanio 739afef199bSTzanio# The ENABLED_SECTIONS tag can be used to enable conditional documentation 740afef199bSTzanio# sections, marked by \if <section_label> ... \endif and \cond <section_label> 741afef199bSTzanio# ... \endcond blocks. 742afef199bSTzanio 743afef199bSTzanioENABLED_SECTIONS = 744afef199bSTzanio 745afef199bSTzanio# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the 746afef199bSTzanio# initial value of a variable or macro / define can have for it to appear in the 747afef199bSTzanio# documentation. If the initializer consists of more lines than specified here 748afef199bSTzanio# it will be hidden. Use a value of 0 to hide initializers completely. The 749afef199bSTzanio# appearance of the value of individual variables and macros / defines can be 750afef199bSTzanio# controlled using \showinitializer or \hideinitializer command in the 751afef199bSTzanio# documentation regardless of this setting. 752afef199bSTzanio# Minimum value: 0, maximum value: 10000, default value: 30. 753afef199bSTzanio 754afef199bSTzanioMAX_INITIALIZER_LINES = 30 755afef199bSTzanio 756afef199bSTzanio# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at 757afef199bSTzanio# the bottom of the documentation of classes and structs. If set to YES, the 758afef199bSTzanio# list will mention the files that were used to generate the documentation. 759afef199bSTzanio# The default value is: YES. 760afef199bSTzanio 761afef199bSTzanioSHOW_USED_FILES = YES 762afef199bSTzanio 763afef199bSTzanio# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This 764afef199bSTzanio# will remove the Files entry from the Quick Index and from the Folder Tree View 765afef199bSTzanio# (if specified). 766afef199bSTzanio# The default value is: YES. 767afef199bSTzanio 768afef199bSTzanioSHOW_FILES = YES 769afef199bSTzanio 770afef199bSTzanio# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces 771afef199bSTzanio# page. This will remove the Namespaces entry from the Quick Index and from the 772afef199bSTzanio# Folder Tree View (if specified). 773afef199bSTzanio# The default value is: YES. 774afef199bSTzanio 775afef199bSTzanioSHOW_NAMESPACES = NO 776afef199bSTzanio 777afef199bSTzanio# The FILE_VERSION_FILTER tag can be used to specify a program or script that 778afef199bSTzanio# doxygen should invoke to get the current version for each file (typically from 779afef199bSTzanio# the version control system). Doxygen will invoke the program by executing (via 780afef199bSTzanio# popen()) the command command input-file, where command is the value of the 781afef199bSTzanio# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided 782afef199bSTzanio# by doxygen. Whatever the program writes to standard output is used as the file 783afef199bSTzanio# version. For an example see the documentation. 784afef199bSTzanio 785afef199bSTzanioFILE_VERSION_FILTER = 786afef199bSTzanio 787afef199bSTzanio# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed 788afef199bSTzanio# by doxygen. The layout file controls the global structure of the generated 789afef199bSTzanio# output files in an output format independent way. To create the layout file 790afef199bSTzanio# that represents doxygen's defaults, run doxygen with the -l option. You can 791afef199bSTzanio# optionally specify a file name after the option, if omitted DoxygenLayout.xml 792b52d7143SJeremy L Thompson# will be used as the name of the layout file. See also section "Changing the 793b52d7143SJeremy L Thompson# layout of pages" for information. 794afef199bSTzanio# 795afef199bSTzanio# Note that if you run doxygen from a directory containing a file called 796afef199bSTzanio# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE 797afef199bSTzanio# tag is left empty. 798afef199bSTzanio 7998ff2c270SJed BrownLAYOUT_FILE = 800afef199bSTzanio 801afef199bSTzanio# The CITE_BIB_FILES tag can be used to specify one or more bib files containing 802afef199bSTzanio# the reference definitions. This must be a list of .bib files. The .bib 803afef199bSTzanio# extension is automatically appended if omitted. This requires the bibtex tool 804288c0443SJeremy L Thompson# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. 805afef199bSTzanio# For LaTeX the style of the bibliography can be controlled using 806afef199bSTzanio# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the 807afef199bSTzanio# search path. See also \cite for info how to create references. 808afef199bSTzanio 809afef199bSTzanioCITE_BIB_FILES = 810afef199bSTzanio 811afef199bSTzanio#--------------------------------------------------------------------------- 812afef199bSTzanio# Configuration options related to warning and progress messages 813afef199bSTzanio#--------------------------------------------------------------------------- 814afef199bSTzanio 815afef199bSTzanio# The QUIET tag can be used to turn on/off the messages that are generated to 816afef199bSTzanio# standard output by doxygen. If QUIET is set to YES this implies that the 817afef199bSTzanio# messages are off. 818afef199bSTzanio# The default value is: NO. 819afef199bSTzanio 820afef199bSTzanioQUIET = NO 821afef199bSTzanio 822afef199bSTzanio# The WARNINGS tag can be used to turn on/off the warning messages that are 823afef199bSTzanio# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES 824afef199bSTzanio# this implies that the warnings are on. 825afef199bSTzanio# 826afef199bSTzanio# Tip: Turn warnings on while writing the documentation. 827afef199bSTzanio# The default value is: YES. 828afef199bSTzanio 829afef199bSTzanioWARNINGS = YES 830afef199bSTzanio 831afef199bSTzanio# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate 832afef199bSTzanio# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag 833afef199bSTzanio# will automatically be disabled. 834afef199bSTzanio# The default value is: YES. 835afef199bSTzanio 836afef199bSTzanioWARN_IF_UNDOCUMENTED = YES 837afef199bSTzanio 838afef199bSTzanio# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for 839b52d7143SJeremy L Thompson# potential errors in the documentation, such as documenting some parameters in 840b52d7143SJeremy L Thompson# a documented function twice, or documenting parameters that don't exist or 841b52d7143SJeremy L Thompson# using markup commands wrongly. 842afef199bSTzanio# The default value is: YES. 843afef199bSTzanio 844afef199bSTzanioWARN_IF_DOC_ERROR = YES 845afef199bSTzanio 846b52d7143SJeremy L Thompson# If WARN_IF_INCOMPLETE_DOC is set to YES, doxygen will warn about incomplete 847b52d7143SJeremy L Thompson# function parameter documentation. If set to NO, doxygen will accept that some 848b52d7143SJeremy L Thompson# parameters have no documentation without warning. 849b52d7143SJeremy L Thompson# The default value is: YES. 850b52d7143SJeremy L Thompson 851b52d7143SJeremy L ThompsonWARN_IF_INCOMPLETE_DOC = YES 852b52d7143SJeremy L Thompson 853afef199bSTzanio# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that 854afef199bSTzanio# are documented, but have no documentation for their parameters or return 855b52d7143SJeremy L Thompson# value. If set to NO, doxygen will only warn about wrong parameter 856b52d7143SJeremy L Thompson# documentation, but not about the absence of documentation. If EXTRACT_ALL is 857b52d7143SJeremy L Thompson# set to YES then this flag will automatically be disabled. See also 858b52d7143SJeremy L Thompson# WARN_IF_INCOMPLETE_DOC 859afef199bSTzanio# The default value is: NO. 860afef199bSTzanio 8618ff2c270SJed BrownWARN_NO_PARAMDOC = YES 862afef199bSTzanio 863afef199bSTzanio# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when 864b52d7143SJeremy L Thompson# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS 865b52d7143SJeremy L Thompson# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but 866b52d7143SJeremy L Thompson# at the end of the doxygen process doxygen will return with a non-zero status. 867b52d7143SJeremy L Thompson# Possible values are: NO, YES and FAIL_ON_WARNINGS. 868afef199bSTzanio# The default value is: NO. 869afef199bSTzanio 870afef199bSTzanioWARN_AS_ERROR = NO 871afef199bSTzanio 872afef199bSTzanio# The WARN_FORMAT tag determines the format of the warning messages that doxygen 873afef199bSTzanio# can produce. The string should contain the $file, $line, and $text tags, which 874afef199bSTzanio# will be replaced by the file and line number from which the warning originated 875afef199bSTzanio# and the warning text. Optionally the format may contain $version, which will 876afef199bSTzanio# be replaced by the version of the file (if it could be obtained via 877afef199bSTzanio# FILE_VERSION_FILTER) 878*01ff933cSJeremy L Thompson# See also: WARN_LINE_FORMAT 879afef199bSTzanio# The default value is: $file:$line: $text. 880afef199bSTzanio 881afef199bSTzanioWARN_FORMAT = "$file:$line: $text" 882afef199bSTzanio 883*01ff933cSJeremy L Thompson# In the $text part of the WARN_FORMAT command it is possible that a reference 884*01ff933cSJeremy L Thompson# to a more specific place is given. To make it easier to jump to this place 885*01ff933cSJeremy L Thompson# (outside of doxygen) the user can define a custom "cut" / "paste" string. 886*01ff933cSJeremy L Thompson# Example: 887*01ff933cSJeremy L Thompson# WARN_LINE_FORMAT = "'vi $file +$line'" 888*01ff933cSJeremy L Thompson# See also: WARN_FORMAT 889*01ff933cSJeremy L Thompson# The default value is: at line $line of file $file. 890*01ff933cSJeremy L Thompson 891*01ff933cSJeremy L ThompsonWARN_LINE_FORMAT = "at line $line of file $file" 892*01ff933cSJeremy L Thompson 893afef199bSTzanio# The WARN_LOGFILE tag can be used to specify a file to which warning and error 894afef199bSTzanio# messages should be written. If left blank the output is written to standard 8957dfc1a7dSJed Brown# error (stderr). In case the file specified cannot be opened for writing the 8967dfc1a7dSJed Brown# warning and error messages are written to standard error. When as file - is 8977dfc1a7dSJed Brown# specified the warning and error messages are written to standard output 8987dfc1a7dSJed Brown# (stdout). 899afef199bSTzanio 900afef199bSTzanioWARN_LOGFILE = 901afef199bSTzanio 902afef199bSTzanio#--------------------------------------------------------------------------- 903afef199bSTzanio# Configuration options related to the input files 904afef199bSTzanio#--------------------------------------------------------------------------- 905afef199bSTzanio 906afef199bSTzanio# The INPUT tag is used to specify the files and/or directories that contain 907afef199bSTzanio# documented source files. You may enter file names like myfile.cpp or 908afef199bSTzanio# directories like /usr/src/myproject. Separate the files or directories with 909afef199bSTzanio# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING 910afef199bSTzanio# Note: If this tag is empty the current directory is searched. 911afef199bSTzanio 91256b865afSJeremy L ThompsonINPUT = include \ 91356b865afSJeremy L Thompson interface \ 91456b865afSJeremy L Thompson backends \ 915*01ff933cSJeremy L Thompson gallery 916afef199bSTzanio 917afef199bSTzanio# This tag can be used to specify the character encoding of the source files 918afef199bSTzanio# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses 919afef199bSTzanio# libiconv (or the iconv built into libc) for the transcoding. See the libiconv 920b52d7143SJeremy L Thompson# documentation (see: 921b52d7143SJeremy L Thompson# https://www.gnu.org/software/libiconv/) for the list of possible encodings. 922*01ff933cSJeremy L Thompson# See also: INPUT_FILE_ENCODING 923afef199bSTzanio# The default value is: UTF-8. 924afef199bSTzanio 925afef199bSTzanioINPUT_ENCODING = UTF-8 926afef199bSTzanio 927*01ff933cSJeremy L Thompson# This tag can be used to specify the character encoding of the source files 928*01ff933cSJeremy L Thompson# that doxygen parses The INPUT_FILE_ENCODING tag can be used to specify 929*01ff933cSJeremy L Thompson# character encoding on a per file pattern basis. Doxygen will compare the file 930*01ff933cSJeremy L Thompson# name with each pattern and apply the encoding instead of the default 931*01ff933cSJeremy L Thompson# INPUT_ENCODING) if there is a match. The character encodings are a list of the 932*01ff933cSJeremy L Thompson# form: pattern=encoding (like *.php=ISO-8859-1). See cfg_input_encoding 933*01ff933cSJeremy L Thompson# "INPUT_ENCODING" for further information on supported encodings. 934*01ff933cSJeremy L Thompson 935*01ff933cSJeremy L ThompsonINPUT_FILE_ENCODING = 936*01ff933cSJeremy L Thompson 937afef199bSTzanio# If the value of the INPUT tag contains directories, you can use the 938afef199bSTzanio# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and 939afef199bSTzanio# *.h) to filter out the source-files in the directories. 940afef199bSTzanio# 941afef199bSTzanio# Note that for custom extensions or not directly supported extensions you also 942afef199bSTzanio# need to set EXTENSION_MAPPING for the extension otherwise the files are not 943afef199bSTzanio# read by doxygen. 944afef199bSTzanio# 945b52d7143SJeremy L Thompson# Note the list of default checked file patterns might differ from the list of 946b52d7143SJeremy L Thompson# default file extension mappings. 947b52d7143SJeremy L Thompson# 948afef199bSTzanio# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, 949afef199bSTzanio# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, 950b52d7143SJeremy L Thompson# *.hh, *.hxx, *.hpp, *.h++, *.l, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, 951b52d7143SJeremy L Thompson# *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C 952b52d7143SJeremy L Thompson# comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, 953b52d7143SJeremy L Thompson# *.vhdl, *.ucf, *.qsf and *.ice. 954afef199bSTzanio 955afef199bSTzanioFILE_PATTERNS = *.c \ 956afef199bSTzanio *.cc \ 957afef199bSTzanio *.cxx \ 958afef199bSTzanio *.cpp \ 959afef199bSTzanio *.c++ \ 960afef199bSTzanio *.java \ 961afef199bSTzanio *.ii \ 962afef199bSTzanio *.ixx \ 963afef199bSTzanio *.ipp \ 964afef199bSTzanio *.i++ \ 965afef199bSTzanio *.inl \ 966afef199bSTzanio *.idl \ 967afef199bSTzanio *.ddl \ 968afef199bSTzanio *.odl \ 969afef199bSTzanio *.h \ 970afef199bSTzanio *.hh \ 971afef199bSTzanio *.hxx \ 972afef199bSTzanio *.hpp \ 973afef199bSTzanio *.h++ \ 974afef199bSTzanio *.cs \ 975afef199bSTzanio *.php \ 976afef199bSTzanio *.php4 \ 977afef199bSTzanio *.php5 \ 978afef199bSTzanio *.phtml \ 979afef199bSTzanio *.inc \ 980afef199bSTzanio *.m \ 981afef199bSTzanio *.mm \ 982afef199bSTzanio *.dox \ 983afef199bSTzanio *.f90 \ 984afef199bSTzanio *.f95 \ 985afef199bSTzanio *.f03 \ 986afef199bSTzanio *.f08 \ 987afef199bSTzanio *.f \ 988afef199bSTzanio *.for \ 989afef199bSTzanio *.tcl \ 990afef199bSTzanio *.vhd \ 991afef199bSTzanio *.vhdl \ 992afef199bSTzanio *.ucf \ 9935d6bafb2Sjeremylt *.qsf \ 9945d6bafb2Sjeremylt *.usr 995afef199bSTzanio 996afef199bSTzanio# The RECURSIVE tag can be used to specify whether or not subdirectories should 997afef199bSTzanio# be searched for input files as well. 998afef199bSTzanio# The default value is: NO. 999afef199bSTzanio 1000288c0443SJeremy L ThompsonRECURSIVE = YES 1001afef199bSTzanio 1002afef199bSTzanio# The EXCLUDE tag can be used to specify files and/or directories that should be 1003afef199bSTzanio# excluded from the INPUT source files. This way you can easily exclude a 1004afef199bSTzanio# subdirectory from a directory tree whose root is specified with the INPUT tag. 1005afef199bSTzanio# 1006afef199bSTzanio# Note that relative paths are relative to the directory from which doxygen is 1007afef199bSTzanio# run. 1008afef199bSTzanio 1009288c0443SJeremy L ThompsonEXCLUDE = benchmarks \ 101023236162SJed Brown include/ceed/khash.h \ 1011288c0443SJeremy L Thompson include/ceedf.h \ 101256b865afSJeremy L Thompson include/ceed/jit-source \ 1013288c0443SJeremy L Thompson tests/junit-xml \ 1014288c0443SJeremy L Thompson tests/output \ 10154c4400c7SValeria Barra include/ceed-fortran-name.h \ 10164c4400c7SValeria Barra python 1017afef199bSTzanio 1018afef199bSTzanio# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or 1019afef199bSTzanio# directories that are symbolic links (a Unix file system feature) are excluded 1020afef199bSTzanio# from the input. 1021afef199bSTzanio# The default value is: NO. 1022afef199bSTzanio 1023afef199bSTzanioEXCLUDE_SYMLINKS = YES 1024afef199bSTzanio 1025afef199bSTzanio# If the value of the INPUT tag contains directories, you can use the 1026afef199bSTzanio# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 1027afef199bSTzanio# certain files from those directories. 1028afef199bSTzanio# 1029afef199bSTzanio# Note that the wildcards are matched against the file with absolute path, so to 1030afef199bSTzanio# exclude all test directories for example use the pattern */test/* 1031afef199bSTzanio 1032afef199bSTzanioEXCLUDE_PATTERNS = 1033afef199bSTzanio 1034afef199bSTzanio# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 1035afef199bSTzanio# (namespaces, classes, functions, etc.) that should be excluded from the 1036afef199bSTzanio# output. The symbol name can be a fully qualified name, a word, or if the 1037afef199bSTzanio# wildcard * is used, a substring. Examples: ANamespace, AClass, 10387dfc1a7dSJed Brown# ANamespace::AClass, ANamespace::*Test 1039afef199bSTzanio# 1040afef199bSTzanio# Note that the wildcards are matched against the file with absolute path, so to 1041afef199bSTzanio# exclude all test directories use the pattern */test/* 1042afef199bSTzanio 1043afef199bSTzanioEXCLUDE_SYMBOLS = 1044afef199bSTzanio 1045afef199bSTzanio# The EXAMPLE_PATH tag can be used to specify one or more files or directories 1046afef199bSTzanio# that contain example code fragments that are included (see the \include 1047afef199bSTzanio# command). 1048afef199bSTzanio 10499ddbf157SjeremyltEXAMPLE_PATH = tests \ 10509ddbf157Sjeremylt backends/ref 1051afef199bSTzanio 1052afef199bSTzanio# If the value of the EXAMPLE_PATH tag contains directories, you can use the 1053afef199bSTzanio# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and 1054afef199bSTzanio# *.h) to filter out the source-files in the directories. If left blank all 1055afef199bSTzanio# files are included. 1056afef199bSTzanio 1057afef199bSTzanioEXAMPLE_PATTERNS = 1058afef199bSTzanio 1059afef199bSTzanio# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 1060afef199bSTzanio# searched for input files to be used with the \include or \dontinclude commands 1061afef199bSTzanio# irrespective of the value of the RECURSIVE tag. 1062afef199bSTzanio# The default value is: NO. 1063afef199bSTzanio 1064afef199bSTzanioEXAMPLE_RECURSIVE = NO 1065afef199bSTzanio 1066afef199bSTzanio# The IMAGE_PATH tag can be used to specify one or more files or directories 1067afef199bSTzanio# that contain images that are to be included in the documentation (see the 1068afef199bSTzanio# \image command). 1069afef199bSTzanio 1070288c0443SJeremy L ThompsonIMAGE_PATH = doc/img 1071afef199bSTzanio 1072afef199bSTzanio# The INPUT_FILTER tag can be used to specify a program that doxygen should 1073afef199bSTzanio# invoke to filter for each input file. Doxygen will invoke the filter program 1074afef199bSTzanio# by executing (via popen()) the command: 1075afef199bSTzanio# 1076afef199bSTzanio# <filter> <input-file> 1077afef199bSTzanio# 1078afef199bSTzanio# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the 1079afef199bSTzanio# name of an input file. Doxygen will then use the output that the filter 1080afef199bSTzanio# program writes to standard output. If FILTER_PATTERNS is specified, this tag 1081afef199bSTzanio# will be ignored. 1082afef199bSTzanio# 1083afef199bSTzanio# Note that the filter must not add or remove lines; it is applied before the 1084afef199bSTzanio# code is scanned, but not when the output code is generated. If lines are added 1085afef199bSTzanio# or removed, the anchors will not be placed correctly. 1086afef199bSTzanio# 1087*01ff933cSJeremy L Thompson# Note that doxygen will use the data processed and written to standard output 1088*01ff933cSJeremy L Thompson# for further processing, therefore nothing else, like debug statements or used 1089*01ff933cSJeremy L Thompson# commands (so in case of a Windows batch file always use @echo OFF), should be 1090*01ff933cSJeremy L Thompson# written to standard output. 1091*01ff933cSJeremy L Thompson# 1092afef199bSTzanio# Note that for custom extensions or not directly supported extensions you also 1093afef199bSTzanio# need to set EXTENSION_MAPPING for the extension otherwise the files are not 1094afef199bSTzanio# properly processed by doxygen. 1095afef199bSTzanio 1096afef199bSTzanioINPUT_FILTER = 1097afef199bSTzanio 1098afef199bSTzanio# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 1099afef199bSTzanio# basis. Doxygen will compare the file name with each pattern and apply the 1100afef199bSTzanio# filter if there is a match. The filters are a list of the form: pattern=filter 1101afef199bSTzanio# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how 1102afef199bSTzanio# filters are used. If the FILTER_PATTERNS tag is empty or if none of the 1103afef199bSTzanio# patterns match the file name, INPUT_FILTER is applied. 1104afef199bSTzanio# 1105afef199bSTzanio# Note that for custom extensions or not directly supported extensions you also 1106afef199bSTzanio# need to set EXTENSION_MAPPING for the extension otherwise the files are not 1107afef199bSTzanio# properly processed by doxygen. 1108afef199bSTzanio 1109afef199bSTzanioFILTER_PATTERNS = 1110afef199bSTzanio 1111afef199bSTzanio# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 1112afef199bSTzanio# INPUT_FILTER) will also be used to filter the input files that are used for 1113afef199bSTzanio# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). 1114afef199bSTzanio# The default value is: NO. 1115afef199bSTzanio 1116afef199bSTzanioFILTER_SOURCE_FILES = NO 1117afef199bSTzanio 1118afef199bSTzanio# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file 1119afef199bSTzanio# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and 1120afef199bSTzanio# it is also possible to disable source filtering for a specific pattern using 1121afef199bSTzanio# *.ext= (so without naming a filter). 1122afef199bSTzanio# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. 1123afef199bSTzanio 1124afef199bSTzanioFILTER_SOURCE_PATTERNS = 1125afef199bSTzanio 1126afef199bSTzanio# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that 1127afef199bSTzanio# is part of the input, its contents will be placed on the main page 1128afef199bSTzanio# (index.html). This can be useful if you have a project on for instance GitHub 1129afef199bSTzanio# and want to reuse the introduction page also for the doxygen output. 1130afef199bSTzanio 1131288c0443SJeremy L ThompsonUSE_MDFILE_AS_MAINPAGE = ./README.md 1132afef199bSTzanio 1133*01ff933cSJeremy L Thompson# The Fortran standard specifies that for fixed formatted Fortran code all 1134*01ff933cSJeremy L Thompson# characters from position 72 are to be considered as comment. A common 1135*01ff933cSJeremy L Thompson# extension is to allow longer lines before the automatic comment starts. The 1136*01ff933cSJeremy L Thompson# setting FORTRAN_COMMENT_AFTER will also make it possible that longer lines can 1137*01ff933cSJeremy L Thompson# be processed before the automatic comment starts. 1138*01ff933cSJeremy L Thompson# Minimum value: 7, maximum value: 10000, default value: 72. 1139*01ff933cSJeremy L Thompson 1140*01ff933cSJeremy L ThompsonFORTRAN_COMMENT_AFTER = 72 1141*01ff933cSJeremy L Thompson 1142afef199bSTzanio#--------------------------------------------------------------------------- 1143afef199bSTzanio# Configuration options related to source browsing 1144afef199bSTzanio#--------------------------------------------------------------------------- 1145afef199bSTzanio 1146afef199bSTzanio# If the SOURCE_BROWSER tag is set to YES then a list of source files will be 1147afef199bSTzanio# generated. Documented entities will be cross-referenced with these sources. 1148afef199bSTzanio# 1149afef199bSTzanio# Note: To get rid of all source code in the generated output, make sure that 1150afef199bSTzanio# also VERBATIM_HEADERS is set to NO. 1151afef199bSTzanio# The default value is: NO. 1152afef199bSTzanio 1153afef199bSTzanioSOURCE_BROWSER = YES 1154afef199bSTzanio 1155afef199bSTzanio# Setting the INLINE_SOURCES tag to YES will include the body of functions, 1156afef199bSTzanio# classes and enums directly into the documentation. 1157afef199bSTzanio# The default value is: NO. 1158afef199bSTzanio 1159afef199bSTzanioINLINE_SOURCES = NO 1160afef199bSTzanio 1161afef199bSTzanio# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any 1162afef199bSTzanio# special comment blocks from generated source code fragments. Normal C, C++ and 1163afef199bSTzanio# Fortran comments will always remain visible. 1164afef199bSTzanio# The default value is: YES. 1165afef199bSTzanio 11669ddbf157SjeremyltSTRIP_CODE_COMMENTS = YES 1167afef199bSTzanio 1168afef199bSTzanio# If the REFERENCED_BY_RELATION tag is set to YES then for each documented 1169288c0443SJeremy L Thompson# entity all documented functions referencing it will be listed. 1170afef199bSTzanio# The default value is: NO. 1171afef199bSTzanio 1172afef199bSTzanioREFERENCED_BY_RELATION = NO 1173afef199bSTzanio 1174afef199bSTzanio# If the REFERENCES_RELATION tag is set to YES then for each documented function 1175afef199bSTzanio# all documented entities called/used by that function will be listed. 1176afef199bSTzanio# The default value is: NO. 1177afef199bSTzanio 1178afef199bSTzanioREFERENCES_RELATION = NO 1179afef199bSTzanio 1180afef199bSTzanio# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set 1181afef199bSTzanio# to YES then the hyperlinks from functions in REFERENCES_RELATION and 1182afef199bSTzanio# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will 1183afef199bSTzanio# link to the documentation. 1184afef199bSTzanio# The default value is: YES. 1185afef199bSTzanio 1186afef199bSTzanioREFERENCES_LINK_SOURCE = YES 1187afef199bSTzanio 1188afef199bSTzanio# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the 1189afef199bSTzanio# source code will show a tooltip with additional information such as prototype, 1190afef199bSTzanio# brief description and links to the definition and documentation. Since this 1191afef199bSTzanio# will make the HTML file larger and loading of large files a bit slower, you 1192afef199bSTzanio# can opt to disable this feature. 1193afef199bSTzanio# The default value is: YES. 1194afef199bSTzanio# This tag requires that the tag SOURCE_BROWSER is set to YES. 1195afef199bSTzanio 1196afef199bSTzanioSOURCE_TOOLTIPS = YES 1197afef199bSTzanio 1198afef199bSTzanio# If the USE_HTAGS tag is set to YES then the references to source code will 1199afef199bSTzanio# point to the HTML generated by the htags(1) tool instead of doxygen built-in 1200afef199bSTzanio# source browser. The htags tool is part of GNU's global source tagging system 1201288c0443SJeremy L Thompson# (see https://www.gnu.org/software/global/global.html). You will need version 1202afef199bSTzanio# 4.8.6 or higher. 1203afef199bSTzanio# 1204afef199bSTzanio# To use it do the following: 1205afef199bSTzanio# - Install the latest version of global 1206288c0443SJeremy L Thompson# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file 1207afef199bSTzanio# - Make sure the INPUT points to the root of the source tree 1208afef199bSTzanio# - Run doxygen as normal 1209afef199bSTzanio# 1210afef199bSTzanio# Doxygen will invoke htags (and that will in turn invoke gtags), so these 1211afef199bSTzanio# tools must be available from the command line (i.e. in the search path). 1212afef199bSTzanio# 1213afef199bSTzanio# The result: instead of the source browser generated by doxygen, the links to 1214afef199bSTzanio# source code will now point to the output of htags. 1215afef199bSTzanio# The default value is: NO. 1216afef199bSTzanio# This tag requires that the tag SOURCE_BROWSER is set to YES. 1217afef199bSTzanio 1218afef199bSTzanioUSE_HTAGS = NO 1219afef199bSTzanio 1220afef199bSTzanio# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a 1221afef199bSTzanio# verbatim copy of the header file for each class for which an include is 1222afef199bSTzanio# specified. Set to NO to disable this. 1223afef199bSTzanio# See also: Section \class. 1224afef199bSTzanio# The default value is: YES. 1225afef199bSTzanio 1226afef199bSTzanioVERBATIM_HEADERS = YES 1227afef199bSTzanio 1228afef199bSTzanio#--------------------------------------------------------------------------- 1229afef199bSTzanio# Configuration options related to the alphabetical class index 1230afef199bSTzanio#--------------------------------------------------------------------------- 1231afef199bSTzanio 1232afef199bSTzanio# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all 1233afef199bSTzanio# compounds will be generated. Enable this if the project contains a lot of 1234afef199bSTzanio# classes, structs, unions or interfaces. 1235afef199bSTzanio# The default value is: YES. 1236afef199bSTzanio 1237afef199bSTzanioALPHABETICAL_INDEX = YES 1238afef199bSTzanio 1239afef199bSTzanio# In case all classes in a project start with a common prefix, all classes will 1240afef199bSTzanio# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag 1241afef199bSTzanio# can be used to specify a prefix (or a list of prefixes) that should be ignored 1242afef199bSTzanio# while generating the index headers. 1243afef199bSTzanio# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. 1244afef199bSTzanio 1245afef199bSTzanioIGNORE_PREFIX = 1246afef199bSTzanio 1247afef199bSTzanio#--------------------------------------------------------------------------- 1248afef199bSTzanio# Configuration options related to the HTML output 1249afef199bSTzanio#--------------------------------------------------------------------------- 1250afef199bSTzanio 1251afef199bSTzanio# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output 1252afef199bSTzanio# The default value is: YES. 1253afef199bSTzanio 1254afef199bSTzanioGENERATE_HTML = YES 1255afef199bSTzanio 1256afef199bSTzanio# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a 1257afef199bSTzanio# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1258afef199bSTzanio# it. 1259afef199bSTzanio# The default directory is: html. 1260afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1261afef199bSTzanio 1262afef199bSTzanioHTML_OUTPUT = doc/html 1263afef199bSTzanio 1264afef199bSTzanio# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each 1265afef199bSTzanio# generated HTML page (for example: .htm, .php, .asp). 1266afef199bSTzanio# The default value is: .html. 1267afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1268afef199bSTzanio 1269afef199bSTzanioHTML_FILE_EXTENSION = .html 1270afef199bSTzanio 1271afef199bSTzanio# The HTML_HEADER tag can be used to specify a user-defined HTML header file for 1272afef199bSTzanio# each generated HTML page. If the tag is left blank doxygen will generate a 1273afef199bSTzanio# standard header. 1274afef199bSTzanio# 1275afef199bSTzanio# To get valid HTML the header file that includes any scripts and style sheets 1276afef199bSTzanio# that doxygen needs, which is dependent on the configuration options used (e.g. 1277afef199bSTzanio# the setting GENERATE_TREEVIEW). It is highly recommended to start with a 1278afef199bSTzanio# default header using 1279afef199bSTzanio# doxygen -w html new_header.html new_footer.html new_stylesheet.css 1280afef199bSTzanio# YourConfigFile 1281afef199bSTzanio# and then modify the file new_header.html. See also section "Doxygen usage" 1282afef199bSTzanio# for information on how to generate the default header that doxygen normally 1283afef199bSTzanio# uses. 1284afef199bSTzanio# Note: The header is subject to change so you typically have to regenerate the 1285afef199bSTzanio# default header when upgrading to a newer version of doxygen. For a description 1286afef199bSTzanio# of the possible markers and block names see the documentation. 1287afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1288afef199bSTzanio 1289afef199bSTzanioHTML_HEADER = 1290afef199bSTzanio 1291afef199bSTzanio# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each 1292afef199bSTzanio# generated HTML page. If the tag is left blank doxygen will generate a standard 1293afef199bSTzanio# footer. See HTML_HEADER for more information on how to generate a default 1294afef199bSTzanio# footer and what special commands can be used inside the footer. See also 1295afef199bSTzanio# section "Doxygen usage" for information on how to generate the default footer 1296afef199bSTzanio# that doxygen normally uses. 1297afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1298afef199bSTzanio 1299afef199bSTzanioHTML_FOOTER = 1300afef199bSTzanio 1301afef199bSTzanio# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style 1302afef199bSTzanio# sheet that is used by each HTML page. It can be used to fine-tune the look of 1303afef199bSTzanio# the HTML output. If left blank doxygen will generate a default style sheet. 1304afef199bSTzanio# See also section "Doxygen usage" for information on how to generate the style 1305afef199bSTzanio# sheet that doxygen normally uses. 1306afef199bSTzanio# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as 1307afef199bSTzanio# it is more robust and this tag (HTML_STYLESHEET) will in the future become 1308afef199bSTzanio# obsolete. 1309afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1310afef199bSTzanio 1311afef199bSTzanioHTML_STYLESHEET = 1312afef199bSTzanio 1313afef199bSTzanio# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined 1314afef199bSTzanio# cascading style sheets that are included after the standard style sheets 1315afef199bSTzanio# created by doxygen. Using this option one can overrule certain style aspects. 1316afef199bSTzanio# This is preferred over using HTML_STYLESHEET since it does not replace the 1317afef199bSTzanio# standard style sheet and is therefore more robust against future updates. 1318afef199bSTzanio# Doxygen will copy the style sheet files to the output directory. 1319afef199bSTzanio# Note: The order of the extra style sheet files is of importance (e.g. the last 1320afef199bSTzanio# style sheet in the list overrules the setting of the previous ones in the 1321afef199bSTzanio# list). For an example see the documentation. 1322afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1323afef199bSTzanio 1324afef199bSTzanioHTML_EXTRA_STYLESHEET = 1325afef199bSTzanio 1326afef199bSTzanio# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or 1327afef199bSTzanio# other source files which should be copied to the HTML output directory. Note 1328afef199bSTzanio# that these files will be copied to the base HTML output directory. Use the 1329afef199bSTzanio# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these 1330afef199bSTzanio# files. In the HTML_STYLESHEET file, use the file name only. Also note that the 1331afef199bSTzanio# files will be copied as-is; there are no commands or markers available. 1332afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1333afef199bSTzanio 1334afef199bSTzanioHTML_EXTRA_FILES = 1335afef199bSTzanio 1336*01ff933cSJeremy L Thompson# The HTML_COLORSTYLE tag can be used to specify if the generated HTML output 1337*01ff933cSJeremy L Thompson# should be rendered with a dark or light theme. Default setting AUTO_LIGHT 1338*01ff933cSJeremy L Thompson# enables light output unless the user preference is dark output. Other options 1339*01ff933cSJeremy L Thompson# are DARK to always use dark mode, LIGHT to always use light mode, AUTO_DARK to 1340*01ff933cSJeremy L Thompson# default to dark mode unless the user prefers light mode, and TOGGLE to let the 1341*01ff933cSJeremy L Thompson# user toggle between dark and light mode via a button. 1342*01ff933cSJeremy L Thompson# Possible values are: LIGHT Always generate light output., DARK Always generate 1343*01ff933cSJeremy L Thompson# dark output., AUTO_LIGHT Automatically set the mode according to the user 1344*01ff933cSJeremy L Thompson# preference, use light mode if no preference is set (the default)., AUTO_DARK 1345*01ff933cSJeremy L Thompson# Automatically set the mode according to the user preference, use dark mode if 1346*01ff933cSJeremy L Thompson# no preference is set. and TOGGLE Allow to user to switch between light and 1347*01ff933cSJeremy L Thompson# dark mode via a button.. 1348*01ff933cSJeremy L Thompson# The default value is: AUTO_LIGHT. 1349*01ff933cSJeremy L Thompson# This tag requires that the tag GENERATE_HTML is set to YES. 1350*01ff933cSJeremy L Thompson 1351*01ff933cSJeremy L ThompsonHTML_COLORSTYLE = AUTO_LIGHT 1352*01ff933cSJeremy L Thompson 1353afef199bSTzanio# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen 1354afef199bSTzanio# will adjust the colors in the style sheet and background images according to 1355b52d7143SJeremy L Thompson# this color. Hue is specified as an angle on a color-wheel, see 1356288c0443SJeremy L Thompson# https://en.wikipedia.org/wiki/Hue for more information. For instance the value 1357afef199bSTzanio# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 1358afef199bSTzanio# purple, and 360 is red again. 1359afef199bSTzanio# Minimum value: 0, maximum value: 359, default value: 220. 1360afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1361afef199bSTzanio 1362afef199bSTzanioHTML_COLORSTYLE_HUE = 220 1363afef199bSTzanio 1364afef199bSTzanio# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors 1365b52d7143SJeremy L Thompson# in the HTML output. For a value of 0 the output will use gray-scales only. A 1366afef199bSTzanio# value of 255 will produce the most vivid colors. 1367afef199bSTzanio# Minimum value: 0, maximum value: 255, default value: 100. 1368afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1369afef199bSTzanio 1370afef199bSTzanioHTML_COLORSTYLE_SAT = 100 1371afef199bSTzanio 1372afef199bSTzanio# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the 1373afef199bSTzanio# luminance component of the colors in the HTML output. Values below 100 1374afef199bSTzanio# gradually make the output lighter, whereas values above 100 make the output 1375afef199bSTzanio# darker. The value divided by 100 is the actual gamma applied, so 80 represents 1376afef199bSTzanio# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not 1377afef199bSTzanio# change the gamma. 1378afef199bSTzanio# Minimum value: 40, maximum value: 240, default value: 80. 1379afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1380afef199bSTzanio 1381afef199bSTzanioHTML_COLORSTYLE_GAMMA = 80 1382afef199bSTzanio 1383afef199bSTzanio# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1384afef199bSTzanio# page will contain the date and time when the page was generated. Setting this 1385afef199bSTzanio# to YES can help to show when doxygen was last run and thus if the 1386afef199bSTzanio# documentation is up to date. 1387afef199bSTzanio# The default value is: NO. 1388afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1389afef199bSTzanio 1390afef199bSTzanioHTML_TIMESTAMP = YES 1391afef199bSTzanio 1392288c0443SJeremy L Thompson# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML 1393288c0443SJeremy L Thompson# documentation will contain a main index with vertical navigation menus that 1394b52d7143SJeremy L Thompson# are dynamically created via JavaScript. If disabled, the navigation index will 1395288c0443SJeremy L Thompson# consists of multiple levels of tabs that are statically embedded in every HTML 1396b52d7143SJeremy L Thompson# page. Disable this option to support browsers that do not have JavaScript, 1397288c0443SJeremy L Thompson# like the Qt help browser. 1398288c0443SJeremy L Thompson# The default value is: YES. 1399288c0443SJeremy L Thompson# This tag requires that the tag GENERATE_HTML is set to YES. 1400288c0443SJeremy L Thompson 1401288c0443SJeremy L ThompsonHTML_DYNAMIC_MENUS = YES 1402288c0443SJeremy L Thompson 1403afef199bSTzanio# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 1404afef199bSTzanio# documentation will contain sections that can be hidden and shown after the 1405afef199bSTzanio# page has loaded. 1406afef199bSTzanio# The default value is: NO. 1407afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1408afef199bSTzanio 1409afef199bSTzanioHTML_DYNAMIC_SECTIONS = NO 1410afef199bSTzanio 1411afef199bSTzanio# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries 1412afef199bSTzanio# shown in the various tree structured indices initially; the user can expand 1413afef199bSTzanio# and collapse entries dynamically later on. Doxygen will expand the tree to 1414afef199bSTzanio# such a level that at most the specified number of entries are visible (unless 1415afef199bSTzanio# a fully collapsed tree already exceeds this amount). So setting the number of 1416afef199bSTzanio# entries 1 will produce a full collapsed tree by default. 0 is a special value 1417afef199bSTzanio# representing an infinite number of entries and will result in a full expanded 1418afef199bSTzanio# tree by default. 1419afef199bSTzanio# Minimum value: 0, maximum value: 9999, default value: 100. 1420afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1421afef199bSTzanio 1422afef199bSTzanioHTML_INDEX_NUM_ENTRIES = 100 1423afef199bSTzanio 1424afef199bSTzanio# If the GENERATE_DOCSET tag is set to YES, additional index files will be 1425afef199bSTzanio# generated that can be used as input for Apple's Xcode 3 integrated development 1426b52d7143SJeremy L Thompson# environment (see: 1427b52d7143SJeremy L Thompson# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To 1428b52d7143SJeremy L Thompson# create a documentation set, doxygen will generate a Makefile in the HTML 1429b52d7143SJeremy L Thompson# output directory. Running make will produce the docset in that directory and 1430b52d7143SJeremy L Thompson# running make install will install the docset in 1431afef199bSTzanio# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at 1432288c0443SJeremy L Thompson# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy 1433288c0443SJeremy L Thompson# genXcode/_index.html for more information. 1434afef199bSTzanio# The default value is: NO. 1435afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1436afef199bSTzanio 1437afef199bSTzanioGENERATE_DOCSET = NO 1438afef199bSTzanio 1439afef199bSTzanio# This tag determines the name of the docset feed. A documentation feed provides 1440afef199bSTzanio# an umbrella under which multiple documentation sets from a single provider 1441afef199bSTzanio# (such as a company or product suite) can be grouped. 1442afef199bSTzanio# The default value is: Doxygen generated docs. 1443afef199bSTzanio# This tag requires that the tag GENERATE_DOCSET is set to YES. 1444afef199bSTzanio 1445afef199bSTzanioDOCSET_FEEDNAME = "Doxygen generated docs" 1446afef199bSTzanio 14477dfc1a7dSJed Brown# This tag determines the URL of the docset feed. A documentation feed provides 14487dfc1a7dSJed Brown# an umbrella under which multiple documentation sets from a single provider 14497dfc1a7dSJed Brown# (such as a company or product suite) can be grouped. 14507dfc1a7dSJed Brown# This tag requires that the tag GENERATE_DOCSET is set to YES. 14517dfc1a7dSJed Brown 14527dfc1a7dSJed BrownDOCSET_FEEDURL = 14537dfc1a7dSJed Brown 1454afef199bSTzanio# This tag specifies a string that should uniquely identify the documentation 1455afef199bSTzanio# set bundle. This should be a reverse domain-name style string, e.g. 1456afef199bSTzanio# com.mycompany.MyDocSet. Doxygen will append .docset to the name. 1457afef199bSTzanio# The default value is: org.doxygen.Project. 1458afef199bSTzanio# This tag requires that the tag GENERATE_DOCSET is set to YES. 1459afef199bSTzanio 1460afef199bSTzanioDOCSET_BUNDLE_ID = org.doxygen.Project 1461afef199bSTzanio 1462afef199bSTzanio# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify 1463afef199bSTzanio# the documentation publisher. This should be a reverse domain-name style 1464afef199bSTzanio# string, e.g. com.mycompany.MyDocSet.documentation. 1465afef199bSTzanio# The default value is: org.doxygen.Publisher. 1466afef199bSTzanio# This tag requires that the tag GENERATE_DOCSET is set to YES. 1467afef199bSTzanio 1468afef199bSTzanioDOCSET_PUBLISHER_ID = org.doxygen.Publisher 1469afef199bSTzanio 1470afef199bSTzanio# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. 1471afef199bSTzanio# The default value is: Publisher. 1472afef199bSTzanio# This tag requires that the tag GENERATE_DOCSET is set to YES. 1473afef199bSTzanio 1474afef199bSTzanioDOCSET_PUBLISHER_NAME = Publisher 1475afef199bSTzanio 1476afef199bSTzanio# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three 1477afef199bSTzanio# additional HTML index files: index.hhp, index.hhc, and index.hhk. The 1478afef199bSTzanio# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop 1479b52d7143SJeremy L Thompson# on Windows. In the beginning of 2021 Microsoft took the original page, with 1480b52d7143SJeremy L Thompson# a.o. the download links, offline the HTML help workshop was already many years 1481b52d7143SJeremy L Thompson# in maintenance mode). You can download the HTML help workshop from the web 1482b52d7143SJeremy L Thompson# archives at Installation executable (see: 1483b52d7143SJeremy L Thompson# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo 1484b52d7143SJeremy L Thompson# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe). 1485afef199bSTzanio# 1486afef199bSTzanio# The HTML Help Workshop contains a compiler that can convert all HTML output 1487afef199bSTzanio# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML 1488afef199bSTzanio# files are now used as the Windows 98 help format, and will replace the old 1489afef199bSTzanio# Windows help format (.hlp) on all Windows platforms in the future. Compressed 1490afef199bSTzanio# HTML files also contain an index, a table of contents, and you can search for 1491afef199bSTzanio# words in the documentation. The HTML workshop also contains a viewer for 1492afef199bSTzanio# compressed HTML files. 1493afef199bSTzanio# The default value is: NO. 1494afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1495afef199bSTzanio 1496afef199bSTzanioGENERATE_HTMLHELP = NO 1497afef199bSTzanio 1498afef199bSTzanio# The CHM_FILE tag can be used to specify the file name of the resulting .chm 1499afef199bSTzanio# file. You can add a path in front of the file if the result should not be 1500afef199bSTzanio# written to the html output directory. 1501afef199bSTzanio# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1502afef199bSTzanio 1503afef199bSTzanioCHM_FILE = 1504afef199bSTzanio 1505afef199bSTzanio# The HHC_LOCATION tag can be used to specify the location (absolute path 1506afef199bSTzanio# including file name) of the HTML help compiler (hhc.exe). If non-empty, 1507afef199bSTzanio# doxygen will try to run the HTML help compiler on the generated index.hhp. 1508afef199bSTzanio# The file has to be specified with full path. 1509afef199bSTzanio# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1510afef199bSTzanio 1511afef199bSTzanioHHC_LOCATION = 1512afef199bSTzanio 1513afef199bSTzanio# The GENERATE_CHI flag controls if a separate .chi index file is generated 1514b52d7143SJeremy L Thompson# (YES) or that it should be included in the main .chm file (NO). 1515afef199bSTzanio# The default value is: NO. 1516afef199bSTzanio# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1517afef199bSTzanio 1518afef199bSTzanioGENERATE_CHI = NO 1519afef199bSTzanio 1520afef199bSTzanio# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) 1521afef199bSTzanio# and project file content. 1522afef199bSTzanio# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1523afef199bSTzanio 1524afef199bSTzanioCHM_INDEX_ENCODING = 1525afef199bSTzanio 1526afef199bSTzanio# The BINARY_TOC flag controls whether a binary table of contents is generated 1527afef199bSTzanio# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it 1528afef199bSTzanio# enables the Previous and Next buttons. 1529afef199bSTzanio# The default value is: NO. 1530afef199bSTzanio# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1531afef199bSTzanio 1532afef199bSTzanioBINARY_TOC = NO 1533afef199bSTzanio 1534afef199bSTzanio# The TOC_EXPAND flag can be set to YES to add extra items for group members to 1535afef199bSTzanio# the table of contents of the HTML help documentation and to the tree view. 1536afef199bSTzanio# The default value is: NO. 1537afef199bSTzanio# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1538afef199bSTzanio 1539afef199bSTzanioTOC_EXPAND = NO 1540afef199bSTzanio 1541afef199bSTzanio# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and 1542afef199bSTzanio# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that 1543afef199bSTzanio# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help 1544afef199bSTzanio# (.qch) of the generated HTML documentation. 1545afef199bSTzanio# The default value is: NO. 1546afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1547afef199bSTzanio 1548afef199bSTzanioGENERATE_QHP = NO 1549afef199bSTzanio 1550afef199bSTzanio# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify 1551afef199bSTzanio# the file name of the resulting .qch file. The path specified is relative to 1552afef199bSTzanio# the HTML output folder. 1553afef199bSTzanio# This tag requires that the tag GENERATE_QHP is set to YES. 1554afef199bSTzanio 1555afef199bSTzanioQCH_FILE = 1556afef199bSTzanio 1557afef199bSTzanio# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help 1558afef199bSTzanio# Project output. For more information please see Qt Help Project / Namespace 1559b52d7143SJeremy L Thompson# (see: 1560b52d7143SJeremy L Thompson# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). 1561afef199bSTzanio# The default value is: org.doxygen.Project. 1562afef199bSTzanio# This tag requires that the tag GENERATE_QHP is set to YES. 1563afef199bSTzanio 1564afef199bSTzanioQHP_NAMESPACE = org.doxygen.Project 1565afef199bSTzanio 1566afef199bSTzanio# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt 1567afef199bSTzanio# Help Project output. For more information please see Qt Help Project / Virtual 1568b52d7143SJeremy L Thompson# Folders (see: 1569b52d7143SJeremy L Thompson# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). 1570afef199bSTzanio# The default value is: doc. 1571afef199bSTzanio# This tag requires that the tag GENERATE_QHP is set to YES. 1572afef199bSTzanio 1573afef199bSTzanioQHP_VIRTUAL_FOLDER = doc 1574afef199bSTzanio 1575afef199bSTzanio# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom 1576afef199bSTzanio# filter to add. For more information please see Qt Help Project / Custom 1577b52d7143SJeremy L Thompson# Filters (see: 1578b52d7143SJeremy L Thompson# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). 1579afef199bSTzanio# This tag requires that the tag GENERATE_QHP is set to YES. 1580afef199bSTzanio 1581afef199bSTzanioQHP_CUST_FILTER_NAME = 1582afef199bSTzanio 1583afef199bSTzanio# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the 1584afef199bSTzanio# custom filter to add. For more information please see Qt Help Project / Custom 1585b52d7143SJeremy L Thompson# Filters (see: 1586b52d7143SJeremy L Thompson# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). 1587afef199bSTzanio# This tag requires that the tag GENERATE_QHP is set to YES. 1588afef199bSTzanio 1589afef199bSTzanioQHP_CUST_FILTER_ATTRS = 1590afef199bSTzanio 1591afef199bSTzanio# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this 1592afef199bSTzanio# project's filter section matches. Qt Help Project / Filter Attributes (see: 1593288c0443SJeremy L Thompson# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). 1594afef199bSTzanio# This tag requires that the tag GENERATE_QHP is set to YES. 1595afef199bSTzanio 1596afef199bSTzanioQHP_SECT_FILTER_ATTRS = 1597afef199bSTzanio 1598b52d7143SJeremy L Thompson# The QHG_LOCATION tag can be used to specify the location (absolute path 1599b52d7143SJeremy L Thompson# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to 1600b52d7143SJeremy L Thompson# run qhelpgenerator on the generated .qhp file. 1601afef199bSTzanio# This tag requires that the tag GENERATE_QHP is set to YES. 1602afef199bSTzanio 1603afef199bSTzanioQHG_LOCATION = 1604afef199bSTzanio 1605afef199bSTzanio# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be 1606afef199bSTzanio# generated, together with the HTML files, they form an Eclipse help plugin. To 1607afef199bSTzanio# install this plugin and make it available under the help contents menu in 1608afef199bSTzanio# Eclipse, the contents of the directory containing the HTML and XML files needs 1609afef199bSTzanio# to be copied into the plugins directory of eclipse. The name of the directory 1610afef199bSTzanio# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. 1611afef199bSTzanio# After copying Eclipse needs to be restarted before the help appears. 1612afef199bSTzanio# The default value is: NO. 1613afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1614afef199bSTzanio 1615afef199bSTzanioGENERATE_ECLIPSEHELP = NO 1616afef199bSTzanio 1617afef199bSTzanio# A unique identifier for the Eclipse help plugin. When installing the plugin 1618afef199bSTzanio# the directory name containing the HTML and XML files should also have this 1619afef199bSTzanio# name. Each documentation set should have its own identifier. 1620afef199bSTzanio# The default value is: org.doxygen.Project. 1621afef199bSTzanio# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. 1622afef199bSTzanio 1623afef199bSTzanioECLIPSE_DOC_ID = org.doxygen.Project 1624afef199bSTzanio 1625afef199bSTzanio# If you want full control over the layout of the generated HTML pages it might 1626afef199bSTzanio# be necessary to disable the index and replace it with your own. The 1627afef199bSTzanio# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top 1628afef199bSTzanio# of each HTML page. A value of NO enables the index and the value YES disables 1629afef199bSTzanio# it. Since the tabs in the index contain the same information as the navigation 1630afef199bSTzanio# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. 1631afef199bSTzanio# The default value is: NO. 1632afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1633afef199bSTzanio 1634afef199bSTzanioDISABLE_INDEX = NO 1635afef199bSTzanio 1636afef199bSTzanio# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index 1637afef199bSTzanio# structure should be generated to display hierarchical information. If the tag 1638afef199bSTzanio# value is set to YES, a side panel will be generated containing a tree-like 1639afef199bSTzanio# index structure (just like the one that is generated for HTML Help). For this 1640afef199bSTzanio# to work a browser that supports JavaScript, DHTML, CSS and frames is required 1641afef199bSTzanio# (i.e. any modern browser). Windows users are probably better off using the 1642afef199bSTzanio# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can 1643b52d7143SJeremy L Thompson# further fine tune the look of the index (see "Fine-tuning the output"). As an 1644b52d7143SJeremy L Thompson# example, the default style sheet generated by doxygen has an example that 1645b52d7143SJeremy L Thompson# shows how to put an image at the root of the tree instead of the PROJECT_NAME. 1646b52d7143SJeremy L Thompson# Since the tree basically has the same information as the tab index, you could 1647b52d7143SJeremy L Thompson# consider setting DISABLE_INDEX to YES when enabling this option. 1648afef199bSTzanio# The default value is: NO. 1649afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1650afef199bSTzanio 1651afef199bSTzanioGENERATE_TREEVIEW = NO 1652afef199bSTzanio 1653b52d7143SJeremy L Thompson# When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the 1654b52d7143SJeremy L Thompson# FULL_SIDEBAR option determines if the side bar is limited to only the treeview 1655b52d7143SJeremy L Thompson# area (value NO) or if it should extend to the full height of the window (value 1656b52d7143SJeremy L Thompson# YES). Setting this to YES gives a layout similar to 1657b52d7143SJeremy L Thompson# https://docs.readthedocs.io with more room for contents, but less room for the 16587dfc1a7dSJed Brown# project logo, title, and description. If either GENERATE_TREEVIEW or 1659b52d7143SJeremy L Thompson# DISABLE_INDEX is set to NO, this option has no effect. 1660b52d7143SJeremy L Thompson# The default value is: NO. 1661b52d7143SJeremy L Thompson# This tag requires that the tag GENERATE_HTML is set to YES. 1662b52d7143SJeremy L Thompson 1663b52d7143SJeremy L ThompsonFULL_SIDEBAR = NO 1664b52d7143SJeremy L Thompson 1665afef199bSTzanio# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that 1666afef199bSTzanio# doxygen will group on one line in the generated HTML documentation. 1667afef199bSTzanio# 1668afef199bSTzanio# Note that a value of 0 will completely suppress the enum values from appearing 1669afef199bSTzanio# in the overview section. 1670afef199bSTzanio# Minimum value: 0, maximum value: 20, default value: 4. 1671afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1672afef199bSTzanio 1673afef199bSTzanioENUM_VALUES_PER_LINE = 4 1674afef199bSTzanio 1675afef199bSTzanio# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used 1676afef199bSTzanio# to set the initial width (in pixels) of the frame in which the tree is shown. 1677afef199bSTzanio# Minimum value: 0, maximum value: 1500, default value: 250. 1678afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1679afef199bSTzanio 1680afef199bSTzanioTREEVIEW_WIDTH = 250 1681afef199bSTzanio 1682afef199bSTzanio# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to 1683afef199bSTzanio# external symbols imported via tag files in a separate window. 1684afef199bSTzanio# The default value is: NO. 1685afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1686afef199bSTzanio 1687afef199bSTzanioEXT_LINKS_IN_WINDOW = NO 1688afef199bSTzanio 16897dfc1a7dSJed Brown# If the OBFUSCATE_EMAILS tag is set to YES, doxygen will obfuscate email 16907dfc1a7dSJed Brown# addresses. 16917dfc1a7dSJed Brown# The default value is: YES. 16927dfc1a7dSJed Brown# This tag requires that the tag GENERATE_HTML is set to YES. 16937dfc1a7dSJed Brown 16947dfc1a7dSJed BrownOBFUSCATE_EMAILS = YES 16957dfc1a7dSJed Brown 1696b52d7143SJeremy L Thompson# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg 1697b52d7143SJeremy L Thompson# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see 1698b52d7143SJeremy L Thompson# https://inkscape.org) to generate formulas as SVG images instead of PNGs for 1699b52d7143SJeremy L Thompson# the HTML output. These images will generally look nicer at scaled resolutions. 1700b52d7143SJeremy L Thompson# Possible values are: png (the default) and svg (looks nicer but requires the 1701b52d7143SJeremy L Thompson# pdf2svg or inkscape tool). 1702b52d7143SJeremy L Thompson# The default value is: png. 1703b52d7143SJeremy L Thompson# This tag requires that the tag GENERATE_HTML is set to YES. 1704b52d7143SJeremy L Thompson 1705b52d7143SJeremy L ThompsonHTML_FORMULA_FORMAT = png 1706b52d7143SJeremy L Thompson 1707afef199bSTzanio# Use this tag to change the font size of LaTeX formulas included as images in 1708afef199bSTzanio# the HTML documentation. When you change the font size after a successful 1709afef199bSTzanio# doxygen run you need to manually remove any form_*.png images from the HTML 1710afef199bSTzanio# output directory to force them to be regenerated. 1711afef199bSTzanio# Minimum value: 8, maximum value: 50, default value: 10. 1712afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1713afef199bSTzanio 1714afef199bSTzanioFORMULA_FONTSIZE = 14 1715afef199bSTzanio 1716b52d7143SJeremy L Thompson# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands 1717b52d7143SJeremy L Thompson# to create new LaTeX commands to be used in formulas as building blocks. See 1718b52d7143SJeremy L Thompson# the section "Including formulas" for details. 1719b52d7143SJeremy L Thompson 1720b52d7143SJeremy L ThompsonFORMULA_MACROFILE = 1721b52d7143SJeremy L Thompson 1722afef199bSTzanio# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see 1723b52d7143SJeremy L Thompson# https://www.mathjax.org) which uses client side JavaScript for the rendering 1724afef199bSTzanio# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX 1725afef199bSTzanio# installed or if you want to formulas look prettier in the HTML output. When 1726afef199bSTzanio# enabled you may also need to install MathJax separately and configure the path 1727afef199bSTzanio# to it using the MATHJAX_RELPATH option. 1728afef199bSTzanio# The default value is: NO. 1729afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1730afef199bSTzanio 1731afef199bSTzanioUSE_MATHJAX = YES 1732afef199bSTzanio 1733b52d7143SJeremy L Thompson# With MATHJAX_VERSION it is possible to specify the MathJax version to be used. 1734b52d7143SJeremy L Thompson# Note that the different versions of MathJax have different requirements with 1735b52d7143SJeremy L Thompson# regards to the different settings, so it is possible that also other MathJax 1736b52d7143SJeremy L Thompson# settings have to be changed when switching between the different MathJax 1737b52d7143SJeremy L Thompson# versions. 1738b52d7143SJeremy L Thompson# Possible values are: MathJax_2 and MathJax_3. 1739b52d7143SJeremy L Thompson# The default value is: MathJax_2. 1740b52d7143SJeremy L Thompson# This tag requires that the tag USE_MATHJAX is set to YES. 1741b52d7143SJeremy L Thompson 1742b52d7143SJeremy L ThompsonMATHJAX_VERSION = MathJax_2 1743b52d7143SJeremy L Thompson 1744afef199bSTzanio# When MathJax is enabled you can set the default output format to be used for 1745b52d7143SJeremy L Thompson# the MathJax output. For more details about the output format see MathJax 1746b52d7143SJeremy L Thompson# version 2 (see: 1747b52d7143SJeremy L Thompson# http://docs.mathjax.org/en/v2.7-latest/output.html) and MathJax version 3 1748b52d7143SJeremy L Thompson# (see: 1749b52d7143SJeremy L Thompson# http://docs.mathjax.org/en/latest/web/components/output.html). 1750afef199bSTzanio# Possible values are: HTML-CSS (which is slower, but has the best 1751b52d7143SJeremy L Thompson# compatibility. This is the name for Mathjax version 2, for MathJax version 3 1752b52d7143SJeremy L Thompson# this will be translated into chtml), NativeMML (i.e. MathML. Only supported 1753b52d7143SJeremy L Thompson# for NathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This 1754b52d7143SJeremy L Thompson# is the name for Mathjax version 3, for MathJax version 2 this will be 1755b52d7143SJeremy L Thompson# translated into HTML-CSS) and SVG. 1756afef199bSTzanio# The default value is: HTML-CSS. 1757afef199bSTzanio# This tag requires that the tag USE_MATHJAX is set to YES. 1758afef199bSTzanio 1759afef199bSTzanioMATHJAX_FORMAT = HTML-CSS 1760afef199bSTzanio 1761afef199bSTzanio# When MathJax is enabled you need to specify the location relative to the HTML 1762afef199bSTzanio# output directory using the MATHJAX_RELPATH option. The destination directory 1763afef199bSTzanio# should contain the MathJax.js script. For instance, if the mathjax directory 1764afef199bSTzanio# is located at the same level as the HTML output directory, then 1765afef199bSTzanio# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax 1766afef199bSTzanio# Content Delivery Network so you can quickly see the result without installing 1767afef199bSTzanio# MathJax. However, it is strongly recommended to install a local copy of 1768b52d7143SJeremy L Thompson# MathJax from https://www.mathjax.org before deployment. The default value is: 1769b52d7143SJeremy L Thompson# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2 1770b52d7143SJeremy L Thompson# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3 1771afef199bSTzanio# This tag requires that the tag USE_MATHJAX is set to YES. 1772afef199bSTzanio 17737bd3a522STzanioMATHJAX_RELPATH = https://cdn.llnl.gov/mathjax/2.7.2 1774afef199bSTzanio 1775afef199bSTzanio# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax 1776afef199bSTzanio# extension names that should be enabled during MathJax rendering. For example 1777b52d7143SJeremy L Thompson# for MathJax version 2 (see 1778b52d7143SJeremy L Thompson# https://docs.mathjax.org/en/v2.7-latest/tex.html#tex-and-latex-extensions): 1779afef199bSTzanio# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols 1780b52d7143SJeremy L Thompson# For example for MathJax version 3 (see 1781b52d7143SJeremy L Thompson# http://docs.mathjax.org/en/latest/input/tex/extensions/index.html): 1782b52d7143SJeremy L Thompson# MATHJAX_EXTENSIONS = ams 1783afef199bSTzanio# This tag requires that the tag USE_MATHJAX is set to YES. 1784afef199bSTzanio 1785288c0443SJeremy L ThompsonMATHJAX_EXTENSIONS = TeX/AMSmath \ 1786288c0443SJeremy L Thompson TeX/AMSsymbols 1787afef199bSTzanio 1788afef199bSTzanio# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces 1789afef199bSTzanio# of code that will be used on startup of the MathJax code. See the MathJax site 1790b52d7143SJeremy L Thompson# (see: 1791b52d7143SJeremy L Thompson# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an 1792afef199bSTzanio# example see the documentation. 1793afef199bSTzanio# This tag requires that the tag USE_MATHJAX is set to YES. 1794afef199bSTzanio 1795afef199bSTzanioMATHJAX_CODEFILE = 1796afef199bSTzanio 1797afef199bSTzanio# When the SEARCHENGINE tag is enabled doxygen will generate a search box for 1798afef199bSTzanio# the HTML output. The underlying search engine uses javascript and DHTML and 1799afef199bSTzanio# should work on any modern browser. Note that when using HTML help 1800afef199bSTzanio# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) 1801afef199bSTzanio# there is already a search function so this one should typically be disabled. 1802afef199bSTzanio# For large projects the javascript based search engine can be slow, then 1803afef199bSTzanio# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to 1804afef199bSTzanio# search using the keyboard; to jump to the search box use <access key> + S 1805afef199bSTzanio# (what the <access key> is depends on the OS and browser, but it is typically 1806afef199bSTzanio# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down 1807afef199bSTzanio# key> to jump into the search results window, the results can be navigated 1808afef199bSTzanio# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel 1809afef199bSTzanio# the search. The filter options can be selected when the cursor is inside the 1810afef199bSTzanio# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> 1811afef199bSTzanio# to select a filter and <Enter> or <escape> to activate or cancel the filter 1812afef199bSTzanio# option. 1813afef199bSTzanio# The default value is: YES. 1814afef199bSTzanio# This tag requires that the tag GENERATE_HTML is set to YES. 1815afef199bSTzanio 1816afef199bSTzanioSEARCHENGINE = YES 1817afef199bSTzanio 1818afef199bSTzanio# When the SERVER_BASED_SEARCH tag is enabled the search engine will be 1819b52d7143SJeremy L Thompson# implemented using a web server instead of a web client using JavaScript. There 1820afef199bSTzanio# are two flavors of web server based searching depending on the EXTERNAL_SEARCH 1821afef199bSTzanio# setting. When disabled, doxygen will generate a PHP script for searching and 1822afef199bSTzanio# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing 1823afef199bSTzanio# and searching needs to be provided by external tools. See the section 1824afef199bSTzanio# "External Indexing and Searching" for details. 1825afef199bSTzanio# The default value is: NO. 1826afef199bSTzanio# This tag requires that the tag SEARCHENGINE is set to YES. 1827afef199bSTzanio 1828afef199bSTzanioSERVER_BASED_SEARCH = NO 1829afef199bSTzanio 1830afef199bSTzanio# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP 1831afef199bSTzanio# script for searching. Instead the search results are written to an XML file 1832afef199bSTzanio# which needs to be processed by an external indexer. Doxygen will invoke an 1833afef199bSTzanio# external search engine pointed to by the SEARCHENGINE_URL option to obtain the 1834afef199bSTzanio# search results. 1835afef199bSTzanio# 1836afef199bSTzanio# Doxygen ships with an example indexer (doxyindexer) and search engine 1837afef199bSTzanio# (doxysearch.cgi) which are based on the open source search engine library 1838b52d7143SJeremy L Thompson# Xapian (see: 1839b52d7143SJeremy L Thompson# https://xapian.org/). 1840afef199bSTzanio# 1841afef199bSTzanio# See the section "External Indexing and Searching" for details. 1842afef199bSTzanio# The default value is: NO. 1843afef199bSTzanio# This tag requires that the tag SEARCHENGINE is set to YES. 1844afef199bSTzanio 1845afef199bSTzanioEXTERNAL_SEARCH = NO 1846afef199bSTzanio 1847afef199bSTzanio# The SEARCHENGINE_URL should point to a search engine hosted by a web server 1848afef199bSTzanio# which will return the search results when EXTERNAL_SEARCH is enabled. 1849afef199bSTzanio# 1850afef199bSTzanio# Doxygen ships with an example indexer (doxyindexer) and search engine 1851afef199bSTzanio# (doxysearch.cgi) which are based on the open source search engine library 1852b52d7143SJeremy L Thompson# Xapian (see: 1853b52d7143SJeremy L Thompson# https://xapian.org/). See the section "External Indexing and Searching" for 1854b52d7143SJeremy L Thompson# details. 1855afef199bSTzanio# This tag requires that the tag SEARCHENGINE is set to YES. 1856afef199bSTzanio 1857afef199bSTzanioSEARCHENGINE_URL = 1858afef199bSTzanio 1859afef199bSTzanio# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed 1860afef199bSTzanio# search data is written to a file for indexing by an external tool. With the 1861afef199bSTzanio# SEARCHDATA_FILE tag the name of this file can be specified. 1862afef199bSTzanio# The default file is: searchdata.xml. 1863afef199bSTzanio# This tag requires that the tag SEARCHENGINE is set to YES. 1864afef199bSTzanio 1865afef199bSTzanioSEARCHDATA_FILE = searchdata.xml 1866afef199bSTzanio 1867afef199bSTzanio# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the 1868afef199bSTzanio# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is 1869afef199bSTzanio# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple 1870afef199bSTzanio# projects and redirect the results back to the right project. 1871afef199bSTzanio# This tag requires that the tag SEARCHENGINE is set to YES. 1872afef199bSTzanio 1873afef199bSTzanioEXTERNAL_SEARCH_ID = 1874afef199bSTzanio 1875afef199bSTzanio# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen 1876afef199bSTzanio# projects other than the one defined by this configuration file, but that are 1877afef199bSTzanio# all added to the same external search index. Each project needs to have a 1878afef199bSTzanio# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of 1879afef199bSTzanio# to a relative location where the documentation can be found. The format is: 1880afef199bSTzanio# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... 1881afef199bSTzanio# This tag requires that the tag SEARCHENGINE is set to YES. 1882afef199bSTzanio 1883afef199bSTzanioEXTRA_SEARCH_MAPPINGS = 1884afef199bSTzanio 1885afef199bSTzanio#--------------------------------------------------------------------------- 1886afef199bSTzanio# Configuration options related to the LaTeX output 1887afef199bSTzanio#--------------------------------------------------------------------------- 1888afef199bSTzanio 1889afef199bSTzanio# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. 1890afef199bSTzanio# The default value is: YES. 1891afef199bSTzanio 1892afef199bSTzanioGENERATE_LATEX = NO 1893afef199bSTzanio 1894afef199bSTzanio# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a 1895afef199bSTzanio# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1896afef199bSTzanio# it. 1897afef199bSTzanio# The default directory is: latex. 1898afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 1899afef199bSTzanio 1900afef199bSTzanioLATEX_OUTPUT = latex 1901afef199bSTzanio 1902afef199bSTzanio# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 1903afef199bSTzanio# invoked. 1904afef199bSTzanio# 1905288c0443SJeremy L Thompson# Note that when not enabling USE_PDFLATEX the default is latex when enabling 1906288c0443SJeremy L Thompson# USE_PDFLATEX the default is pdflatex and when in the later case latex is 1907288c0443SJeremy L Thompson# chosen this is overwritten by pdflatex. For specific output languages the 1908288c0443SJeremy L Thompson# default can have been set differently, this depends on the implementation of 1909288c0443SJeremy L Thompson# the output language. 1910afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 1911afef199bSTzanio 1912afef199bSTzanioLATEX_CMD_NAME = latex 1913afef199bSTzanio 1914afef199bSTzanio# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate 1915afef199bSTzanio# index for LaTeX. 1916288c0443SJeremy L Thompson# Note: This tag is used in the Makefile / make.bat. 1917288c0443SJeremy L Thompson# See also: LATEX_MAKEINDEX_CMD for the part in the generated output file 1918288c0443SJeremy L Thompson# (.tex). 1919afef199bSTzanio# The default file is: makeindex. 1920afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 1921afef199bSTzanio 1922afef199bSTzanioMAKEINDEX_CMD_NAME = makeindex 1923afef199bSTzanio 1924288c0443SJeremy L Thompson# The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to 1925288c0443SJeremy L Thompson# generate index for LaTeX. In case there is no backslash (\) as first character 1926288c0443SJeremy L Thompson# it will be automatically added in the LaTeX code. 1927288c0443SJeremy L Thompson# Note: This tag is used in the generated output file (.tex). 1928288c0443SJeremy L Thompson# See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat. 1929288c0443SJeremy L Thompson# The default value is: makeindex. 1930288c0443SJeremy L Thompson# This tag requires that the tag GENERATE_LATEX is set to YES. 1931288c0443SJeremy L Thompson 1932288c0443SJeremy L ThompsonLATEX_MAKEINDEX_CMD = makeindex 1933288c0443SJeremy L Thompson 1934afef199bSTzanio# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX 1935afef199bSTzanio# documents. This may be useful for small projects and may help to save some 1936afef199bSTzanio# trees in general. 1937afef199bSTzanio# The default value is: NO. 1938afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 1939afef199bSTzanio 1940afef199bSTzanioCOMPACT_LATEX = NO 1941afef199bSTzanio 1942afef199bSTzanio# The PAPER_TYPE tag can be used to set the paper type that is used by the 1943afef199bSTzanio# printer. 1944afef199bSTzanio# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x 1945afef199bSTzanio# 14 inches) and executive (7.25 x 10.5 inches). 1946afef199bSTzanio# The default value is: a4. 1947afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 1948afef199bSTzanio 1949afef199bSTzanioPAPER_TYPE = letter 1950afef199bSTzanio 1951afef199bSTzanio# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names 1952afef199bSTzanio# that should be included in the LaTeX output. The package can be specified just 1953afef199bSTzanio# by its name or with the correct syntax as to be used with the LaTeX 1954afef199bSTzanio# \usepackage command. To get the times font for instance you can specify : 1955afef199bSTzanio# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times} 1956afef199bSTzanio# To use the option intlimits with the amsmath package you can specify: 1957afef199bSTzanio# EXTRA_PACKAGES=[intlimits]{amsmath} 1958afef199bSTzanio# If left blank no extra packages will be included. 1959afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 1960afef199bSTzanio 1961afef199bSTzanioEXTRA_PACKAGES = amsmath 1962afef199bSTzanio 1963b52d7143SJeremy L Thompson# The LATEX_HEADER tag can be used to specify a user-defined LaTeX header for 1964b52d7143SJeremy L Thompson# the generated LaTeX document. The header should contain everything until the 1965b52d7143SJeremy L Thompson# first chapter. If it is left blank doxygen will generate a standard header. It 1966b52d7143SJeremy L Thompson# is highly recommended to start with a default header using 1967b52d7143SJeremy L Thompson# doxygen -w latex new_header.tex new_footer.tex new_stylesheet.sty 1968b52d7143SJeremy L Thompson# and then modify the file new_header.tex. See also section "Doxygen usage" for 1969b52d7143SJeremy L Thompson# information on how to generate the default header that doxygen normally uses. 1970afef199bSTzanio# 1971b52d7143SJeremy L Thompson# Note: Only use a user-defined header if you know what you are doing! 1972b52d7143SJeremy L Thompson# Note: The header is subject to change so you typically have to regenerate the 1973b52d7143SJeremy L Thompson# default header when upgrading to a newer version of doxygen. The following 1974b52d7143SJeremy L Thompson# commands have a special meaning inside the header (and footer): For a 1975b52d7143SJeremy L Thompson# description of the possible markers and block names see the documentation. 1976afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 1977afef199bSTzanio 1978afef199bSTzanioLATEX_HEADER = 1979afef199bSTzanio 1980b52d7143SJeremy L Thompson# The LATEX_FOOTER tag can be used to specify a user-defined LaTeX footer for 1981b52d7143SJeremy L Thompson# the generated LaTeX document. The footer should contain everything after the 1982b52d7143SJeremy L Thompson# last chapter. If it is left blank doxygen will generate a standard footer. See 1983afef199bSTzanio# LATEX_HEADER for more information on how to generate a default footer and what 1984b52d7143SJeremy L Thompson# special commands can be used inside the footer. See also section "Doxygen 1985b52d7143SJeremy L Thompson# usage" for information on how to generate the default footer that doxygen 1986b52d7143SJeremy L Thompson# normally uses. Note: Only use a user-defined footer if you know what you are 1987b52d7143SJeremy L Thompson# doing! 1988afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 1989afef199bSTzanio 1990afef199bSTzanioLATEX_FOOTER = 1991afef199bSTzanio 1992afef199bSTzanio# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined 1993afef199bSTzanio# LaTeX style sheets that are included after the standard style sheets created 1994afef199bSTzanio# by doxygen. Using this option one can overrule certain style aspects. Doxygen 1995afef199bSTzanio# will copy the style sheet files to the output directory. 1996afef199bSTzanio# Note: The order of the extra style sheet files is of importance (e.g. the last 1997afef199bSTzanio# style sheet in the list overrules the setting of the previous ones in the 1998afef199bSTzanio# list). 1999afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 2000afef199bSTzanio 2001afef199bSTzanioLATEX_EXTRA_STYLESHEET = 2002afef199bSTzanio 2003afef199bSTzanio# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or 2004afef199bSTzanio# other source files which should be copied to the LATEX_OUTPUT output 2005afef199bSTzanio# directory. Note that the files will be copied as-is; there are no commands or 2006afef199bSTzanio# markers available. 2007afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 2008afef199bSTzanio 2009afef199bSTzanioLATEX_EXTRA_FILES = 2010afef199bSTzanio 2011afef199bSTzanio# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is 2012afef199bSTzanio# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will 2013afef199bSTzanio# contain links (just like the HTML output) instead of page references. This 2014afef199bSTzanio# makes the output suitable for online browsing using a PDF viewer. 2015afef199bSTzanio# The default value is: YES. 2016afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 2017afef199bSTzanio 2018afef199bSTzanioPDF_HYPERLINKS = YES 2019afef199bSTzanio 2020b52d7143SJeremy L Thompson# If the USE_PDFLATEX tag is set to YES, doxygen will use the engine as 2021b52d7143SJeremy L Thompson# specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX 2022b52d7143SJeremy L Thompson# files. Set this option to YES, to get a higher quality PDF documentation. 2023b52d7143SJeremy L Thompson# 2024b52d7143SJeremy L Thompson# See also section LATEX_CMD_NAME for selecting the engine. 2025afef199bSTzanio# The default value is: YES. 2026afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 2027afef199bSTzanio 2028afef199bSTzanioUSE_PDFLATEX = YES 2029afef199bSTzanio 2030afef199bSTzanio# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode 2031afef199bSTzanio# command to the generated LaTeX files. This will instruct LaTeX to keep running 2032b52d7143SJeremy L Thompson# if errors occur, instead of asking the user for help. 2033afef199bSTzanio# The default value is: NO. 2034afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 2035afef199bSTzanio 2036afef199bSTzanioLATEX_BATCHMODE = NO 2037afef199bSTzanio 2038afef199bSTzanio# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the 2039afef199bSTzanio# index chapters (such as File Index, Compound Index, etc.) in the output. 2040afef199bSTzanio# The default value is: NO. 2041afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 2042afef199bSTzanio 2043afef199bSTzanioLATEX_HIDE_INDICES = NO 2044afef199bSTzanio 2045afef199bSTzanio# The LATEX_BIB_STYLE tag can be used to specify the style to use for the 2046afef199bSTzanio# bibliography, e.g. plainnat, or ieeetr. See 2047288c0443SJeremy L Thompson# https://en.wikipedia.org/wiki/BibTeX and \cite for more info. 2048afef199bSTzanio# The default value is: plain. 2049afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 2050afef199bSTzanio 2051afef199bSTzanioLATEX_BIB_STYLE = plain 2052afef199bSTzanio 2053afef199bSTzanio# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated 2054afef199bSTzanio# page will contain the date and time when the page was generated. Setting this 2055afef199bSTzanio# to NO can help when comparing the output of multiple runs. 2056afef199bSTzanio# The default value is: NO. 2057afef199bSTzanio# This tag requires that the tag GENERATE_LATEX is set to YES. 2058afef199bSTzanio 2059afef199bSTzanioLATEX_TIMESTAMP = NO 2060afef199bSTzanio 2061288c0443SJeremy L Thompson# The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute) 2062288c0443SJeremy L Thompson# path from which the emoji images will be read. If a relative path is entered, 2063288c0443SJeremy L Thompson# it will be relative to the LATEX_OUTPUT directory. If left blank the 2064288c0443SJeremy L Thompson# LATEX_OUTPUT directory will be used. 2065288c0443SJeremy L Thompson# This tag requires that the tag GENERATE_LATEX is set to YES. 2066288c0443SJeremy L Thompson 2067288c0443SJeremy L ThompsonLATEX_EMOJI_DIRECTORY = 2068288c0443SJeremy L Thompson 2069afef199bSTzanio#--------------------------------------------------------------------------- 2070afef199bSTzanio# Configuration options related to the RTF output 2071afef199bSTzanio#--------------------------------------------------------------------------- 2072afef199bSTzanio 2073afef199bSTzanio# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The 2074afef199bSTzanio# RTF output is optimized for Word 97 and may not look too pretty with other RTF 2075afef199bSTzanio# readers/editors. 2076afef199bSTzanio# The default value is: NO. 2077afef199bSTzanio 2078afef199bSTzanioGENERATE_RTF = NO 2079afef199bSTzanio 2080afef199bSTzanio# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a 2081afef199bSTzanio# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 2082afef199bSTzanio# it. 2083afef199bSTzanio# The default directory is: rtf. 2084afef199bSTzanio# This tag requires that the tag GENERATE_RTF is set to YES. 2085afef199bSTzanio 2086afef199bSTzanioRTF_OUTPUT = rtf 2087afef199bSTzanio 2088afef199bSTzanio# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF 2089afef199bSTzanio# documents. This may be useful for small projects and may help to save some 2090afef199bSTzanio# trees in general. 2091afef199bSTzanio# The default value is: NO. 2092afef199bSTzanio# This tag requires that the tag GENERATE_RTF is set to YES. 2093afef199bSTzanio 2094afef199bSTzanioCOMPACT_RTF = NO 2095afef199bSTzanio 2096afef199bSTzanio# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will 2097afef199bSTzanio# contain hyperlink fields. The RTF file will contain links (just like the HTML 2098afef199bSTzanio# output) instead of page references. This makes the output suitable for online 2099afef199bSTzanio# browsing using Word or some other Word compatible readers that support those 2100afef199bSTzanio# fields. 2101afef199bSTzanio# 2102afef199bSTzanio# Note: WordPad (write) and others do not support links. 2103afef199bSTzanio# The default value is: NO. 2104afef199bSTzanio# This tag requires that the tag GENERATE_RTF is set to YES. 2105afef199bSTzanio 2106afef199bSTzanioRTF_HYPERLINKS = NO 2107afef199bSTzanio 2108288c0443SJeremy L Thompson# Load stylesheet definitions from file. Syntax is similar to doxygen's 2109288c0443SJeremy L Thompson# configuration file, i.e. a series of assignments. You only have to provide 2110288c0443SJeremy L Thompson# replacements, missing definitions are set to their default value. 2111afef199bSTzanio# 2112afef199bSTzanio# See also section "Doxygen usage" for information on how to generate the 2113afef199bSTzanio# default style sheet that doxygen normally uses. 2114afef199bSTzanio# This tag requires that the tag GENERATE_RTF is set to YES. 2115afef199bSTzanio 2116afef199bSTzanioRTF_STYLESHEET_FILE = 2117afef199bSTzanio 2118afef199bSTzanio# Set optional variables used in the generation of an RTF document. Syntax is 2119288c0443SJeremy L Thompson# similar to doxygen's configuration file. A template extensions file can be 2120288c0443SJeremy L Thompson# generated using doxygen -e rtf extensionFile. 2121afef199bSTzanio# This tag requires that the tag GENERATE_RTF is set to YES. 2122afef199bSTzanio 2123afef199bSTzanioRTF_EXTENSIONS_FILE = 2124afef199bSTzanio 2125afef199bSTzanio#--------------------------------------------------------------------------- 2126afef199bSTzanio# Configuration options related to the man page output 2127afef199bSTzanio#--------------------------------------------------------------------------- 2128afef199bSTzanio 2129afef199bSTzanio# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for 2130afef199bSTzanio# classes and files. 2131afef199bSTzanio# The default value is: NO. 2132afef199bSTzanio 2133afef199bSTzanioGENERATE_MAN = NO 2134afef199bSTzanio 2135afef199bSTzanio# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a 2136afef199bSTzanio# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 2137afef199bSTzanio# it. A directory man3 will be created inside the directory specified by 2138afef199bSTzanio# MAN_OUTPUT. 2139afef199bSTzanio# The default directory is: man. 2140afef199bSTzanio# This tag requires that the tag GENERATE_MAN is set to YES. 2141afef199bSTzanio 2142afef199bSTzanioMAN_OUTPUT = man 2143afef199bSTzanio 2144afef199bSTzanio# The MAN_EXTENSION tag determines the extension that is added to the generated 2145afef199bSTzanio# man pages. In case the manual section does not start with a number, the number 2146afef199bSTzanio# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is 2147afef199bSTzanio# optional. 2148afef199bSTzanio# The default value is: .3. 2149afef199bSTzanio# This tag requires that the tag GENERATE_MAN is set to YES. 2150afef199bSTzanio 2151afef199bSTzanioMAN_EXTENSION = .3 2152afef199bSTzanio 2153afef199bSTzanio# The MAN_SUBDIR tag determines the name of the directory created within 2154afef199bSTzanio# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by 2155afef199bSTzanio# MAN_EXTENSION with the initial . removed. 2156afef199bSTzanio# This tag requires that the tag GENERATE_MAN is set to YES. 2157afef199bSTzanio 2158afef199bSTzanioMAN_SUBDIR = 2159afef199bSTzanio 2160afef199bSTzanio# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it 2161afef199bSTzanio# will generate one additional man file for each entity documented in the real 2162afef199bSTzanio# man page(s). These additional files only source the real man page, but without 2163afef199bSTzanio# them the man command would be unable to find the correct page. 2164afef199bSTzanio# The default value is: NO. 2165afef199bSTzanio# This tag requires that the tag GENERATE_MAN is set to YES. 2166afef199bSTzanio 2167afef199bSTzanioMAN_LINKS = NO 2168afef199bSTzanio 2169afef199bSTzanio#--------------------------------------------------------------------------- 2170afef199bSTzanio# Configuration options related to the XML output 2171afef199bSTzanio#--------------------------------------------------------------------------- 2172afef199bSTzanio 2173afef199bSTzanio# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that 2174afef199bSTzanio# captures the structure of the code including all documentation. 2175afef199bSTzanio# The default value is: NO. 2176afef199bSTzanio 21774c4400c7SValeria BarraGENERATE_XML = YES 2178afef199bSTzanio 2179afef199bSTzanio# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a 2180afef199bSTzanio# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 2181afef199bSTzanio# it. 2182afef199bSTzanio# The default directory is: xml. 2183afef199bSTzanio# This tag requires that the tag GENERATE_XML is set to YES. 2184afef199bSTzanio 2185afef199bSTzanioXML_OUTPUT = xml 2186afef199bSTzanio 2187afef199bSTzanio# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program 2188afef199bSTzanio# listings (including syntax highlighting and cross-referencing information) to 2189afef199bSTzanio# the XML output. Note that enabling this will significantly increase the size 2190afef199bSTzanio# of the XML output. 2191afef199bSTzanio# The default value is: YES. 2192afef199bSTzanio# This tag requires that the tag GENERATE_XML is set to YES. 2193afef199bSTzanio 2194afef199bSTzanioXML_PROGRAMLISTING = YES 2195afef199bSTzanio 2196288c0443SJeremy L Thompson# If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include 2197288c0443SJeremy L Thompson# namespace members in file scope as well, matching the HTML output. 2198288c0443SJeremy L Thompson# The default value is: NO. 2199288c0443SJeremy L Thompson# This tag requires that the tag GENERATE_XML is set to YES. 2200288c0443SJeremy L Thompson 2201288c0443SJeremy L ThompsonXML_NS_MEMB_FILE_SCOPE = NO 2202288c0443SJeremy L Thompson 2203afef199bSTzanio#--------------------------------------------------------------------------- 2204afef199bSTzanio# Configuration options related to the DOCBOOK output 2205afef199bSTzanio#--------------------------------------------------------------------------- 2206afef199bSTzanio 2207afef199bSTzanio# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files 2208afef199bSTzanio# that can be used to generate PDF. 2209afef199bSTzanio# The default value is: NO. 2210afef199bSTzanio 2211afef199bSTzanioGENERATE_DOCBOOK = NO 2212afef199bSTzanio 2213afef199bSTzanio# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. 2214afef199bSTzanio# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in 2215afef199bSTzanio# front of it. 2216afef199bSTzanio# The default directory is: docbook. 2217afef199bSTzanio# This tag requires that the tag GENERATE_DOCBOOK is set to YES. 2218afef199bSTzanio 2219afef199bSTzanioDOCBOOK_OUTPUT = docbook 2220afef199bSTzanio 2221afef199bSTzanio#--------------------------------------------------------------------------- 2222afef199bSTzanio# Configuration options for the AutoGen Definitions output 2223afef199bSTzanio#--------------------------------------------------------------------------- 2224afef199bSTzanio 2225afef199bSTzanio# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an 2226288c0443SJeremy L Thompson# AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures 2227288c0443SJeremy L Thompson# the structure of the code including all documentation. Note that this feature 2228288c0443SJeremy L Thompson# is still experimental and incomplete at the moment. 2229afef199bSTzanio# The default value is: NO. 2230afef199bSTzanio 2231afef199bSTzanioGENERATE_AUTOGEN_DEF = NO 2232afef199bSTzanio 2233afef199bSTzanio#--------------------------------------------------------------------------- 2234afef199bSTzanio# Configuration options related to the Perl module output 2235afef199bSTzanio#--------------------------------------------------------------------------- 2236afef199bSTzanio 2237afef199bSTzanio# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module 2238afef199bSTzanio# file that captures the structure of the code including all documentation. 2239afef199bSTzanio# 2240afef199bSTzanio# Note that this feature is still experimental and incomplete at the moment. 2241afef199bSTzanio# The default value is: NO. 2242afef199bSTzanio 2243afef199bSTzanioGENERATE_PERLMOD = NO 2244afef199bSTzanio 2245afef199bSTzanio# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary 2246afef199bSTzanio# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI 2247afef199bSTzanio# output from the Perl module output. 2248afef199bSTzanio# The default value is: NO. 2249afef199bSTzanio# This tag requires that the tag GENERATE_PERLMOD is set to YES. 2250afef199bSTzanio 2251afef199bSTzanioPERLMOD_LATEX = NO 2252afef199bSTzanio 2253afef199bSTzanio# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely 2254afef199bSTzanio# formatted so it can be parsed by a human reader. This is useful if you want to 2255afef199bSTzanio# understand what is going on. On the other hand, if this tag is set to NO, the 2256afef199bSTzanio# size of the Perl module output will be much smaller and Perl will parse it 2257afef199bSTzanio# just the same. 2258afef199bSTzanio# The default value is: YES. 2259afef199bSTzanio# This tag requires that the tag GENERATE_PERLMOD is set to YES. 2260afef199bSTzanio 2261afef199bSTzanioPERLMOD_PRETTY = YES 2262afef199bSTzanio 2263afef199bSTzanio# The names of the make variables in the generated doxyrules.make file are 2264afef199bSTzanio# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful 2265afef199bSTzanio# so different doxyrules.make files included by the same Makefile don't 2266afef199bSTzanio# overwrite each other's variables. 2267afef199bSTzanio# This tag requires that the tag GENERATE_PERLMOD is set to YES. 2268afef199bSTzanio 2269afef199bSTzanioPERLMOD_MAKEVAR_PREFIX = 2270afef199bSTzanio 2271afef199bSTzanio#--------------------------------------------------------------------------- 2272afef199bSTzanio# Configuration options related to the preprocessor 2273afef199bSTzanio#--------------------------------------------------------------------------- 2274afef199bSTzanio 2275afef199bSTzanio# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all 2276afef199bSTzanio# C-preprocessor directives found in the sources and include files. 2277afef199bSTzanio# The default value is: YES. 2278afef199bSTzanio 22798c23e06aSJed BrownENABLE_PREPROCESSING = YES 2280afef199bSTzanio 2281afef199bSTzanio# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names 2282afef199bSTzanio# in the source code. If set to NO, only conditional compilation will be 2283afef199bSTzanio# performed. Macro expansion can be done in a controlled way by setting 2284afef199bSTzanio# EXPAND_ONLY_PREDEF to YES. 2285afef199bSTzanio# The default value is: NO. 2286afef199bSTzanio# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2287afef199bSTzanio 22882517cf59SJed BrownMACRO_EXPANSION = YES 2289afef199bSTzanio 2290afef199bSTzanio# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then 2291afef199bSTzanio# the macro expansion is limited to the macros specified with the PREDEFINED and 2292afef199bSTzanio# EXPAND_AS_DEFINED tags. 2293afef199bSTzanio# The default value is: NO. 2294afef199bSTzanio# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2295afef199bSTzanio 22962517cf59SJed BrownEXPAND_ONLY_PREDEF = YES 2297afef199bSTzanio 2298afef199bSTzanio# If the SEARCH_INCLUDES tag is set to YES, the include files in the 2299afef199bSTzanio# INCLUDE_PATH will be searched if a #include is found. 2300afef199bSTzanio# The default value is: YES. 2301afef199bSTzanio# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2302afef199bSTzanio 2303afef199bSTzanioSEARCH_INCLUDES = YES 2304afef199bSTzanio 2305afef199bSTzanio# The INCLUDE_PATH tag can be used to specify one or more directories that 2306afef199bSTzanio# contain include files that are not input files but should be processed by the 2307*01ff933cSJeremy L Thompson# preprocessor. Note that the INCLUDE_PATH is not recursive, so the setting of 2308*01ff933cSJeremy L Thompson# RECURSIVE has no effect here. 2309afef199bSTzanio# This tag requires that the tag SEARCH_INCLUDES is set to YES. 2310afef199bSTzanio 2311afef199bSTzanioINCLUDE_PATH = 2312afef199bSTzanio 2313afef199bSTzanio# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 2314afef199bSTzanio# patterns (like *.h and *.hpp) to filter out the header-files in the 2315afef199bSTzanio# directories. If left blank, the patterns specified with FILE_PATTERNS will be 2316afef199bSTzanio# used. 2317afef199bSTzanio# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2318afef199bSTzanio 2319afef199bSTzanioINCLUDE_FILE_PATTERNS = 2320afef199bSTzanio 2321afef199bSTzanio# The PREDEFINED tag can be used to specify one or more macro names that are 2322afef199bSTzanio# defined before the preprocessor is started (similar to the -D option of e.g. 2323afef199bSTzanio# gcc). The argument of the tag is a list of macros of the form: name or 2324afef199bSTzanio# name=definition (no spaces). If the definition and the "=" are omitted, "=1" 2325afef199bSTzanio# is assumed. To prevent a macro definition from being undefined via #undef or 2326afef199bSTzanio# recursively expanded use the := operator instead of the = operator. 2327afef199bSTzanio# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2328afef199bSTzanio 2329b52d7143SJeremy L ThompsonPREDEFINED = CeedPragmaOptimizeOn= \ 2330b52d7143SJeremy L Thompson CeedPragmaOptimizeOff= 2331afef199bSTzanio 2332afef199bSTzanio# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this 2333afef199bSTzanio# tag can be used to specify a list of macro names that should be expanded. The 2334afef199bSTzanio# macro definition that is found in the sources will be used. Use the PREDEFINED 2335afef199bSTzanio# tag if you want to use a different macro definition that overrules the 2336afef199bSTzanio# definition found in the source code. 2337afef199bSTzanio# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2338afef199bSTzanio 2339afef199bSTzanioEXPAND_AS_DEFINED = 2340afef199bSTzanio 2341afef199bSTzanio# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will 2342afef199bSTzanio# remove all references to function-like macros that are alone on a line, have 2343afef199bSTzanio# an all uppercase name, and do not end with a semicolon. Such function macros 2344afef199bSTzanio# are typically used for boiler-plate code, and will confuse the parser if not 2345afef199bSTzanio# removed. 2346afef199bSTzanio# The default value is: YES. 2347afef199bSTzanio# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2348afef199bSTzanio 2349afef199bSTzanioSKIP_FUNCTION_MACROS = YES 2350afef199bSTzanio 2351afef199bSTzanio#--------------------------------------------------------------------------- 2352afef199bSTzanio# Configuration options related to external references 2353afef199bSTzanio#--------------------------------------------------------------------------- 2354afef199bSTzanio 2355afef199bSTzanio# The TAGFILES tag can be used to specify one or more tag files. For each tag 2356afef199bSTzanio# file the location of the external documentation should be added. The format of 2357afef199bSTzanio# a tag file without this location is as follows: 2358afef199bSTzanio# TAGFILES = file1 file2 ... 2359afef199bSTzanio# Adding location for the tag files is done as follows: 2360afef199bSTzanio# TAGFILES = file1=loc1 "file2 = loc2" ... 2361afef199bSTzanio# where loc1 and loc2 can be relative or absolute paths or URLs. See the 2362afef199bSTzanio# section "Linking to external documentation" for more information about the use 2363afef199bSTzanio# of tag files. 2364afef199bSTzanio# Note: Each tag file must have a unique name (where the name does NOT include 2365afef199bSTzanio# the path). If a tag file is not located in the directory in which doxygen is 2366afef199bSTzanio# run, you must also specify the path to the tagfile here. 2367afef199bSTzanio 2368afef199bSTzanioTAGFILES = 2369afef199bSTzanio 2370afef199bSTzanio# When a file name is specified after GENERATE_TAGFILE, doxygen will create a 2371afef199bSTzanio# tag file that is based on the input files it reads. See section "Linking to 2372afef199bSTzanio# external documentation" for more information about the usage of tag files. 2373afef199bSTzanio 2374afef199bSTzanioGENERATE_TAGFILE = 2375afef199bSTzanio 2376afef199bSTzanio# If the ALLEXTERNALS tag is set to YES, all external class will be listed in 2377afef199bSTzanio# the class index. If set to NO, only the inherited external classes will be 2378afef199bSTzanio# listed. 2379afef199bSTzanio# The default value is: NO. 2380afef199bSTzanio 2381afef199bSTzanioALLEXTERNALS = NO 2382afef199bSTzanio 2383afef199bSTzanio# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed 2384afef199bSTzanio# in the modules index. If set to NO, only the current project's groups will be 2385afef199bSTzanio# listed. 2386afef199bSTzanio# The default value is: YES. 2387afef199bSTzanio 2388afef199bSTzanioEXTERNAL_GROUPS = YES 2389afef199bSTzanio 2390afef199bSTzanio# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in 2391afef199bSTzanio# the related pages index. If set to NO, only the current project's pages will 2392afef199bSTzanio# be listed. 2393afef199bSTzanio# The default value is: YES. 2394afef199bSTzanio 2395afef199bSTzanioEXTERNAL_PAGES = YES 2396afef199bSTzanio 2397afef199bSTzanio#--------------------------------------------------------------------------- 2398afef199bSTzanio# Configuration options related to the dot tool 2399afef199bSTzanio#--------------------------------------------------------------------------- 2400afef199bSTzanio 2401afef199bSTzanio# You can include diagrams made with dia in doxygen documentation. Doxygen will 2402afef199bSTzanio# then run dia to produce the diagram and insert it in the documentation. The 2403afef199bSTzanio# DIA_PATH tag allows you to specify the directory where the dia binary resides. 2404afef199bSTzanio# If left empty dia is assumed to be found in the default search path. 2405afef199bSTzanio 2406afef199bSTzanioDIA_PATH = 2407afef199bSTzanio 2408afef199bSTzanio# If set to YES the inheritance and collaboration graphs will hide inheritance 2409afef199bSTzanio# and usage relations if the target is undocumented or is not a class. 2410afef199bSTzanio# The default value is: YES. 2411afef199bSTzanio 2412afef199bSTzanioHIDE_UNDOC_RELATIONS = YES 2413afef199bSTzanio 2414afef199bSTzanio# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 2415afef199bSTzanio# available from the path. This tool is part of Graphviz (see: 2416afef199bSTzanio# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent 2417afef199bSTzanio# Bell Labs. The other options in this section have no effect if this option is 2418afef199bSTzanio# set to NO 2419afef199bSTzanio# The default value is: NO. 2420afef199bSTzanio 24218ff2c270SJed BrownHAVE_DOT = NO 2422afef199bSTzanio 2423afef199bSTzanio# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed 2424afef199bSTzanio# to run in parallel. When set to 0 doxygen will base this on the number of 2425afef199bSTzanio# processors available in the system. You can set it explicitly to a value 2426afef199bSTzanio# larger than 0 to get control over the balance between CPU load and processing 2427afef199bSTzanio# speed. 2428afef199bSTzanio# Minimum value: 0, maximum value: 32, default value: 0. 2429afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2430afef199bSTzanio 2431afef199bSTzanioDOT_NUM_THREADS = 0 2432afef199bSTzanio 2433*01ff933cSJeremy L Thompson# DOT_COMMON_ATTR is common attributes for nodes, edges and labels of 2434*01ff933cSJeremy L Thompson# subgraphs. When you want a differently looking font in the dot files that 2435*01ff933cSJeremy L Thompson# doxygen generates you can specify fontname, fontcolor and fontsize attributes. 2436*01ff933cSJeremy L Thompson# For details please see <a href=https://graphviz.org/doc/info/attrs.html>Node, 2437*01ff933cSJeremy L Thompson# Edge and Graph Attributes specification</a> You need to make sure dot is able 2438*01ff933cSJeremy L Thompson# to find the font, which can be done by putting it in a standard location or by 2439*01ff933cSJeremy L Thompson# setting the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the 2440*01ff933cSJeremy L Thompson# directory containing the font. Default graphviz fontsize is 14. 2441*01ff933cSJeremy L Thompson# The default value is: fontname=Helvetica,fontsize=10. 2442afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2443afef199bSTzanio 2444*01ff933cSJeremy L ThompsonDOT_COMMON_ATTR = "fontname=Helvetica,fontsize=14" 2445afef199bSTzanio 2446*01ff933cSJeremy L Thompson# DOT_EDGE_ATTR is concatenated with DOT_COMMON_ATTR. For elegant style you can 2447*01ff933cSJeremy L Thompson# add 'arrowhead=open, arrowtail=open, arrowsize=0.5'. <a 2448*01ff933cSJeremy L Thompson# href=https://graphviz.org/doc/info/arrows.html>Complete documentation about 2449*01ff933cSJeremy L Thompson# arrows shapes.</a> 2450*01ff933cSJeremy L Thompson# The default value is: labelfontname=Helvetica,labelfontsize=10. 2451afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2452afef199bSTzanio 2453*01ff933cSJeremy L ThompsonDOT_EDGE_ATTR = "labelfontname=Helvetica,labelfontsize=14" 2454afef199bSTzanio 2455*01ff933cSJeremy L Thompson# DOT_NODE_ATTR is concatenated with DOT_COMMON_ATTR. For view without boxes 2456*01ff933cSJeremy L Thompson# around nodes set 'shape=plain' or 'shape=plaintext' <a 2457*01ff933cSJeremy L Thompson# href=https://www.graphviz.org/doc/info/shapes.html>Shapes specification</a> 2458*01ff933cSJeremy L Thompson# The default value is: shape=box,height=0.2,width=0.4. 2459*01ff933cSJeremy L Thompson# This tag requires that the tag HAVE_DOT is set to YES. 2460*01ff933cSJeremy L Thompson 2461*01ff933cSJeremy L ThompsonDOT_NODE_ATTR = "shape=box,height=0.2,width=0.4" 2462*01ff933cSJeremy L Thompson 2463*01ff933cSJeremy L Thompson# You can set the path where dot can find font specified with fontname in 2464*01ff933cSJeremy L Thompson# DOT_COMMON_ATTR and others dot attributes. 2465afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2466afef199bSTzanio 2467afef199bSTzanioDOT_FONTPATH = 2468afef199bSTzanio 24697dfc1a7dSJed Brown# If the CLASS_GRAPH tag is set to YES (or GRAPH) then doxygen will generate a 24707dfc1a7dSJed Brown# graph for each documented class showing the direct and indirect inheritance 24717dfc1a7dSJed Brown# relations. In case HAVE_DOT is set as well dot will be used to draw the graph, 24727dfc1a7dSJed Brown# otherwise the built-in generator will be used. If the CLASS_GRAPH tag is set 24737dfc1a7dSJed Brown# to TEXT the direct and indirect inheritance relations will be shown as texts / 24747dfc1a7dSJed Brown# links. 24757dfc1a7dSJed Brown# Possible values are: NO, YES, TEXT and GRAPH. 2476afef199bSTzanio# The default value is: YES. 2477afef199bSTzanio 2478afef199bSTzanioCLASS_GRAPH = YES 2479afef199bSTzanio 2480afef199bSTzanio# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a 2481afef199bSTzanio# graph for each documented class showing the direct and indirect implementation 2482afef199bSTzanio# dependencies (inheritance, containment, and class references variables) of the 2483afef199bSTzanio# class with other documented classes. 2484afef199bSTzanio# The default value is: YES. 2485afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2486afef199bSTzanio 2487afef199bSTzanioCOLLABORATION_GRAPH = YES 2488afef199bSTzanio 2489afef199bSTzanio# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for 2490*01ff933cSJeremy L Thompson# groups, showing the direct groups dependencies. See also the chapter Grouping 2491*01ff933cSJeremy L Thompson# in the manual. 2492afef199bSTzanio# The default value is: YES. 2493afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2494afef199bSTzanio 2495afef199bSTzanioGROUP_GRAPHS = YES 2496afef199bSTzanio 2497afef199bSTzanio# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and 2498afef199bSTzanio# collaboration diagrams in a style similar to the OMG's Unified Modeling 2499afef199bSTzanio# Language. 2500afef199bSTzanio# The default value is: NO. 2501afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2502afef199bSTzanio 2503afef199bSTzanioUML_LOOK = NO 2504afef199bSTzanio 2505afef199bSTzanio# If the UML_LOOK tag is enabled, the fields and methods are shown inside the 2506afef199bSTzanio# class node. If there are many fields or methods and many nodes the graph may 2507afef199bSTzanio# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the 2508afef199bSTzanio# number of items for each type to make the size more manageable. Set this to 0 2509afef199bSTzanio# for no limit. Note that the threshold may be exceeded by 50% before the limit 2510afef199bSTzanio# is enforced. So when you set the threshold to 10, up to 15 fields may appear, 2511afef199bSTzanio# but if the number exceeds 15, the total amount of fields shown is limited to 2512afef199bSTzanio# 10. 2513afef199bSTzanio# Minimum value: 0, maximum value: 100, default value: 10. 2514b52d7143SJeremy L Thompson# This tag requires that the tag UML_LOOK is set to YES. 2515afef199bSTzanio 2516afef199bSTzanioUML_LIMIT_NUM_FIELDS = 10 2517afef199bSTzanio 2518b52d7143SJeremy L Thompson# If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and 2519b52d7143SJeremy L Thompson# methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS 2520b52d7143SJeremy L Thompson# tag is set to YES, doxygen will add type and arguments for attributes and 2521b52d7143SJeremy L Thompson# methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen 2522b52d7143SJeremy L Thompson# will not generate fields with class member information in the UML graphs. The 2523b52d7143SJeremy L Thompson# class diagrams will look similar to the default class diagrams but using UML 2524b52d7143SJeremy L Thompson# notation for the relationships. 2525b52d7143SJeremy L Thompson# Possible values are: NO, YES and NONE. 2526b52d7143SJeremy L Thompson# The default value is: NO. 2527b52d7143SJeremy L Thompson# This tag requires that the tag UML_LOOK is set to YES. 2528b52d7143SJeremy L Thompson 2529b52d7143SJeremy L ThompsonDOT_UML_DETAILS = NO 2530b52d7143SJeremy L Thompson 2531b52d7143SJeremy L Thompson# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters 2532b52d7143SJeremy L Thompson# to display on a single line. If the actual line length exceeds this threshold 2533b52d7143SJeremy L Thompson# significantly it will wrapped across multiple lines. Some heuristics are apply 2534b52d7143SJeremy L Thompson# to avoid ugly line breaks. 2535b52d7143SJeremy L Thompson# Minimum value: 0, maximum value: 1000, default value: 17. 2536b52d7143SJeremy L Thompson# This tag requires that the tag HAVE_DOT is set to YES. 2537b52d7143SJeremy L Thompson 2538b52d7143SJeremy L ThompsonDOT_WRAP_THRESHOLD = 17 2539b52d7143SJeremy L Thompson 2540afef199bSTzanio# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and 2541afef199bSTzanio# collaboration graphs will show the relations between templates and their 2542afef199bSTzanio# instances. 2543afef199bSTzanio# The default value is: NO. 2544afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2545afef199bSTzanio 2546afef199bSTzanioTEMPLATE_RELATIONS = NO 2547afef199bSTzanio 2548afef199bSTzanio# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to 2549afef199bSTzanio# YES then doxygen will generate a graph for each documented file showing the 2550afef199bSTzanio# direct and indirect include dependencies of the file with other documented 2551afef199bSTzanio# files. 2552afef199bSTzanio# The default value is: YES. 2553afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2554afef199bSTzanio 2555afef199bSTzanioINCLUDE_GRAPH = YES 2556afef199bSTzanio 2557afef199bSTzanio# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are 2558afef199bSTzanio# set to YES then doxygen will generate a graph for each documented file showing 2559afef199bSTzanio# the direct and indirect include dependencies of the file with other documented 2560afef199bSTzanio# files. 2561afef199bSTzanio# The default value is: YES. 2562afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2563afef199bSTzanio 2564afef199bSTzanioINCLUDED_BY_GRAPH = YES 2565afef199bSTzanio 2566afef199bSTzanio# If the CALL_GRAPH tag is set to YES then doxygen will generate a call 2567afef199bSTzanio# dependency graph for every global function or class method. 2568afef199bSTzanio# 2569afef199bSTzanio# Note that enabling this option will significantly increase the time of a run. 2570afef199bSTzanio# So in most cases it will be better to enable call graphs for selected 2571afef199bSTzanio# functions only using the \callgraph command. Disabling a call graph can be 2572afef199bSTzanio# accomplished by means of the command \hidecallgraph. 2573afef199bSTzanio# The default value is: NO. 2574afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2575afef199bSTzanio 2576afef199bSTzanioCALL_GRAPH = NO 2577afef199bSTzanio 2578afef199bSTzanio# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller 2579afef199bSTzanio# dependency graph for every global function or class method. 2580afef199bSTzanio# 2581afef199bSTzanio# Note that enabling this option will significantly increase the time of a run. 2582afef199bSTzanio# So in most cases it will be better to enable caller graphs for selected 2583afef199bSTzanio# functions only using the \callergraph command. Disabling a caller graph can be 2584afef199bSTzanio# accomplished by means of the command \hidecallergraph. 2585afef199bSTzanio# The default value is: NO. 2586afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2587afef199bSTzanio 2588afef199bSTzanioCALLER_GRAPH = NO 2589afef199bSTzanio 2590afef199bSTzanio# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical 2591afef199bSTzanio# hierarchy of all classes instead of a textual one. 2592afef199bSTzanio# The default value is: YES. 2593afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2594afef199bSTzanio 2595afef199bSTzanioGRAPHICAL_HIERARCHY = YES 2596afef199bSTzanio 2597afef199bSTzanio# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the 2598afef199bSTzanio# dependencies a directory has on other directories in a graphical way. The 2599afef199bSTzanio# dependency relations are determined by the #include relations between the 2600afef199bSTzanio# files in the directories. 2601afef199bSTzanio# The default value is: YES. 2602afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2603afef199bSTzanio 2604afef199bSTzanioDIRECTORY_GRAPH = YES 2605afef199bSTzanio 26067dfc1a7dSJed Brown# The DIR_GRAPH_MAX_DEPTH tag can be used to limit the maximum number of levels 26077dfc1a7dSJed Brown# of child directories generated in directory dependency graphs by dot. 26087dfc1a7dSJed Brown# Minimum value: 1, maximum value: 25, default value: 1. 26097dfc1a7dSJed Brown# This tag requires that the tag DIRECTORY_GRAPH is set to YES. 26107dfc1a7dSJed Brown 26117dfc1a7dSJed BrownDIR_GRAPH_MAX_DEPTH = 1 26127dfc1a7dSJed Brown 2613afef199bSTzanio# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 2614afef199bSTzanio# generated by dot. For an explanation of the image formats see the section 2615afef199bSTzanio# output formats in the documentation of the dot tool (Graphviz (see: 2616afef199bSTzanio# http://www.graphviz.org/)). 2617afef199bSTzanio# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order 2618afef199bSTzanio# to make the SVG files visible in IE 9+ (other browsers do not have this 2619afef199bSTzanio# requirement). 2620afef199bSTzanio# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo, 2621afef199bSTzanio# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and 2622afef199bSTzanio# png:gdiplus:gdiplus. 2623afef199bSTzanio# The default value is: png. 2624afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2625afef199bSTzanio 2626afef199bSTzanioDOT_IMAGE_FORMAT = svg 2627afef199bSTzanio 2628afef199bSTzanio# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to 2629afef199bSTzanio# enable generation of interactive SVG images that allow zooming and panning. 2630afef199bSTzanio# 2631afef199bSTzanio# Note that this requires a modern browser other than Internet Explorer. Tested 2632afef199bSTzanio# and working are Firefox, Chrome, Safari, and Opera. 2633afef199bSTzanio# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make 2634afef199bSTzanio# the SVG files visible. Older versions of IE do not have SVG support. 2635afef199bSTzanio# The default value is: NO. 2636afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2637afef199bSTzanio 2638afef199bSTzanioINTERACTIVE_SVG = NO 2639afef199bSTzanio 2640afef199bSTzanio# The DOT_PATH tag can be used to specify the path where the dot tool can be 2641afef199bSTzanio# found. If left blank, it is assumed the dot tool can be found in the path. 2642afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2643afef199bSTzanio 2644afef199bSTzanioDOT_PATH = 2645afef199bSTzanio 2646afef199bSTzanio# The DOTFILE_DIRS tag can be used to specify one or more directories that 2647afef199bSTzanio# contain dot files that are included in the documentation (see the \dotfile 2648afef199bSTzanio# command). 2649afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2650afef199bSTzanio 2651afef199bSTzanioDOTFILE_DIRS = 2652afef199bSTzanio 2653afef199bSTzanio# The MSCFILE_DIRS tag can be used to specify one or more directories that 2654afef199bSTzanio# contain msc files that are included in the documentation (see the \mscfile 2655afef199bSTzanio# command). 2656afef199bSTzanio 2657afef199bSTzanioMSCFILE_DIRS = 2658afef199bSTzanio 2659afef199bSTzanio# The DIAFILE_DIRS tag can be used to specify one or more directories that 2660afef199bSTzanio# contain dia files that are included in the documentation (see the \diafile 2661afef199bSTzanio# command). 2662afef199bSTzanio 2663afef199bSTzanioDIAFILE_DIRS = 2664afef199bSTzanio 2665afef199bSTzanio# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the 26667dfc1a7dSJed Brown# path where java can find the plantuml.jar file or to the filename of jar file 26677dfc1a7dSJed Brown# to be used. If left blank, it is assumed PlantUML is not used or called during 26687dfc1a7dSJed Brown# a preprocessing step. Doxygen will generate a warning when it encounters a 26697dfc1a7dSJed Brown# \startuml command in this case and will not generate output for the diagram. 2670afef199bSTzanio 2671afef199bSTzanioPLANTUML_JAR_PATH = 2672afef199bSTzanio 2673288c0443SJeremy L Thompson# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a 2674288c0443SJeremy L Thompson# configuration file for plantuml. 2675288c0443SJeremy L Thompson 2676288c0443SJeremy L ThompsonPLANTUML_CFG_FILE = 2677288c0443SJeremy L Thompson 2678afef199bSTzanio# When using plantuml, the specified paths are searched for files specified by 2679afef199bSTzanio# the !include statement in a plantuml block. 2680afef199bSTzanio 2681afef199bSTzanioPLANTUML_INCLUDE_PATH = 2682afef199bSTzanio 2683afef199bSTzanio# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes 2684afef199bSTzanio# that will be shown in the graph. If the number of nodes in a graph becomes 2685afef199bSTzanio# larger than this value, doxygen will truncate the graph, which is visualized 2686afef199bSTzanio# by representing a node as a red box. Note that doxygen if the number of direct 2687afef199bSTzanio# children of the root node in a graph is already larger than 2688afef199bSTzanio# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that 2689afef199bSTzanio# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 2690afef199bSTzanio# Minimum value: 0, maximum value: 10000, default value: 50. 2691afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2692afef199bSTzanio 2693288c0443SJeremy L ThompsonDOT_GRAPH_MAX_NODES = 20 2694afef199bSTzanio 2695afef199bSTzanio# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs 2696afef199bSTzanio# generated by dot. A depth value of 3 means that only nodes reachable from the 2697afef199bSTzanio# root by following a path via at most 3 edges will be shown. Nodes that lay 2698afef199bSTzanio# further from the root node will be omitted. Note that setting this option to 1 2699afef199bSTzanio# or 2 may greatly reduce the computation time needed for large code bases. Also 2700afef199bSTzanio# note that the size of a graph can be further restricted by 2701afef199bSTzanio# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 2702afef199bSTzanio# Minimum value: 0, maximum value: 1000, default value: 0. 2703afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2704afef199bSTzanio 2705afef199bSTzanioMAX_DOT_GRAPH_DEPTH = 0 2706afef199bSTzanio 2707afef199bSTzanio# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output 2708afef199bSTzanio# files in one run (i.e. multiple -o and -T options on the command line). This 2709afef199bSTzanio# makes dot run faster, but since only newer versions of dot (>1.8.10) support 2710afef199bSTzanio# this, this feature is disabled by default. 2711afef199bSTzanio# The default value is: NO. 2712afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2713afef199bSTzanio 2714afef199bSTzanioDOT_MULTI_TARGETS = NO 2715afef199bSTzanio 2716afef199bSTzanio# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page 2717afef199bSTzanio# explaining the meaning of the various boxes and arrows in the dot generated 2718afef199bSTzanio# graphs. 27197dfc1a7dSJed Brown# Note: This tag requires that UML_LOOK isn't set, i.e. the doxygen internal 27207dfc1a7dSJed Brown# graphical representation for inheritance and collaboration diagrams is used. 2721afef199bSTzanio# The default value is: YES. 2722afef199bSTzanio# This tag requires that the tag HAVE_DOT is set to YES. 2723afef199bSTzanio 2724afef199bSTzanioGENERATE_LEGEND = YES 2725afef199bSTzanio 2726b52d7143SJeremy L Thompson# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate 2727afef199bSTzanio# files that are used to generate the various graphs. 2728b52d7143SJeremy L Thompson# 2729b52d7143SJeremy L Thompson# Note: This setting is not only used for dot files but also for msc temporary 2730b52d7143SJeremy L Thompson# files. 2731afef199bSTzanio# The default value is: YES. 2732afef199bSTzanio 2733afef199bSTzanioDOT_CLEANUP = YES 2734