15d3e7166SEd Maste# Doxyfile 1.9.6 210ff414cSEd Maste 310ff414cSEd Maste# This file describes the settings to be used by the documentation system 410ff414cSEd Maste# doxygen (www.doxygen.org) for a project. 510ff414cSEd Maste# 610ff414cSEd Maste# All text after a double hash (##) is considered a comment and is placed in 710ff414cSEd Maste# front of the TAG it is preceding. 810ff414cSEd Maste# 910ff414cSEd Maste# All text after a single hash (#) is considered a comment and will be ignored. 1010ff414cSEd Maste# The format is: 1110ff414cSEd Maste# TAG = value [value, ...] 1210ff414cSEd Maste# For lists, items can also be appended using: 1310ff414cSEd Maste# TAG += value [value, ...] 1410ff414cSEd Maste# Values that contain spaces should be placed between quotes (\" \"). 155d3e7166SEd Maste# 165d3e7166SEd Maste# Note: 175d3e7166SEd Maste# 185d3e7166SEd Maste# Use doxygen to compare the used configuration file with the template 195d3e7166SEd Maste# configuration file: 205d3e7166SEd Maste# doxygen -x [configFile] 215d3e7166SEd Maste# Use doxygen to compare the used configuration file with the template 225d3e7166SEd Maste# configuration file without replacing the environment variables or CMake type 235d3e7166SEd Maste# replacement variables: 245d3e7166SEd Maste# doxygen -x_noenv [configFile] 2510ff414cSEd Maste 2610ff414cSEd Maste#--------------------------------------------------------------------------- 2710ff414cSEd Maste# Project related configuration options 2810ff414cSEd Maste#--------------------------------------------------------------------------- 2910ff414cSEd Maste 305d3e7166SEd Maste# This tag specifies the encoding used for all characters in the configuration 315d3e7166SEd Maste# file that follow. The default is UTF-8 which is also the encoding used for all 325d3e7166SEd Maste# text before the first occurrence of this tag. Doxygen uses libiconv (or the 335d3e7166SEd Maste# iconv built into libc) for the transcoding. See 345d3e7166SEd Maste# https://www.gnu.org/software/libiconv/ for the list of possible encodings. 3510ff414cSEd Maste# The default value is: UTF-8. 3610ff414cSEd Maste 3710ff414cSEd MasteDOXYFILE_ENCODING = UTF-8 3810ff414cSEd Maste 3910ff414cSEd Maste# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 4010ff414cSEd Maste# double-quotes, unless you are using Doxywizard) that should identify the 4110ff414cSEd Maste# project for which the documentation is generated. This name is used in the 4210ff414cSEd Maste# title of most generated pages and in a few other places. 4310ff414cSEd Maste# The default value is: My Project. 4410ff414cSEd Maste 455d3e7166SEd MastePROJECT_NAME = libcbor 4610ff414cSEd Maste 4710ff414cSEd Maste# The PROJECT_NUMBER tag can be used to enter a project or revision number. This 4810ff414cSEd Maste# could be handy for archiving the generated documentation or if some version 4910ff414cSEd Maste# control system is used. 5010ff414cSEd Maste 51*abd87254SEd MastePROJECT_NUMBER = 0.11.0 5210ff414cSEd Maste 5310ff414cSEd Maste# Using the PROJECT_BRIEF tag one can provide an optional one line description 5410ff414cSEd Maste# for a project that appears at the top of each page and should give viewer a 5510ff414cSEd Maste# quick idea about the purpose of the project. Keep the description short. 5610ff414cSEd Maste 5710ff414cSEd MastePROJECT_BRIEF = "libcbor is a C library for parsing and generating CBOR, the general-purpose schema-less binary data format." 5810ff414cSEd Maste 5910ff414cSEd Maste# With the PROJECT_LOGO tag one can specify a logo or an icon that is included 6010ff414cSEd Maste# in the documentation. The maximum height of the logo should not exceed 55 6110ff414cSEd Maste# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy 6210ff414cSEd Maste# the logo to the output directory. 6310ff414cSEd Maste 6410ff414cSEd MastePROJECT_LOGO = 6510ff414cSEd Maste 6610ff414cSEd Maste# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path 6710ff414cSEd Maste# into which the generated documentation will be written. If a relative path is 6810ff414cSEd Maste# entered, it will be relative to the location where doxygen was started. If 6910ff414cSEd Maste# left blank the current directory will be used. 7010ff414cSEd Maste 7110ff414cSEd MasteOUTPUT_DIRECTORY = doc/build/doxygen 7210ff414cSEd Maste 735d3e7166SEd Maste# If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096 745d3e7166SEd Maste# sub-directories (in 2 levels) under the output directory of each output format 755d3e7166SEd Maste# and will distribute the generated files over these directories. Enabling this 7610ff414cSEd Maste# option can be useful when feeding doxygen a huge amount of source files, where 7710ff414cSEd Maste# putting all generated files in the same directory would otherwise causes 785d3e7166SEd Maste# performance problems for the file system. Adapt CREATE_SUBDIRS_LEVEL to 795d3e7166SEd Maste# control the number of sub-directories. 8010ff414cSEd Maste# The default value is: NO. 8110ff414cSEd Maste 8210ff414cSEd MasteCREATE_SUBDIRS = NO 8310ff414cSEd Maste 845d3e7166SEd Maste# Controls the number of sub-directories that will be created when 855d3e7166SEd Maste# CREATE_SUBDIRS tag is set to YES. Level 0 represents 16 directories, and every 865d3e7166SEd Maste# level increment doubles the number of directories, resulting in 4096 875d3e7166SEd Maste# directories at level 8 which is the default and also the maximum value. The 885d3e7166SEd Maste# sub-directories are organized in 2 levels, the first level always has a fixed 895d3e7166SEd Maste# number of 16 directories. 905d3e7166SEd Maste# Minimum value: 0, maximum value: 8, default value: 8. 915d3e7166SEd Maste# This tag requires that the tag CREATE_SUBDIRS is set to YES. 925d3e7166SEd Maste 935d3e7166SEd MasteCREATE_SUBDIRS_LEVEL = 8 945d3e7166SEd Maste 9510ff414cSEd Maste# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 9610ff414cSEd Maste# characters to appear in the names of generated files. If set to NO, non-ASCII 9710ff414cSEd Maste# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode 9810ff414cSEd Maste# U+3044. 9910ff414cSEd Maste# The default value is: NO. 10010ff414cSEd Maste 10110ff414cSEd MasteALLOW_UNICODE_NAMES = NO 10210ff414cSEd Maste 10310ff414cSEd Maste# The OUTPUT_LANGUAGE tag is used to specify the language in which all 10410ff414cSEd Maste# documentation generated by doxygen is written. Doxygen will use this 10510ff414cSEd Maste# information to generate all constant output in the proper language. 1065d3e7166SEd Maste# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Bulgarian, 1075d3e7166SEd Maste# Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, English 1085d3e7166SEd Maste# (United States), Esperanto, Farsi (Persian), Finnish, French, German, Greek, 1095d3e7166SEd Maste# Hindi, Hungarian, Indonesian, Italian, Japanese, Japanese-en (Japanese with 1105d3e7166SEd Maste# English messages), Korean, Korean-en (Korean with English messages), Latvian, 1115d3e7166SEd Maste# Lithuanian, Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, 1125d3e7166SEd Maste# Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, 1135d3e7166SEd Maste# Swedish, Turkish, Ukrainian and Vietnamese. 11410ff414cSEd Maste# The default value is: English. 11510ff414cSEd Maste 11610ff414cSEd MasteOUTPUT_LANGUAGE = English 11710ff414cSEd Maste 11810ff414cSEd Maste# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member 11910ff414cSEd Maste# descriptions after the members that are listed in the file and class 12010ff414cSEd Maste# documentation (similar to Javadoc). Set to NO to disable this. 12110ff414cSEd Maste# The default value is: YES. 12210ff414cSEd Maste 12310ff414cSEd MasteBRIEF_MEMBER_DESC = YES 12410ff414cSEd Maste 12510ff414cSEd Maste# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief 12610ff414cSEd Maste# description of a member or function before the detailed description 12710ff414cSEd Maste# 12810ff414cSEd Maste# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 12910ff414cSEd Maste# brief descriptions will be completely suppressed. 13010ff414cSEd Maste# The default value is: YES. 13110ff414cSEd Maste 13210ff414cSEd MasteREPEAT_BRIEF = YES 13310ff414cSEd Maste 13410ff414cSEd Maste# This tag implements a quasi-intelligent brief description abbreviator that is 13510ff414cSEd Maste# used to form the text in various listings. Each string in this list, if found 13610ff414cSEd Maste# as the leading text of the brief description, will be stripped from the text 13710ff414cSEd Maste# and the result, after processing the whole list, is used as the annotated 13810ff414cSEd Maste# text. Otherwise, the brief description is used as-is. If left blank, the 13910ff414cSEd Maste# following values are used ($name is automatically replaced with the name of 14010ff414cSEd Maste# the entity):The $name class, The $name widget, The $name file, is, provides, 14110ff414cSEd Maste# specifies, contains, represents, a, an and the. 14210ff414cSEd Maste 14310ff414cSEd MasteABBREVIATE_BRIEF = 14410ff414cSEd Maste 14510ff414cSEd Maste# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 14610ff414cSEd Maste# doxygen will generate a detailed section even if there is only a brief 14710ff414cSEd Maste# description. 14810ff414cSEd Maste# The default value is: NO. 14910ff414cSEd Maste 15010ff414cSEd MasteALWAYS_DETAILED_SEC = NO 15110ff414cSEd Maste 15210ff414cSEd Maste# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 15310ff414cSEd Maste# inherited members of a class in the documentation of that class as if those 15410ff414cSEd Maste# members were ordinary class members. Constructors, destructors and assignment 15510ff414cSEd Maste# operators of the base classes will not be shown. 15610ff414cSEd Maste# The default value is: NO. 15710ff414cSEd Maste 15810ff414cSEd MasteINLINE_INHERITED_MEMB = NO 15910ff414cSEd Maste 16010ff414cSEd Maste# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path 16110ff414cSEd Maste# before files name in the file list and in the header files. If set to NO the 16210ff414cSEd Maste# shortest path that makes the file name unique will be used 16310ff414cSEd Maste# The default value is: YES. 16410ff414cSEd Maste 16510ff414cSEd MasteFULL_PATH_NAMES = YES 16610ff414cSEd Maste 16710ff414cSEd Maste# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. 16810ff414cSEd Maste# Stripping is only done if one of the specified strings matches the left-hand 16910ff414cSEd Maste# part of the path. The tag can be used to show relative paths in the file list. 17010ff414cSEd Maste# If left blank the directory from which doxygen is run is used as the path to 17110ff414cSEd Maste# strip. 17210ff414cSEd Maste# 17310ff414cSEd Maste# Note that you can specify absolute paths here, but also relative paths, which 17410ff414cSEd Maste# will be relative from the directory where doxygen is started. 17510ff414cSEd Maste# This tag requires that the tag FULL_PATH_NAMES is set to YES. 17610ff414cSEd Maste 17710ff414cSEd MasteSTRIP_FROM_PATH = 17810ff414cSEd Maste 17910ff414cSEd Maste# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the 18010ff414cSEd Maste# path mentioned in the documentation of a class, which tells the reader which 18110ff414cSEd Maste# header file to include in order to use a class. If left blank only the name of 18210ff414cSEd Maste# the header file containing the class definition is used. Otherwise one should 18310ff414cSEd Maste# specify the list of include paths that are normally passed to the compiler 18410ff414cSEd Maste# using the -I flag. 18510ff414cSEd Maste 18610ff414cSEd MasteSTRIP_FROM_INC_PATH = 18710ff414cSEd Maste 18810ff414cSEd Maste# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but 18910ff414cSEd Maste# less readable) file names. This can be useful is your file systems doesn't 19010ff414cSEd Maste# support long names like on DOS, Mac, or CD-ROM. 19110ff414cSEd Maste# The default value is: NO. 19210ff414cSEd Maste 19310ff414cSEd MasteSHORT_NAMES = NO 19410ff414cSEd Maste 19510ff414cSEd Maste# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the 19610ff414cSEd Maste# first line (until the first dot) of a Javadoc-style comment as the brief 19710ff414cSEd Maste# description. If set to NO, the Javadoc-style will behave just like regular Qt- 19810ff414cSEd Maste# style comments (thus requiring an explicit @brief command for a brief 19910ff414cSEd Maste# description.) 20010ff414cSEd Maste# The default value is: NO. 20110ff414cSEd Maste 20210ff414cSEd MasteJAVADOC_AUTOBRIEF = YES 20310ff414cSEd Maste 2045d3e7166SEd Maste# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line 2055d3e7166SEd Maste# such as 2065d3e7166SEd Maste# /*************** 2075d3e7166SEd Maste# as being the beginning of a Javadoc-style comment "banner". If set to NO, the 2085d3e7166SEd Maste# Javadoc-style will behave just like regular comments and it will not be 2095d3e7166SEd Maste# interpreted by doxygen. 2105d3e7166SEd Maste# The default value is: NO. 2115d3e7166SEd Maste 2125d3e7166SEd MasteJAVADOC_BANNER = NO 2135d3e7166SEd Maste 21410ff414cSEd Maste# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first 21510ff414cSEd Maste# line (until the first dot) of a Qt-style comment as the brief description. If 21610ff414cSEd Maste# set to NO, the Qt-style will behave just like regular Qt-style comments (thus 21710ff414cSEd Maste# requiring an explicit \brief command for a brief description.) 21810ff414cSEd Maste# The default value is: NO. 21910ff414cSEd Maste 22010ff414cSEd MasteQT_AUTOBRIEF = NO 22110ff414cSEd Maste 22210ff414cSEd Maste# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a 22310ff414cSEd Maste# multi-line C++ special comment block (i.e. a block of //! or /// comments) as 22410ff414cSEd Maste# a brief description. This used to be the default behavior. The new default is 22510ff414cSEd Maste# to treat a multi-line C++ comment block as a detailed description. Set this 22610ff414cSEd Maste# tag to YES if you prefer the old behavior instead. 22710ff414cSEd Maste# 22810ff414cSEd Maste# Note that setting this tag to YES also means that rational rose comments are 22910ff414cSEd Maste# not recognized any more. 23010ff414cSEd Maste# The default value is: NO. 23110ff414cSEd Maste 23210ff414cSEd MasteMULTILINE_CPP_IS_BRIEF = NO 23310ff414cSEd Maste 2345d3e7166SEd Maste# By default Python docstrings are displayed as preformatted text and doxygen's 2355d3e7166SEd Maste# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the 2365d3e7166SEd Maste# doxygen's special commands can be used and the contents of the docstring 2375d3e7166SEd Maste# documentation blocks is shown as doxygen documentation. 2385d3e7166SEd Maste# The default value is: YES. 2395d3e7166SEd Maste 2405d3e7166SEd MastePYTHON_DOCSTRING = YES 2415d3e7166SEd Maste 24210ff414cSEd Maste# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the 24310ff414cSEd Maste# documentation from any documented member that it re-implements. 24410ff414cSEd Maste# The default value is: YES. 24510ff414cSEd Maste 24610ff414cSEd MasteINHERIT_DOCS = YES 24710ff414cSEd Maste 24810ff414cSEd Maste# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new 24910ff414cSEd Maste# page for each member. If set to NO, the documentation of a member will be part 25010ff414cSEd Maste# of the file/class/namespace that contains it. 25110ff414cSEd Maste# The default value is: NO. 25210ff414cSEd Maste 25310ff414cSEd MasteSEPARATE_MEMBER_PAGES = NO 25410ff414cSEd Maste 25510ff414cSEd Maste# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen 25610ff414cSEd Maste# uses this value to replace tabs by spaces in code fragments. 25710ff414cSEd Maste# Minimum value: 1, maximum value: 16, default value: 4. 25810ff414cSEd Maste 25910ff414cSEd MasteTAB_SIZE = 4 26010ff414cSEd Maste 26110ff414cSEd Maste# This tag can be used to specify a number of aliases that act as commands in 26210ff414cSEd Maste# the documentation. An alias has the form: 26310ff414cSEd Maste# name=value 26410ff414cSEd Maste# For example adding 2655d3e7166SEd Maste# "sideeffect=@par Side Effects:^^" 26610ff414cSEd Maste# will allow you to put the command \sideeffect (or @sideeffect) in the 26710ff414cSEd Maste# documentation, which will result in a user-defined paragraph with heading 2685d3e7166SEd Maste# "Side Effects:". Note that you cannot put \n's in the value part of an alias 2695d3e7166SEd Maste# to insert newlines (in the resulting output). You can put ^^ in the value part 2705d3e7166SEd Maste# of an alias to insert a newline as if a physical newline was in the original 2715d3e7166SEd Maste# file. When you need a literal { or } or , in the value part of an alias you 2725d3e7166SEd Maste# have to escape them by means of a backslash (\), this can lead to conflicts 2735d3e7166SEd Maste# with the commands \{ and \} for these it is advised to use the version @{ and 2745d3e7166SEd Maste# @} or use a double escape (\\{ and \\}) 27510ff414cSEd Maste 27610ff414cSEd MasteALIASES = "rst=\verbatim embed:rst:leading-asterisk" \ 27710ff414cSEd Maste "endrst=\endverbatim" 27810ff414cSEd Maste 27910ff414cSEd Maste# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 28010ff414cSEd Maste# only. Doxygen will then generate output that is more tailored for C. For 28110ff414cSEd Maste# instance, some of the names that are used will be different. The list of all 28210ff414cSEd Maste# members will be omitted, etc. 28310ff414cSEd Maste# The default value is: NO. 28410ff414cSEd Maste 28510ff414cSEd MasteOPTIMIZE_OUTPUT_FOR_C = YES 28610ff414cSEd Maste 28710ff414cSEd Maste# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or 28810ff414cSEd Maste# Python sources only. Doxygen will then generate output that is more tailored 28910ff414cSEd Maste# for that language. For instance, namespaces will be presented as packages, 29010ff414cSEd Maste# qualified scopes will look different, etc. 29110ff414cSEd Maste# The default value is: NO. 29210ff414cSEd Maste 29310ff414cSEd MasteOPTIMIZE_OUTPUT_JAVA = NO 29410ff414cSEd Maste 29510ff414cSEd Maste# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran 29610ff414cSEd Maste# sources. Doxygen will then generate output that is tailored for Fortran. 29710ff414cSEd Maste# The default value is: NO. 29810ff414cSEd Maste 29910ff414cSEd MasteOPTIMIZE_FOR_FORTRAN = NO 30010ff414cSEd Maste 30110ff414cSEd Maste# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL 30210ff414cSEd Maste# sources. Doxygen will then generate output that is tailored for VHDL. 30310ff414cSEd Maste# The default value is: NO. 30410ff414cSEd Maste 30510ff414cSEd MasteOPTIMIZE_OUTPUT_VHDL = NO 30610ff414cSEd Maste 3075d3e7166SEd Maste# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice 3085d3e7166SEd Maste# sources only. Doxygen will then generate output that is more tailored for that 3095d3e7166SEd Maste# language. For instance, namespaces will be presented as modules, types will be 3105d3e7166SEd Maste# separated into more groups, etc. 3115d3e7166SEd Maste# The default value is: NO. 3125d3e7166SEd Maste 3135d3e7166SEd MasteOPTIMIZE_OUTPUT_SLICE = NO 3145d3e7166SEd Maste 31510ff414cSEd Maste# Doxygen selects the parser to use depending on the extension of the files it 31610ff414cSEd Maste# parses. With this tag you can assign which parser to use for a given 31710ff414cSEd Maste# extension. Doxygen has a built-in mapping, but you can override or extend it 31810ff414cSEd Maste# using this tag. The format is ext=language, where ext is a file extension, and 3195d3e7166SEd Maste# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, 3205d3e7166SEd Maste# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice, 3215d3e7166SEd Maste# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: 3225d3e7166SEd Maste# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser 3235d3e7166SEd Maste# tries to guess whether the code is fixed or free formatted code, this is the 3245d3e7166SEd Maste# default for Fortran type files). For instance to make doxygen treat .inc files 3255d3e7166SEd Maste# as Fortran files (default is PHP), and .f files as C (default is Fortran), 3265d3e7166SEd Maste# use: inc=Fortran f=C. 32710ff414cSEd Maste# 32810ff414cSEd Maste# Note: For files without extension you can use no_extension as a placeholder. 32910ff414cSEd Maste# 33010ff414cSEd Maste# Note that for custom extensions you also need to set FILE_PATTERNS otherwise 3315d3e7166SEd Maste# the files are not read by doxygen. When specifying no_extension you should add 3325d3e7166SEd Maste# * to the FILE_PATTERNS. 3335d3e7166SEd Maste# 3345d3e7166SEd Maste# Note see also the list of default file extension mappings. 33510ff414cSEd Maste 33610ff414cSEd MasteEXTENSION_MAPPING = 33710ff414cSEd Maste 33810ff414cSEd Maste# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments 33910ff414cSEd Maste# according to the Markdown format, which allows for more readable 3405d3e7166SEd Maste# documentation. See https://daringfireball.net/projects/markdown/ for details. 34110ff414cSEd Maste# The output of markdown processing is further processed by doxygen, so you can 34210ff414cSEd Maste# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in 34310ff414cSEd Maste# case of backward compatibilities issues. 34410ff414cSEd Maste# The default value is: YES. 34510ff414cSEd Maste 34610ff414cSEd MasteMARKDOWN_SUPPORT = YES 34710ff414cSEd Maste 34810ff414cSEd Maste# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up 34910ff414cSEd Maste# to that level are automatically included in the table of contents, even if 35010ff414cSEd Maste# they do not have an id attribute. 35110ff414cSEd Maste# Note: This feature currently applies only to Markdown headings. 3525d3e7166SEd Maste# Minimum value: 0, maximum value: 99, default value: 5. 35310ff414cSEd Maste# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. 35410ff414cSEd Maste 35510ff414cSEd MasteTOC_INCLUDE_HEADINGS = 0 35610ff414cSEd Maste 35710ff414cSEd Maste# When enabled doxygen tries to link words that correspond to documented 35810ff414cSEd Maste# classes, or namespaces to their corresponding documentation. Such a link can 35910ff414cSEd Maste# be prevented in individual cases by putting a % sign in front of the word or 36010ff414cSEd Maste# globally by setting AUTOLINK_SUPPORT to NO. 36110ff414cSEd Maste# The default value is: YES. 36210ff414cSEd Maste 36310ff414cSEd MasteAUTOLINK_SUPPORT = YES 36410ff414cSEd Maste 36510ff414cSEd Maste# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 36610ff414cSEd Maste# to include (a tag file for) the STL sources as input, then you should set this 36710ff414cSEd Maste# tag to YES in order to let doxygen match functions declarations and 36810ff414cSEd Maste# definitions whose arguments contain STL classes (e.g. func(std::string); 36910ff414cSEd Maste# versus func(std::string) {}). This also make the inheritance and collaboration 37010ff414cSEd Maste# diagrams that involve STL classes more complete and accurate. 37110ff414cSEd Maste# The default value is: NO. 37210ff414cSEd Maste 37310ff414cSEd MasteBUILTIN_STL_SUPPORT = NO 37410ff414cSEd Maste 37510ff414cSEd Maste# If you use Microsoft's C++/CLI language, you should set this option to YES to 37610ff414cSEd Maste# enable parsing support. 37710ff414cSEd Maste# The default value is: NO. 37810ff414cSEd Maste 37910ff414cSEd MasteCPP_CLI_SUPPORT = NO 38010ff414cSEd Maste 38110ff414cSEd Maste# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: 3825d3e7166SEd Maste# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen 38310ff414cSEd Maste# will parse them like normal C++ but will assume all classes use public instead 38410ff414cSEd Maste# of private inheritance when no explicit protection keyword is present. 38510ff414cSEd Maste# The default value is: NO. 38610ff414cSEd Maste 38710ff414cSEd MasteSIP_SUPPORT = NO 38810ff414cSEd Maste 38910ff414cSEd Maste# For Microsoft's IDL there are propget and propput attributes to indicate 39010ff414cSEd Maste# getter and setter methods for a property. Setting this option to YES will make 39110ff414cSEd Maste# doxygen to replace the get and set methods by a property in the documentation. 39210ff414cSEd Maste# This will only work if the methods are indeed getting or setting a simple 39310ff414cSEd Maste# type. If this is not the case, or you want to show the methods anyway, you 39410ff414cSEd Maste# should set this option to NO. 39510ff414cSEd Maste# The default value is: YES. 39610ff414cSEd Maste 39710ff414cSEd MasteIDL_PROPERTY_SUPPORT = YES 39810ff414cSEd Maste 39910ff414cSEd Maste# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 40010ff414cSEd Maste# tag is set to YES then doxygen will reuse the documentation of the first 40110ff414cSEd Maste# member in the group (if any) for the other members of the group. By default 40210ff414cSEd Maste# all members of a group must be documented explicitly. 40310ff414cSEd Maste# The default value is: NO. 40410ff414cSEd Maste 40510ff414cSEd MasteDISTRIBUTE_GROUP_DOC = NO 40610ff414cSEd Maste 40710ff414cSEd Maste# If one adds a struct or class to a group and this option is enabled, then also 40810ff414cSEd Maste# any nested class or struct is added to the same group. By default this option 40910ff414cSEd Maste# is disabled and one has to add nested compounds explicitly via \ingroup. 41010ff414cSEd Maste# The default value is: NO. 41110ff414cSEd Maste 41210ff414cSEd MasteGROUP_NESTED_COMPOUNDS = NO 41310ff414cSEd Maste 41410ff414cSEd Maste# Set the SUBGROUPING tag to YES to allow class member groups of the same type 41510ff414cSEd Maste# (for instance a group of public functions) to be put as a subgroup of that 41610ff414cSEd Maste# type (e.g. under the Public Functions section). Set it to NO to prevent 41710ff414cSEd Maste# subgrouping. Alternatively, this can be done per class using the 41810ff414cSEd Maste# \nosubgrouping command. 41910ff414cSEd Maste# The default value is: YES. 42010ff414cSEd Maste 42110ff414cSEd MasteSUBGROUPING = YES 42210ff414cSEd Maste 42310ff414cSEd Maste# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions 42410ff414cSEd Maste# are shown inside the group in which they are included (e.g. using \ingroup) 42510ff414cSEd Maste# instead of on a separate page (for HTML and Man pages) or section (for LaTeX 42610ff414cSEd Maste# and RTF). 42710ff414cSEd Maste# 42810ff414cSEd Maste# Note that this feature does not work in combination with 42910ff414cSEd Maste# SEPARATE_MEMBER_PAGES. 43010ff414cSEd Maste# The default value is: NO. 43110ff414cSEd Maste 43210ff414cSEd MasteINLINE_GROUPED_CLASSES = NO 43310ff414cSEd Maste 43410ff414cSEd Maste# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions 43510ff414cSEd Maste# with only public data fields or simple typedef fields will be shown inline in 43610ff414cSEd Maste# the documentation of the scope in which they are defined (i.e. file, 43710ff414cSEd Maste# namespace, or group documentation), provided this scope is documented. If set 43810ff414cSEd Maste# to NO, structs, classes, and unions are shown on a separate page (for HTML and 43910ff414cSEd Maste# Man pages) or section (for LaTeX and RTF). 44010ff414cSEd Maste# The default value is: NO. 44110ff414cSEd Maste 44210ff414cSEd MasteINLINE_SIMPLE_STRUCTS = NO 44310ff414cSEd Maste 44410ff414cSEd Maste# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or 44510ff414cSEd Maste# enum is documented as struct, union, or enum with the name of the typedef. So 44610ff414cSEd Maste# typedef struct TypeS {} TypeT, will appear in the documentation as a struct 44710ff414cSEd Maste# with name TypeT. When disabled the typedef will appear as a member of a file, 44810ff414cSEd Maste# namespace, or class. And the struct will be named TypeS. This can typically be 44910ff414cSEd Maste# useful for C code in case the coding convention dictates that all compound 45010ff414cSEd Maste# types are typedef'ed and only the typedef is referenced, never the tag name. 45110ff414cSEd Maste# The default value is: NO. 45210ff414cSEd Maste 45310ff414cSEd MasteTYPEDEF_HIDES_STRUCT = NO 45410ff414cSEd Maste 45510ff414cSEd Maste# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 45610ff414cSEd Maste# cache is used to resolve symbols given their name and scope. Since this can be 45710ff414cSEd Maste# an expensive process and often the same symbol appears multiple times in the 45810ff414cSEd Maste# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small 45910ff414cSEd Maste# doxygen will become slower. If the cache is too large, memory is wasted. The 46010ff414cSEd Maste# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range 46110ff414cSEd Maste# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 46210ff414cSEd Maste# symbols. At the end of a run doxygen will report the cache usage and suggest 46310ff414cSEd Maste# the optimal cache size from a speed point of view. 46410ff414cSEd Maste# Minimum value: 0, maximum value: 9, default value: 0. 46510ff414cSEd Maste 46610ff414cSEd MasteLOOKUP_CACHE_SIZE = 0 46710ff414cSEd Maste 4685d3e7166SEd Maste# The NUM_PROC_THREADS specifies the number of threads doxygen is allowed to use 4695d3e7166SEd Maste# during processing. When set to 0 doxygen will based this on the number of 4705d3e7166SEd Maste# cores available in the system. You can set it explicitly to a value larger 4715d3e7166SEd Maste# than 0 to get more control over the balance between CPU load and processing 4725d3e7166SEd Maste# speed. At this moment only the input processing can be done using multiple 4735d3e7166SEd Maste# threads. Since this is still an experimental feature the default is set to 1, 4745d3e7166SEd Maste# which effectively disables parallel processing. Please report any issues you 4755d3e7166SEd Maste# encounter. Generating dot graphs in parallel is controlled by the 4765d3e7166SEd Maste# DOT_NUM_THREADS setting. 4775d3e7166SEd Maste# Minimum value: 0, maximum value: 32, default value: 1. 4785d3e7166SEd Maste 4795d3e7166SEd MasteNUM_PROC_THREADS = 1 4805d3e7166SEd Maste 48110ff414cSEd Maste#--------------------------------------------------------------------------- 48210ff414cSEd Maste# Build related configuration options 48310ff414cSEd Maste#--------------------------------------------------------------------------- 48410ff414cSEd Maste 48510ff414cSEd Maste# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in 48610ff414cSEd Maste# documentation are documented, even if no documentation was available. Private 48710ff414cSEd Maste# class members and static file members will be hidden unless the 48810ff414cSEd Maste# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. 48910ff414cSEd Maste# Note: This will also disable the warnings about undocumented members that are 49010ff414cSEd Maste# normally produced when WARNINGS is set to YES. 49110ff414cSEd Maste# The default value is: NO. 49210ff414cSEd Maste 49310ff414cSEd MasteEXTRACT_ALL = YES 49410ff414cSEd Maste 49510ff414cSEd Maste# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will 49610ff414cSEd Maste# be included in the documentation. 49710ff414cSEd Maste# The default value is: NO. 49810ff414cSEd Maste 49910ff414cSEd MasteEXTRACT_PRIVATE = NO 50010ff414cSEd Maste 5015d3e7166SEd Maste# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual 5025d3e7166SEd Maste# methods of a class will be included in the documentation. 5035d3e7166SEd Maste# The default value is: NO. 5045d3e7166SEd Maste 5055d3e7166SEd MasteEXTRACT_PRIV_VIRTUAL = NO 5065d3e7166SEd Maste 50710ff414cSEd Maste# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal 50810ff414cSEd Maste# scope will be included in the documentation. 50910ff414cSEd Maste# The default value is: NO. 51010ff414cSEd Maste 51110ff414cSEd MasteEXTRACT_PACKAGE = NO 51210ff414cSEd Maste 51310ff414cSEd Maste# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be 51410ff414cSEd Maste# included in the documentation. 51510ff414cSEd Maste# The default value is: NO. 51610ff414cSEd Maste 51710ff414cSEd MasteEXTRACT_STATIC = NO 51810ff414cSEd Maste 51910ff414cSEd Maste# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined 52010ff414cSEd Maste# locally in source files will be included in the documentation. If set to NO, 52110ff414cSEd Maste# only classes defined in header files are included. Does not have any effect 52210ff414cSEd Maste# for Java sources. 52310ff414cSEd Maste# The default value is: YES. 52410ff414cSEd Maste 52510ff414cSEd MasteEXTRACT_LOCAL_CLASSES = YES 52610ff414cSEd Maste 52710ff414cSEd Maste# This flag is only useful for Objective-C code. If set to YES, local methods, 52810ff414cSEd Maste# which are defined in the implementation section but not in the interface are 52910ff414cSEd Maste# included in the documentation. If set to NO, only methods in the interface are 53010ff414cSEd Maste# included. 53110ff414cSEd Maste# The default value is: NO. 53210ff414cSEd Maste 53310ff414cSEd MasteEXTRACT_LOCAL_METHODS = NO 53410ff414cSEd Maste 53510ff414cSEd Maste# If this flag is set to YES, the members of anonymous namespaces will be 53610ff414cSEd Maste# extracted and appear in the documentation as a namespace called 53710ff414cSEd Maste# 'anonymous_namespace{file}', where file will be replaced with the base name of 53810ff414cSEd Maste# the file that contains the anonymous namespace. By default anonymous namespace 53910ff414cSEd Maste# are hidden. 54010ff414cSEd Maste# The default value is: NO. 54110ff414cSEd Maste 54210ff414cSEd MasteEXTRACT_ANON_NSPACES = NO 54310ff414cSEd Maste 5445d3e7166SEd Maste# If this flag is set to YES, the name of an unnamed parameter in a declaration 5455d3e7166SEd Maste# will be determined by the corresponding definition. By default unnamed 5465d3e7166SEd Maste# parameters remain unnamed in the output. 5475d3e7166SEd Maste# The default value is: YES. 5485d3e7166SEd Maste 5495d3e7166SEd MasteRESOLVE_UNNAMED_PARAMS = YES 5505d3e7166SEd Maste 55110ff414cSEd Maste# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all 55210ff414cSEd Maste# undocumented members inside documented classes or files. If set to NO these 55310ff414cSEd Maste# members will be included in the various overviews, but no documentation 55410ff414cSEd Maste# section is generated. This option has no effect if EXTRACT_ALL is enabled. 55510ff414cSEd Maste# The default value is: NO. 55610ff414cSEd Maste 55710ff414cSEd MasteHIDE_UNDOC_MEMBERS = NO 55810ff414cSEd Maste 55910ff414cSEd Maste# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all 56010ff414cSEd Maste# undocumented classes that are normally visible in the class hierarchy. If set 56110ff414cSEd Maste# to NO, these classes will be included in the various overviews. This option 5625d3e7166SEd Maste# will also hide undocumented C++ concepts if enabled. This option has no effect 5635d3e7166SEd Maste# if EXTRACT_ALL is enabled. 56410ff414cSEd Maste# The default value is: NO. 56510ff414cSEd Maste 56610ff414cSEd MasteHIDE_UNDOC_CLASSES = NO 56710ff414cSEd Maste 56810ff414cSEd Maste# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend 5695d3e7166SEd Maste# declarations. If set to NO, these declarations will be included in the 5705d3e7166SEd Maste# documentation. 57110ff414cSEd Maste# The default value is: NO. 57210ff414cSEd Maste 57310ff414cSEd MasteHIDE_FRIEND_COMPOUNDS = NO 57410ff414cSEd Maste 57510ff414cSEd Maste# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any 57610ff414cSEd Maste# documentation blocks found inside the body of a function. If set to NO, these 57710ff414cSEd Maste# blocks will be appended to the function's detailed documentation block. 57810ff414cSEd Maste# The default value is: NO. 57910ff414cSEd Maste 58010ff414cSEd MasteHIDE_IN_BODY_DOCS = NO 58110ff414cSEd Maste 58210ff414cSEd Maste# The INTERNAL_DOCS tag determines if documentation that is typed after a 58310ff414cSEd Maste# \internal command is included. If the tag is set to NO then the documentation 58410ff414cSEd Maste# will be excluded. Set it to YES to include the internal documentation. 58510ff414cSEd Maste# The default value is: NO. 58610ff414cSEd Maste 58710ff414cSEd MasteINTERNAL_DOCS = NO 58810ff414cSEd Maste 5895d3e7166SEd Maste# With the correct setting of option CASE_SENSE_NAMES doxygen will better be 5905d3e7166SEd Maste# able to match the capabilities of the underlying filesystem. In case the 5915d3e7166SEd Maste# filesystem is case sensitive (i.e. it supports files in the same directory 5925d3e7166SEd Maste# whose names only differ in casing), the option must be set to YES to properly 5935d3e7166SEd Maste# deal with such files in case they appear in the input. For filesystems that 5945d3e7166SEd Maste# are not case sensitive the option should be set to NO to properly deal with 5955d3e7166SEd Maste# output files written for symbols that only differ in casing, such as for two 5965d3e7166SEd Maste# classes, one named CLASS and the other named Class, and to also support 5975d3e7166SEd Maste# references to files without having to specify the exact matching casing. On 5985d3e7166SEd Maste# Windows (including Cygwin) and MacOS, users should typically set this option 5995d3e7166SEd Maste# to NO, whereas on Linux or other Unix flavors it should typically be set to 6005d3e7166SEd Maste# YES. 6015d3e7166SEd Maste# Possible values are: SYSTEM, NO and YES. 6025d3e7166SEd Maste# The default value is: SYSTEM. 60310ff414cSEd Maste 60410ff414cSEd MasteCASE_SENSE_NAMES = YES 60510ff414cSEd Maste 60610ff414cSEd Maste# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with 60710ff414cSEd Maste# their full class and namespace scopes in the documentation. If set to YES, the 60810ff414cSEd Maste# scope will be hidden. 60910ff414cSEd Maste# The default value is: NO. 61010ff414cSEd Maste 61110ff414cSEd MasteHIDE_SCOPE_NAMES = NO 61210ff414cSEd Maste 61310ff414cSEd Maste# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will 61410ff414cSEd Maste# append additional text to a page's title, such as Class Reference. If set to 61510ff414cSEd Maste# YES the compound reference will be hidden. 61610ff414cSEd Maste# The default value is: NO. 61710ff414cSEd Maste 61810ff414cSEd MasteHIDE_COMPOUND_REFERENCE= NO 61910ff414cSEd Maste 6205d3e7166SEd Maste# If the SHOW_HEADERFILE tag is set to YES then the documentation for a class 6215d3e7166SEd Maste# will show which file needs to be included to use the class. 6225d3e7166SEd Maste# The default value is: YES. 6235d3e7166SEd Maste 6245d3e7166SEd MasteSHOW_HEADERFILE = YES 6255d3e7166SEd Maste 62610ff414cSEd Maste# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of 62710ff414cSEd Maste# the files that are included by a file in the documentation of that file. 62810ff414cSEd Maste# The default value is: YES. 62910ff414cSEd Maste 63010ff414cSEd MasteSHOW_INCLUDE_FILES = YES 63110ff414cSEd Maste 63210ff414cSEd Maste# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each 63310ff414cSEd Maste# grouped member an include statement to the documentation, telling the reader 63410ff414cSEd Maste# which file to include in order to use the member. 63510ff414cSEd Maste# The default value is: NO. 63610ff414cSEd Maste 63710ff414cSEd MasteSHOW_GROUPED_MEMB_INC = NO 63810ff414cSEd Maste 63910ff414cSEd Maste# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include 64010ff414cSEd Maste# files with double quotes in the documentation rather than with sharp brackets. 64110ff414cSEd Maste# The default value is: NO. 64210ff414cSEd Maste 64310ff414cSEd MasteFORCE_LOCAL_INCLUDES = NO 64410ff414cSEd Maste 64510ff414cSEd Maste# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the 64610ff414cSEd Maste# documentation for inline members. 64710ff414cSEd Maste# The default value is: YES. 64810ff414cSEd Maste 64910ff414cSEd MasteINLINE_INFO = YES 65010ff414cSEd Maste 65110ff414cSEd Maste# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the 65210ff414cSEd Maste# (detailed) documentation of file and class members alphabetically by member 65310ff414cSEd Maste# name. If set to NO, the members will appear in declaration order. 65410ff414cSEd Maste# The default value is: YES. 65510ff414cSEd Maste 65610ff414cSEd MasteSORT_MEMBER_DOCS = YES 65710ff414cSEd Maste 65810ff414cSEd Maste# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief 65910ff414cSEd Maste# descriptions of file, namespace and class members alphabetically by member 66010ff414cSEd Maste# name. If set to NO, the members will appear in declaration order. Note that 66110ff414cSEd Maste# this will also influence the order of the classes in the class list. 66210ff414cSEd Maste# The default value is: NO. 66310ff414cSEd Maste 66410ff414cSEd MasteSORT_BRIEF_DOCS = NO 66510ff414cSEd Maste 66610ff414cSEd Maste# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the 66710ff414cSEd Maste# (brief and detailed) documentation of class members so that constructors and 66810ff414cSEd Maste# destructors are listed first. If set to NO the constructors will appear in the 66910ff414cSEd Maste# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. 67010ff414cSEd Maste# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief 67110ff414cSEd Maste# member documentation. 67210ff414cSEd Maste# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting 67310ff414cSEd Maste# detailed member documentation. 67410ff414cSEd Maste# The default value is: NO. 67510ff414cSEd Maste 67610ff414cSEd MasteSORT_MEMBERS_CTORS_1ST = NO 67710ff414cSEd Maste 67810ff414cSEd Maste# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy 67910ff414cSEd Maste# of group names into alphabetical order. If set to NO the group names will 68010ff414cSEd Maste# appear in their defined order. 68110ff414cSEd Maste# The default value is: NO. 68210ff414cSEd Maste 68310ff414cSEd MasteSORT_GROUP_NAMES = NO 68410ff414cSEd Maste 68510ff414cSEd Maste# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by 68610ff414cSEd Maste# fully-qualified names, including namespaces. If set to NO, the class list will 68710ff414cSEd Maste# be sorted only by class name, not including the namespace part. 68810ff414cSEd Maste# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 68910ff414cSEd Maste# Note: This option applies only to the class list, not to the alphabetical 69010ff414cSEd Maste# list. 69110ff414cSEd Maste# The default value is: NO. 69210ff414cSEd Maste 69310ff414cSEd MasteSORT_BY_SCOPE_NAME = NO 69410ff414cSEd Maste 69510ff414cSEd Maste# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper 69610ff414cSEd Maste# type resolution of all parameters of a function it will reject a match between 69710ff414cSEd Maste# the prototype and the implementation of a member function even if there is 69810ff414cSEd Maste# only one candidate or it is obvious which candidate to choose by doing a 69910ff414cSEd Maste# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still 70010ff414cSEd Maste# accept a match between prototype and implementation in such cases. 70110ff414cSEd Maste# The default value is: NO. 70210ff414cSEd Maste 70310ff414cSEd MasteSTRICT_PROTO_MATCHING = NO 70410ff414cSEd Maste 70510ff414cSEd Maste# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo 70610ff414cSEd Maste# list. This list is created by putting \todo commands in the documentation. 70710ff414cSEd Maste# The default value is: YES. 70810ff414cSEd Maste 70910ff414cSEd MasteGENERATE_TODOLIST = YES 71010ff414cSEd Maste 71110ff414cSEd Maste# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test 71210ff414cSEd Maste# list. This list is created by putting \test commands in the documentation. 71310ff414cSEd Maste# The default value is: YES. 71410ff414cSEd Maste 71510ff414cSEd MasteGENERATE_TESTLIST = YES 71610ff414cSEd Maste 71710ff414cSEd Maste# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug 71810ff414cSEd Maste# list. This list is created by putting \bug commands in the documentation. 71910ff414cSEd Maste# The default value is: YES. 72010ff414cSEd Maste 72110ff414cSEd MasteGENERATE_BUGLIST = YES 72210ff414cSEd Maste 72310ff414cSEd Maste# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) 72410ff414cSEd Maste# the deprecated list. This list is created by putting \deprecated commands in 72510ff414cSEd Maste# the documentation. 72610ff414cSEd Maste# The default value is: YES. 72710ff414cSEd Maste 72810ff414cSEd MasteGENERATE_DEPRECATEDLIST= YES 72910ff414cSEd Maste 73010ff414cSEd Maste# The ENABLED_SECTIONS tag can be used to enable conditional documentation 73110ff414cSEd Maste# sections, marked by \if <section_label> ... \endif and \cond <section_label> 73210ff414cSEd Maste# ... \endcond blocks. 73310ff414cSEd Maste 73410ff414cSEd MasteENABLED_SECTIONS = 73510ff414cSEd Maste 73610ff414cSEd Maste# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the 73710ff414cSEd Maste# initial value of a variable or macro / define can have for it to appear in the 73810ff414cSEd Maste# documentation. If the initializer consists of more lines than specified here 73910ff414cSEd Maste# it will be hidden. Use a value of 0 to hide initializers completely. The 74010ff414cSEd Maste# appearance of the value of individual variables and macros / defines can be 74110ff414cSEd Maste# controlled using \showinitializer or \hideinitializer command in the 74210ff414cSEd Maste# documentation regardless of this setting. 74310ff414cSEd Maste# Minimum value: 0, maximum value: 10000, default value: 30. 74410ff414cSEd Maste 74510ff414cSEd MasteMAX_INITIALIZER_LINES = 30 74610ff414cSEd Maste 74710ff414cSEd Maste# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at 74810ff414cSEd Maste# the bottom of the documentation of classes and structs. If set to YES, the 74910ff414cSEd Maste# list will mention the files that were used to generate the documentation. 75010ff414cSEd Maste# The default value is: YES. 75110ff414cSEd Maste 75210ff414cSEd MasteSHOW_USED_FILES = YES 75310ff414cSEd Maste 75410ff414cSEd Maste# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This 75510ff414cSEd Maste# will remove the Files entry from the Quick Index and from the Folder Tree View 75610ff414cSEd Maste# (if specified). 75710ff414cSEd Maste# The default value is: YES. 75810ff414cSEd Maste 75910ff414cSEd MasteSHOW_FILES = YES 76010ff414cSEd Maste 76110ff414cSEd Maste# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces 76210ff414cSEd Maste# page. This will remove the Namespaces entry from the Quick Index and from the 76310ff414cSEd Maste# Folder Tree View (if specified). 76410ff414cSEd Maste# The default value is: YES. 76510ff414cSEd Maste 76610ff414cSEd MasteSHOW_NAMESPACES = YES 76710ff414cSEd Maste 76810ff414cSEd Maste# The FILE_VERSION_FILTER tag can be used to specify a program or script that 76910ff414cSEd Maste# doxygen should invoke to get the current version for each file (typically from 77010ff414cSEd Maste# the version control system). Doxygen will invoke the program by executing (via 77110ff414cSEd Maste# popen()) the command command input-file, where command is the value of the 77210ff414cSEd Maste# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided 77310ff414cSEd Maste# by doxygen. Whatever the program writes to standard output is used as the file 77410ff414cSEd Maste# version. For an example see the documentation. 77510ff414cSEd Maste 77610ff414cSEd MasteFILE_VERSION_FILTER = 77710ff414cSEd Maste 77810ff414cSEd Maste# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed 77910ff414cSEd Maste# by doxygen. The layout file controls the global structure of the generated 78010ff414cSEd Maste# output files in an output format independent way. To create the layout file 78110ff414cSEd Maste# that represents doxygen's defaults, run doxygen with the -l option. You can 78210ff414cSEd Maste# optionally specify a file name after the option, if omitted DoxygenLayout.xml 7835d3e7166SEd Maste# will be used as the name of the layout file. See also section "Changing the 7845d3e7166SEd Maste# layout of pages" for information. 78510ff414cSEd Maste# 78610ff414cSEd Maste# Note that if you run doxygen from a directory containing a file called 78710ff414cSEd Maste# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE 78810ff414cSEd Maste# tag is left empty. 78910ff414cSEd Maste 79010ff414cSEd MasteLAYOUT_FILE = doxygen-theme/DoxygenLayout.xml 79110ff414cSEd Maste 79210ff414cSEd Maste# The CITE_BIB_FILES tag can be used to specify one or more bib files containing 79310ff414cSEd Maste# the reference definitions. This must be a list of .bib files. The .bib 79410ff414cSEd Maste# extension is automatically appended if omitted. This requires the bibtex tool 7955d3e7166SEd Maste# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. 79610ff414cSEd Maste# For LaTeX the style of the bibliography can be controlled using 79710ff414cSEd Maste# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the 79810ff414cSEd Maste# search path. See also \cite for info how to create references. 79910ff414cSEd Maste 80010ff414cSEd MasteCITE_BIB_FILES = 80110ff414cSEd Maste 80210ff414cSEd Maste#--------------------------------------------------------------------------- 80310ff414cSEd Maste# Configuration options related to warning and progress messages 80410ff414cSEd Maste#--------------------------------------------------------------------------- 80510ff414cSEd Maste 80610ff414cSEd Maste# The QUIET tag can be used to turn on/off the messages that are generated to 80710ff414cSEd Maste# standard output by doxygen. If QUIET is set to YES this implies that the 80810ff414cSEd Maste# messages are off. 80910ff414cSEd Maste# The default value is: NO. 81010ff414cSEd Maste 81110ff414cSEd MasteQUIET = NO 81210ff414cSEd Maste 81310ff414cSEd Maste# The WARNINGS tag can be used to turn on/off the warning messages that are 81410ff414cSEd Maste# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES 81510ff414cSEd Maste# this implies that the warnings are on. 81610ff414cSEd Maste# 81710ff414cSEd Maste# Tip: Turn warnings on while writing the documentation. 81810ff414cSEd Maste# The default value is: YES. 81910ff414cSEd Maste 82010ff414cSEd MasteWARNINGS = YES 82110ff414cSEd Maste 82210ff414cSEd Maste# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate 82310ff414cSEd Maste# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag 82410ff414cSEd Maste# will automatically be disabled. 82510ff414cSEd Maste# The default value is: YES. 82610ff414cSEd Maste 82710ff414cSEd MasteWARN_IF_UNDOCUMENTED = YES 82810ff414cSEd Maste 82910ff414cSEd Maste# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for 8305d3e7166SEd Maste# potential errors in the documentation, such as documenting some parameters in 8315d3e7166SEd Maste# a documented function twice, or documenting parameters that don't exist or 8325d3e7166SEd Maste# using markup commands wrongly. 83310ff414cSEd Maste# The default value is: YES. 83410ff414cSEd Maste 83510ff414cSEd MasteWARN_IF_DOC_ERROR = YES 83610ff414cSEd Maste 8375d3e7166SEd Maste# If WARN_IF_INCOMPLETE_DOC is set to YES, doxygen will warn about incomplete 8385d3e7166SEd Maste# function parameter documentation. If set to NO, doxygen will accept that some 8395d3e7166SEd Maste# parameters have no documentation without warning. 8405d3e7166SEd Maste# The default value is: YES. 8415d3e7166SEd Maste 8425d3e7166SEd MasteWARN_IF_INCOMPLETE_DOC = YES 8435d3e7166SEd Maste 84410ff414cSEd Maste# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that 84510ff414cSEd Maste# are documented, but have no documentation for their parameters or return 8465d3e7166SEd Maste# value. If set to NO, doxygen will only warn about wrong parameter 8475d3e7166SEd Maste# documentation, but not about the absence of documentation. If EXTRACT_ALL is 8485d3e7166SEd Maste# set to YES then this flag will automatically be disabled. See also 8495d3e7166SEd Maste# WARN_IF_INCOMPLETE_DOC 85010ff414cSEd Maste# The default value is: NO. 85110ff414cSEd Maste 85210ff414cSEd MasteWARN_NO_PARAMDOC = NO 85310ff414cSEd Maste 8545d3e7166SEd Maste# If WARN_IF_UNDOC_ENUM_VAL option is set to YES, doxygen will warn about 8555d3e7166SEd Maste# undocumented enumeration values. If set to NO, doxygen will accept 8565d3e7166SEd Maste# undocumented enumeration values. If EXTRACT_ALL is set to YES then this flag 8575d3e7166SEd Maste# will automatically be disabled. 8585d3e7166SEd Maste# The default value is: NO. 8595d3e7166SEd Maste 8605d3e7166SEd MasteWARN_IF_UNDOC_ENUM_VAL = NO 8615d3e7166SEd Maste 86210ff414cSEd Maste# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when 8635d3e7166SEd Maste# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS 8645d3e7166SEd Maste# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but 8655d3e7166SEd Maste# at the end of the doxygen process doxygen will return with a non-zero status. 8665d3e7166SEd Maste# Possible values are: NO, YES and FAIL_ON_WARNINGS. 86710ff414cSEd Maste# The default value is: NO. 86810ff414cSEd Maste 86910ff414cSEd MasteWARN_AS_ERROR = NO 87010ff414cSEd Maste 87110ff414cSEd Maste# The WARN_FORMAT tag determines the format of the warning messages that doxygen 87210ff414cSEd Maste# can produce. The string should contain the $file, $line, and $text tags, which 87310ff414cSEd Maste# will be replaced by the file and line number from which the warning originated 87410ff414cSEd Maste# and the warning text. Optionally the format may contain $version, which will 87510ff414cSEd Maste# be replaced by the version of the file (if it could be obtained via 87610ff414cSEd Maste# FILE_VERSION_FILTER) 8775d3e7166SEd Maste# See also: WARN_LINE_FORMAT 87810ff414cSEd Maste# The default value is: $file:$line: $text. 87910ff414cSEd Maste 88010ff414cSEd MasteWARN_FORMAT = "$file:$line: $text" 88110ff414cSEd Maste 8825d3e7166SEd Maste# In the $text part of the WARN_FORMAT command it is possible that a reference 8835d3e7166SEd Maste# to a more specific place is given. To make it easier to jump to this place 8845d3e7166SEd Maste# (outside of doxygen) the user can define a custom "cut" / "paste" string. 8855d3e7166SEd Maste# Example: 8865d3e7166SEd Maste# WARN_LINE_FORMAT = "'vi $file +$line'" 8875d3e7166SEd Maste# See also: WARN_FORMAT 8885d3e7166SEd Maste# The default value is: at line $line of file $file. 8895d3e7166SEd Maste 8905d3e7166SEd MasteWARN_LINE_FORMAT = "at line $line of file $file" 8915d3e7166SEd Maste 89210ff414cSEd Maste# The WARN_LOGFILE tag can be used to specify a file to which warning and error 89310ff414cSEd Maste# messages should be written. If left blank the output is written to standard 8945d3e7166SEd Maste# error (stderr). In case the file specified cannot be opened for writing the 8955d3e7166SEd Maste# warning and error messages are written to standard error. When as file - is 8965d3e7166SEd Maste# specified the warning and error messages are written to standard output 8975d3e7166SEd Maste# (stdout). 89810ff414cSEd Maste 89910ff414cSEd MasteWARN_LOGFILE = 90010ff414cSEd Maste 90110ff414cSEd Maste#--------------------------------------------------------------------------- 90210ff414cSEd Maste# Configuration options related to the input files 90310ff414cSEd Maste#--------------------------------------------------------------------------- 90410ff414cSEd Maste 90510ff414cSEd Maste# The INPUT tag is used to specify the files and/or directories that contain 90610ff414cSEd Maste# documented source files. You may enter file names like myfile.cpp or 90710ff414cSEd Maste# directories like /usr/src/myproject. Separate the files or directories with 90810ff414cSEd Maste# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING 90910ff414cSEd Maste# Note: If this tag is empty the current directory is searched. 91010ff414cSEd Maste 91110ff414cSEd MasteINPUT = src \ 91210ff414cSEd Maste doc/doxy_frontpage.md 91310ff414cSEd Maste 91410ff414cSEd Maste# This tag can be used to specify the character encoding of the source files 91510ff414cSEd Maste# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses 91610ff414cSEd Maste# libiconv (or the iconv built into libc) for the transcoding. See the libiconv 9175d3e7166SEd Maste# documentation (see: 9185d3e7166SEd Maste# https://www.gnu.org/software/libiconv/) for the list of possible encodings. 9195d3e7166SEd Maste# See also: INPUT_FILE_ENCODING 92010ff414cSEd Maste# The default value is: UTF-8. 92110ff414cSEd Maste 92210ff414cSEd MasteINPUT_ENCODING = UTF-8 92310ff414cSEd Maste 9245d3e7166SEd Maste# This tag can be used to specify the character encoding of the source files 9255d3e7166SEd Maste# that doxygen parses The INPUT_FILE_ENCODING tag can be used to specify 9265d3e7166SEd Maste# character encoding on a per file pattern basis. Doxygen will compare the file 9275d3e7166SEd Maste# name with each pattern and apply the encoding instead of the default 9285d3e7166SEd Maste# INPUT_ENCODING) if there is a match. The character encodings are a list of the 9295d3e7166SEd Maste# form: pattern=encoding (like *.php=ISO-8859-1). See cfg_input_encoding 9305d3e7166SEd Maste# "INPUT_ENCODING" for further information on supported encodings. 9315d3e7166SEd Maste 9325d3e7166SEd MasteINPUT_FILE_ENCODING = 9335d3e7166SEd Maste 93410ff414cSEd Maste# If the value of the INPUT tag contains directories, you can use the 93510ff414cSEd Maste# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and 93610ff414cSEd Maste# *.h) to filter out the source-files in the directories. 93710ff414cSEd Maste# 93810ff414cSEd Maste# Note that for custom extensions or not directly supported extensions you also 93910ff414cSEd Maste# need to set EXTENSION_MAPPING for the extension otherwise the files are not 94010ff414cSEd Maste# read by doxygen. 94110ff414cSEd Maste# 9425d3e7166SEd Maste# Note the list of default checked file patterns might differ from the list of 9435d3e7166SEd Maste# default file extension mappings. 9445d3e7166SEd Maste# 94510ff414cSEd Maste# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, 94610ff414cSEd Maste# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, 9475d3e7166SEd Maste# *.hh, *.hxx, *.hpp, *.h++, *.l, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, 9485d3e7166SEd Maste# *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C 9495d3e7166SEd Maste# comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, 9505d3e7166SEd Maste# *.vhdl, *.ucf, *.qsf and *.ice. 95110ff414cSEd Maste 95210ff414cSEd MasteFILE_PATTERNS = 95310ff414cSEd Maste 95410ff414cSEd Maste# The RECURSIVE tag can be used to specify whether or not subdirectories should 95510ff414cSEd Maste# be searched for input files as well. 95610ff414cSEd Maste# The default value is: NO. 95710ff414cSEd Maste 95810ff414cSEd MasteRECURSIVE = YES 95910ff414cSEd Maste 96010ff414cSEd Maste# The EXCLUDE tag can be used to specify files and/or directories that should be 96110ff414cSEd Maste# excluded from the INPUT source files. This way you can easily exclude a 96210ff414cSEd Maste# subdirectory from a directory tree whose root is specified with the INPUT tag. 96310ff414cSEd Maste# 96410ff414cSEd Maste# Note that relative paths are relative to the directory from which doxygen is 96510ff414cSEd Maste# run. 96610ff414cSEd Maste 96710ff414cSEd MasteEXCLUDE = 96810ff414cSEd Maste 96910ff414cSEd Maste# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or 97010ff414cSEd Maste# directories that are symbolic links (a Unix file system feature) are excluded 97110ff414cSEd Maste# from the input. 97210ff414cSEd Maste# The default value is: NO. 97310ff414cSEd Maste 97410ff414cSEd MasteEXCLUDE_SYMLINKS = NO 97510ff414cSEd Maste 97610ff414cSEd Maste# If the value of the INPUT tag contains directories, you can use the 97710ff414cSEd Maste# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 97810ff414cSEd Maste# certain files from those directories. 97910ff414cSEd Maste# 98010ff414cSEd Maste# Note that the wildcards are matched against the file with absolute path, so to 98110ff414cSEd Maste# exclude all test directories for example use the pattern */test/* 98210ff414cSEd Maste 98310ff414cSEd MasteEXCLUDE_PATTERNS = 98410ff414cSEd Maste 98510ff414cSEd Maste# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 98610ff414cSEd Maste# (namespaces, classes, functions, etc.) that should be excluded from the 98710ff414cSEd Maste# output. The symbol name can be a fully qualified name, a word, or if the 98810ff414cSEd Maste# wildcard * is used, a substring. Examples: ANamespace, AClass, 9895d3e7166SEd Maste# ANamespace::AClass, ANamespace::*Test 99010ff414cSEd Maste# 99110ff414cSEd Maste# Note that the wildcards are matched against the file with absolute path, so to 99210ff414cSEd Maste# exclude all test directories use the pattern */test/* 99310ff414cSEd Maste 99410ff414cSEd MasteEXCLUDE_SYMBOLS = 99510ff414cSEd Maste 99610ff414cSEd Maste# The EXAMPLE_PATH tag can be used to specify one or more files or directories 99710ff414cSEd Maste# that contain example code fragments that are included (see the \include 99810ff414cSEd Maste# command). 99910ff414cSEd Maste 100010ff414cSEd MasteEXAMPLE_PATH = 100110ff414cSEd Maste 100210ff414cSEd Maste# If the value of the EXAMPLE_PATH tag contains directories, you can use the 100310ff414cSEd Maste# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and 100410ff414cSEd Maste# *.h) to filter out the source-files in the directories. If left blank all 100510ff414cSEd Maste# files are included. 100610ff414cSEd Maste 100710ff414cSEd MasteEXAMPLE_PATTERNS = 100810ff414cSEd Maste 100910ff414cSEd Maste# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 101010ff414cSEd Maste# searched for input files to be used with the \include or \dontinclude commands 101110ff414cSEd Maste# irrespective of the value of the RECURSIVE tag. 101210ff414cSEd Maste# The default value is: NO. 101310ff414cSEd Maste 101410ff414cSEd MasteEXAMPLE_RECURSIVE = NO 101510ff414cSEd Maste 101610ff414cSEd Maste# The IMAGE_PATH tag can be used to specify one or more files or directories 101710ff414cSEd Maste# that contain images that are to be included in the documentation (see the 101810ff414cSEd Maste# \image command). 101910ff414cSEd Maste 102010ff414cSEd MasteIMAGE_PATH = 102110ff414cSEd Maste 102210ff414cSEd Maste# The INPUT_FILTER tag can be used to specify a program that doxygen should 102310ff414cSEd Maste# invoke to filter for each input file. Doxygen will invoke the filter program 102410ff414cSEd Maste# by executing (via popen()) the command: 102510ff414cSEd Maste# 102610ff414cSEd Maste# <filter> <input-file> 102710ff414cSEd Maste# 102810ff414cSEd Maste# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the 102910ff414cSEd Maste# name of an input file. Doxygen will then use the output that the filter 103010ff414cSEd Maste# program writes to standard output. If FILTER_PATTERNS is specified, this tag 103110ff414cSEd Maste# will be ignored. 103210ff414cSEd Maste# 103310ff414cSEd Maste# Note that the filter must not add or remove lines; it is applied before the 103410ff414cSEd Maste# code is scanned, but not when the output code is generated. If lines are added 103510ff414cSEd Maste# or removed, the anchors will not be placed correctly. 103610ff414cSEd Maste# 10375d3e7166SEd Maste# Note that doxygen will use the data processed and written to standard output 10385d3e7166SEd Maste# for further processing, therefore nothing else, like debug statements or used 10395d3e7166SEd Maste# commands (so in case of a Windows batch file always use @echo OFF), should be 10405d3e7166SEd Maste# written to standard output. 10415d3e7166SEd Maste# 104210ff414cSEd Maste# Note that for custom extensions or not directly supported extensions you also 104310ff414cSEd Maste# need to set EXTENSION_MAPPING for the extension otherwise the files are not 104410ff414cSEd Maste# properly processed by doxygen. 104510ff414cSEd Maste 104610ff414cSEd MasteINPUT_FILTER = 104710ff414cSEd Maste 104810ff414cSEd Maste# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 104910ff414cSEd Maste# basis. Doxygen will compare the file name with each pattern and apply the 105010ff414cSEd Maste# filter if there is a match. The filters are a list of the form: pattern=filter 105110ff414cSEd Maste# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how 105210ff414cSEd Maste# filters are used. If the FILTER_PATTERNS tag is empty or if none of the 105310ff414cSEd Maste# patterns match the file name, INPUT_FILTER is applied. 105410ff414cSEd Maste# 105510ff414cSEd Maste# Note that for custom extensions or not directly supported extensions you also 105610ff414cSEd Maste# need to set EXTENSION_MAPPING for the extension otherwise the files are not 105710ff414cSEd Maste# properly processed by doxygen. 105810ff414cSEd Maste 105910ff414cSEd MasteFILTER_PATTERNS = 106010ff414cSEd Maste 106110ff414cSEd Maste# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 106210ff414cSEd Maste# INPUT_FILTER) will also be used to filter the input files that are used for 106310ff414cSEd Maste# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). 106410ff414cSEd Maste# The default value is: NO. 106510ff414cSEd Maste 106610ff414cSEd MasteFILTER_SOURCE_FILES = NO 106710ff414cSEd Maste 106810ff414cSEd Maste# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file 106910ff414cSEd Maste# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and 107010ff414cSEd Maste# it is also possible to disable source filtering for a specific pattern using 107110ff414cSEd Maste# *.ext= (so without naming a filter). 107210ff414cSEd Maste# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. 107310ff414cSEd Maste 107410ff414cSEd MasteFILTER_SOURCE_PATTERNS = 107510ff414cSEd Maste 107610ff414cSEd Maste# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that 107710ff414cSEd Maste# is part of the input, its contents will be placed on the main page 107810ff414cSEd Maste# (index.html). This can be useful if you have a project on for instance GitHub 107910ff414cSEd Maste# and want to reuse the introduction page also for the doxygen output. 108010ff414cSEd Maste 108110ff414cSEd MasteUSE_MDFILE_AS_MAINPAGE = doc/doxy_frontpage.md 108210ff414cSEd Maste 10835d3e7166SEd Maste# The Fortran standard specifies that for fixed formatted Fortran code all 10845d3e7166SEd Maste# characters from position 72 are to be considered as comment. A common 10855d3e7166SEd Maste# extension is to allow longer lines before the automatic comment starts. The 10865d3e7166SEd Maste# setting FORTRAN_COMMENT_AFTER will also make it possible that longer lines can 10875d3e7166SEd Maste# be processed before the automatic comment starts. 10885d3e7166SEd Maste# Minimum value: 7, maximum value: 10000, default value: 72. 10895d3e7166SEd Maste 10905d3e7166SEd MasteFORTRAN_COMMENT_AFTER = 72 10915d3e7166SEd Maste 109210ff414cSEd Maste#--------------------------------------------------------------------------- 109310ff414cSEd Maste# Configuration options related to source browsing 109410ff414cSEd Maste#--------------------------------------------------------------------------- 109510ff414cSEd Maste 109610ff414cSEd Maste# If the SOURCE_BROWSER tag is set to YES then a list of source files will be 109710ff414cSEd Maste# generated. Documented entities will be cross-referenced with these sources. 109810ff414cSEd Maste# 109910ff414cSEd Maste# Note: To get rid of all source code in the generated output, make sure that 110010ff414cSEd Maste# also VERBATIM_HEADERS is set to NO. 110110ff414cSEd Maste# The default value is: NO. 110210ff414cSEd Maste 110310ff414cSEd MasteSOURCE_BROWSER = YES 110410ff414cSEd Maste 110510ff414cSEd Maste# Setting the INLINE_SOURCES tag to YES will include the body of functions, 110610ff414cSEd Maste# classes and enums directly into the documentation. 110710ff414cSEd Maste# The default value is: NO. 110810ff414cSEd Maste 110910ff414cSEd MasteINLINE_SOURCES = NO 111010ff414cSEd Maste 111110ff414cSEd Maste# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any 111210ff414cSEd Maste# special comment blocks from generated source code fragments. Normal C, C++ and 111310ff414cSEd Maste# Fortran comments will always remain visible. 111410ff414cSEd Maste# The default value is: YES. 111510ff414cSEd Maste 111610ff414cSEd MasteSTRIP_CODE_COMMENTS = YES 111710ff414cSEd Maste 111810ff414cSEd Maste# If the REFERENCED_BY_RELATION tag is set to YES then for each documented 11195d3e7166SEd Maste# entity all documented functions referencing it will be listed. 112010ff414cSEd Maste# The default value is: NO. 112110ff414cSEd Maste 112210ff414cSEd MasteREFERENCED_BY_RELATION = NO 112310ff414cSEd Maste 112410ff414cSEd Maste# If the REFERENCES_RELATION tag is set to YES then for each documented function 112510ff414cSEd Maste# all documented entities called/used by that function will be listed. 112610ff414cSEd Maste# The default value is: NO. 112710ff414cSEd Maste 112810ff414cSEd MasteREFERENCES_RELATION = NO 112910ff414cSEd Maste 113010ff414cSEd Maste# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set 113110ff414cSEd Maste# to YES then the hyperlinks from functions in REFERENCES_RELATION and 113210ff414cSEd Maste# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will 113310ff414cSEd Maste# link to the documentation. 113410ff414cSEd Maste# The default value is: YES. 113510ff414cSEd Maste 113610ff414cSEd MasteREFERENCES_LINK_SOURCE = YES 113710ff414cSEd Maste 113810ff414cSEd Maste# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the 113910ff414cSEd Maste# source code will show a tooltip with additional information such as prototype, 114010ff414cSEd Maste# brief description and links to the definition and documentation. Since this 114110ff414cSEd Maste# will make the HTML file larger and loading of large files a bit slower, you 114210ff414cSEd Maste# can opt to disable this feature. 114310ff414cSEd Maste# The default value is: YES. 114410ff414cSEd Maste# This tag requires that the tag SOURCE_BROWSER is set to YES. 114510ff414cSEd Maste 114610ff414cSEd MasteSOURCE_TOOLTIPS = YES 114710ff414cSEd Maste 114810ff414cSEd Maste# If the USE_HTAGS tag is set to YES then the references to source code will 114910ff414cSEd Maste# point to the HTML generated by the htags(1) tool instead of doxygen built-in 115010ff414cSEd Maste# source browser. The htags tool is part of GNU's global source tagging system 11515d3e7166SEd Maste# (see https://www.gnu.org/software/global/global.html). You will need version 115210ff414cSEd Maste# 4.8.6 or higher. 115310ff414cSEd Maste# 115410ff414cSEd Maste# To use it do the following: 115510ff414cSEd Maste# - Install the latest version of global 11565d3e7166SEd Maste# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file 115710ff414cSEd Maste# - Make sure the INPUT points to the root of the source tree 115810ff414cSEd Maste# - Run doxygen as normal 115910ff414cSEd Maste# 116010ff414cSEd Maste# Doxygen will invoke htags (and that will in turn invoke gtags), so these 116110ff414cSEd Maste# tools must be available from the command line (i.e. in the search path). 116210ff414cSEd Maste# 116310ff414cSEd Maste# The result: instead of the source browser generated by doxygen, the links to 116410ff414cSEd Maste# source code will now point to the output of htags. 116510ff414cSEd Maste# The default value is: NO. 116610ff414cSEd Maste# This tag requires that the tag SOURCE_BROWSER is set to YES. 116710ff414cSEd Maste 116810ff414cSEd MasteUSE_HTAGS = NO 116910ff414cSEd Maste 117010ff414cSEd Maste# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a 117110ff414cSEd Maste# verbatim copy of the header file for each class for which an include is 117210ff414cSEd Maste# specified. Set to NO to disable this. 117310ff414cSEd Maste# See also: Section \class. 117410ff414cSEd Maste# The default value is: YES. 117510ff414cSEd Maste 117610ff414cSEd MasteVERBATIM_HEADERS = YES 117710ff414cSEd Maste 117810ff414cSEd Maste#--------------------------------------------------------------------------- 117910ff414cSEd Maste# Configuration options related to the alphabetical class index 118010ff414cSEd Maste#--------------------------------------------------------------------------- 118110ff414cSEd Maste 118210ff414cSEd Maste# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all 118310ff414cSEd Maste# compounds will be generated. Enable this if the project contains a lot of 118410ff414cSEd Maste# classes, structs, unions or interfaces. 118510ff414cSEd Maste# The default value is: YES. 118610ff414cSEd Maste 118710ff414cSEd MasteALPHABETICAL_INDEX = YES 118810ff414cSEd Maste 11895d3e7166SEd Maste# The IGNORE_PREFIX tag can be used to specify a prefix (or a list of prefixes) 11905d3e7166SEd Maste# that should be ignored while generating the index headers. The IGNORE_PREFIX 11915d3e7166SEd Maste# tag works for classes, function and member names. The entity will be placed in 11925d3e7166SEd Maste# the alphabetical list under the first letter of the entity name that remains 11935d3e7166SEd Maste# after removing the prefix. 119410ff414cSEd Maste# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. 119510ff414cSEd Maste 119610ff414cSEd MasteIGNORE_PREFIX = 119710ff414cSEd Maste 119810ff414cSEd Maste#--------------------------------------------------------------------------- 119910ff414cSEd Maste# Configuration options related to the HTML output 120010ff414cSEd Maste#--------------------------------------------------------------------------- 120110ff414cSEd Maste 120210ff414cSEd Maste# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output 120310ff414cSEd Maste# The default value is: YES. 120410ff414cSEd Maste 120510ff414cSEd MasteGENERATE_HTML = YES 120610ff414cSEd Maste 120710ff414cSEd Maste# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a 120810ff414cSEd Maste# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 120910ff414cSEd Maste# it. 121010ff414cSEd Maste# The default directory is: html. 121110ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 121210ff414cSEd Maste 121310ff414cSEd MasteHTML_OUTPUT = html 121410ff414cSEd Maste 121510ff414cSEd Maste# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each 121610ff414cSEd Maste# generated HTML page (for example: .htm, .php, .asp). 121710ff414cSEd Maste# The default value is: .html. 121810ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 121910ff414cSEd Maste 122010ff414cSEd MasteHTML_FILE_EXTENSION = .html 122110ff414cSEd Maste 122210ff414cSEd Maste# The HTML_HEADER tag can be used to specify a user-defined HTML header file for 122310ff414cSEd Maste# each generated HTML page. If the tag is left blank doxygen will generate a 122410ff414cSEd Maste# standard header. 122510ff414cSEd Maste# 122610ff414cSEd Maste# To get valid HTML the header file that includes any scripts and style sheets 122710ff414cSEd Maste# that doxygen needs, which is dependent on the configuration options used (e.g. 122810ff414cSEd Maste# the setting GENERATE_TREEVIEW). It is highly recommended to start with a 122910ff414cSEd Maste# default header using 123010ff414cSEd Maste# doxygen -w html new_header.html new_footer.html new_stylesheet.css 123110ff414cSEd Maste# YourConfigFile 123210ff414cSEd Maste# and then modify the file new_header.html. See also section "Doxygen usage" 123310ff414cSEd Maste# for information on how to generate the default header that doxygen normally 123410ff414cSEd Maste# uses. 123510ff414cSEd Maste# Note: The header is subject to change so you typically have to regenerate the 123610ff414cSEd Maste# default header when upgrading to a newer version of doxygen. For a description 123710ff414cSEd Maste# of the possible markers and block names see the documentation. 123810ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 123910ff414cSEd Maste 124010ff414cSEd MasteHTML_HEADER = 124110ff414cSEd Maste 124210ff414cSEd Maste# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each 124310ff414cSEd Maste# generated HTML page. If the tag is left blank doxygen will generate a standard 124410ff414cSEd Maste# footer. See HTML_HEADER for more information on how to generate a default 124510ff414cSEd Maste# footer and what special commands can be used inside the footer. See also 124610ff414cSEd Maste# section "Doxygen usage" for information on how to generate the default footer 124710ff414cSEd Maste# that doxygen normally uses. 124810ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 124910ff414cSEd Maste 125010ff414cSEd MasteHTML_FOOTER = 125110ff414cSEd Maste 125210ff414cSEd Maste# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style 125310ff414cSEd Maste# sheet that is used by each HTML page. It can be used to fine-tune the look of 125410ff414cSEd Maste# the HTML output. If left blank doxygen will generate a default style sheet. 125510ff414cSEd Maste# See also section "Doxygen usage" for information on how to generate the style 125610ff414cSEd Maste# sheet that doxygen normally uses. 125710ff414cSEd Maste# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as 125810ff414cSEd Maste# it is more robust and this tag (HTML_STYLESHEET) will in the future become 125910ff414cSEd Maste# obsolete. 126010ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 126110ff414cSEd Maste 126210ff414cSEd MasteHTML_STYLESHEET = 126310ff414cSEd Maste 126410ff414cSEd Maste# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined 126510ff414cSEd Maste# cascading style sheets that are included after the standard style sheets 126610ff414cSEd Maste# created by doxygen. Using this option one can overrule certain style aspects. 126710ff414cSEd Maste# This is preferred over using HTML_STYLESHEET since it does not replace the 126810ff414cSEd Maste# standard style sheet and is therefore more robust against future updates. 126910ff414cSEd Maste# Doxygen will copy the style sheet files to the output directory. 127010ff414cSEd Maste# Note: The order of the extra style sheet files is of importance (e.g. the last 127110ff414cSEd Maste# style sheet in the list overrules the setting of the previous ones in the 12725d3e7166SEd Maste# list). 12735d3e7166SEd Maste# Note: Since the styling of scrollbars can currently not be overruled in 12745d3e7166SEd Maste# Webkit/Chromium, the styling will be left out of the default doxygen.css if 12755d3e7166SEd Maste# one or more extra stylesheets have been specified. So if scrollbar 12765d3e7166SEd Maste# customization is desired it has to be added explicitly. For an example see the 12775d3e7166SEd Maste# documentation. 127810ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 127910ff414cSEd Maste 128010ff414cSEd MasteHTML_EXTRA_STYLESHEET = doxygen-theme/customdoxygen.css 128110ff414cSEd Maste 128210ff414cSEd Maste# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or 128310ff414cSEd Maste# other source files which should be copied to the HTML output directory. Note 128410ff414cSEd Maste# that these files will be copied to the base HTML output directory. Use the 128510ff414cSEd Maste# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these 128610ff414cSEd Maste# files. In the HTML_STYLESHEET file, use the file name only. Also note that the 128710ff414cSEd Maste# files will be copied as-is; there are no commands or markers available. 128810ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 128910ff414cSEd Maste 129010ff414cSEd MasteHTML_EXTRA_FILES = 129110ff414cSEd Maste 12925d3e7166SEd Maste# The HTML_COLORSTYLE tag can be used to specify if the generated HTML output 12935d3e7166SEd Maste# should be rendered with a dark or light theme. 12945d3e7166SEd Maste# Possible values are: LIGHT always generate light mode output, DARK always 12955d3e7166SEd Maste# generate dark mode output, AUTO_LIGHT automatically set the mode according to 12965d3e7166SEd Maste# the user preference, use light mode if no preference is set (the default), 12975d3e7166SEd Maste# AUTO_DARK automatically set the mode according to the user preference, use 12985d3e7166SEd Maste# dark mode if no preference is set and TOGGLE allow to user to switch between 12995d3e7166SEd Maste# light and dark mode via a button. 13005d3e7166SEd Maste# The default value is: AUTO_LIGHT. 13015d3e7166SEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 13025d3e7166SEd Maste 13035d3e7166SEd MasteHTML_COLORSTYLE = AUTO_LIGHT 13045d3e7166SEd Maste 130510ff414cSEd Maste# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen 130610ff414cSEd Maste# will adjust the colors in the style sheet and background images according to 13075d3e7166SEd Maste# this color. Hue is specified as an angle on a color-wheel, see 13085d3e7166SEd Maste# https://en.wikipedia.org/wiki/Hue for more information. For instance the value 130910ff414cSEd Maste# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 131010ff414cSEd Maste# purple, and 360 is red again. 131110ff414cSEd Maste# Minimum value: 0, maximum value: 359, default value: 220. 131210ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 131310ff414cSEd Maste 131410ff414cSEd MasteHTML_COLORSTYLE_HUE = 220 131510ff414cSEd Maste 131610ff414cSEd Maste# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors 13175d3e7166SEd Maste# in the HTML output. For a value of 0 the output will use gray-scales only. A 131810ff414cSEd Maste# value of 255 will produce the most vivid colors. 131910ff414cSEd Maste# Minimum value: 0, maximum value: 255, default value: 100. 132010ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 132110ff414cSEd Maste 132210ff414cSEd MasteHTML_COLORSTYLE_SAT = 100 132310ff414cSEd Maste 132410ff414cSEd Maste# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the 132510ff414cSEd Maste# luminance component of the colors in the HTML output. Values below 100 132610ff414cSEd Maste# gradually make the output lighter, whereas values above 100 make the output 132710ff414cSEd Maste# darker. The value divided by 100 is the actual gamma applied, so 80 represents 132810ff414cSEd Maste# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not 132910ff414cSEd Maste# change the gamma. 133010ff414cSEd Maste# Minimum value: 40, maximum value: 240, default value: 80. 133110ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 133210ff414cSEd Maste 133310ff414cSEd MasteHTML_COLORSTYLE_GAMMA = 80 133410ff414cSEd Maste 133510ff414cSEd Maste# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 133610ff414cSEd Maste# page will contain the date and time when the page was generated. Setting this 133710ff414cSEd Maste# to YES can help to show when doxygen was last run and thus if the 133810ff414cSEd Maste# documentation is up to date. 133910ff414cSEd Maste# The default value is: NO. 134010ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 134110ff414cSEd Maste 134210ff414cSEd MasteHTML_TIMESTAMP = YES 134310ff414cSEd Maste 13445d3e7166SEd Maste# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML 13455d3e7166SEd Maste# documentation will contain a main index with vertical navigation menus that 13465d3e7166SEd Maste# are dynamically created via JavaScript. If disabled, the navigation index will 13475d3e7166SEd Maste# consists of multiple levels of tabs that are statically embedded in every HTML 13485d3e7166SEd Maste# page. Disable this option to support browsers that do not have JavaScript, 13495d3e7166SEd Maste# like the Qt help browser. 13505d3e7166SEd Maste# The default value is: YES. 13515d3e7166SEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 13525d3e7166SEd Maste 13535d3e7166SEd MasteHTML_DYNAMIC_MENUS = YES 13545d3e7166SEd Maste 135510ff414cSEd Maste# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 135610ff414cSEd Maste# documentation will contain sections that can be hidden and shown after the 135710ff414cSEd Maste# page has loaded. 135810ff414cSEd Maste# The default value is: NO. 135910ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 136010ff414cSEd Maste 136110ff414cSEd MasteHTML_DYNAMIC_SECTIONS = NO 136210ff414cSEd Maste 136310ff414cSEd Maste# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries 136410ff414cSEd Maste# shown in the various tree structured indices initially; the user can expand 136510ff414cSEd Maste# and collapse entries dynamically later on. Doxygen will expand the tree to 136610ff414cSEd Maste# such a level that at most the specified number of entries are visible (unless 136710ff414cSEd Maste# a fully collapsed tree already exceeds this amount). So setting the number of 136810ff414cSEd Maste# entries 1 will produce a full collapsed tree by default. 0 is a special value 136910ff414cSEd Maste# representing an infinite number of entries and will result in a full expanded 137010ff414cSEd Maste# tree by default. 137110ff414cSEd Maste# Minimum value: 0, maximum value: 9999, default value: 100. 137210ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 137310ff414cSEd Maste 137410ff414cSEd MasteHTML_INDEX_NUM_ENTRIES = 100 137510ff414cSEd Maste 137610ff414cSEd Maste# If the GENERATE_DOCSET tag is set to YES, additional index files will be 137710ff414cSEd Maste# generated that can be used as input for Apple's Xcode 3 integrated development 13785d3e7166SEd Maste# environment (see: 13795d3e7166SEd Maste# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To 13805d3e7166SEd Maste# create a documentation set, doxygen will generate a Makefile in the HTML 13815d3e7166SEd Maste# output directory. Running make will produce the docset in that directory and 13825d3e7166SEd Maste# running make install will install the docset in 138310ff414cSEd Maste# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at 13845d3e7166SEd Maste# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy 13855d3e7166SEd Maste# genXcode/_index.html for more information. 138610ff414cSEd Maste# The default value is: NO. 138710ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 138810ff414cSEd Maste 138910ff414cSEd MasteGENERATE_DOCSET = NO 139010ff414cSEd Maste 139110ff414cSEd Maste# This tag determines the name of the docset feed. A documentation feed provides 139210ff414cSEd Maste# an umbrella under which multiple documentation sets from a single provider 139310ff414cSEd Maste# (such as a company or product suite) can be grouped. 139410ff414cSEd Maste# The default value is: Doxygen generated docs. 139510ff414cSEd Maste# This tag requires that the tag GENERATE_DOCSET is set to YES. 139610ff414cSEd Maste 139710ff414cSEd MasteDOCSET_FEEDNAME = "Doxygen generated docs" 139810ff414cSEd Maste 13995d3e7166SEd Maste# This tag determines the URL of the docset feed. A documentation feed provides 14005d3e7166SEd Maste# an umbrella under which multiple documentation sets from a single provider 14015d3e7166SEd Maste# (such as a company or product suite) can be grouped. 14025d3e7166SEd Maste# This tag requires that the tag GENERATE_DOCSET is set to YES. 14035d3e7166SEd Maste 14045d3e7166SEd MasteDOCSET_FEEDURL = 14055d3e7166SEd Maste 140610ff414cSEd Maste# This tag specifies a string that should uniquely identify the documentation 140710ff414cSEd Maste# set bundle. This should be a reverse domain-name style string, e.g. 140810ff414cSEd Maste# com.mycompany.MyDocSet. Doxygen will append .docset to the name. 140910ff414cSEd Maste# The default value is: org.doxygen.Project. 141010ff414cSEd Maste# This tag requires that the tag GENERATE_DOCSET is set to YES. 141110ff414cSEd Maste 141210ff414cSEd MasteDOCSET_BUNDLE_ID = org.doxygen.Project 141310ff414cSEd Maste 141410ff414cSEd Maste# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify 141510ff414cSEd Maste# the documentation publisher. This should be a reverse domain-name style 141610ff414cSEd Maste# string, e.g. com.mycompany.MyDocSet.documentation. 141710ff414cSEd Maste# The default value is: org.doxygen.Publisher. 141810ff414cSEd Maste# This tag requires that the tag GENERATE_DOCSET is set to YES. 141910ff414cSEd Maste 142010ff414cSEd MasteDOCSET_PUBLISHER_ID = org.doxygen.Publisher 142110ff414cSEd Maste 142210ff414cSEd Maste# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. 142310ff414cSEd Maste# The default value is: Publisher. 142410ff414cSEd Maste# This tag requires that the tag GENERATE_DOCSET is set to YES. 142510ff414cSEd Maste 142610ff414cSEd MasteDOCSET_PUBLISHER_NAME = Publisher 142710ff414cSEd Maste 142810ff414cSEd Maste# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three 142910ff414cSEd Maste# additional HTML index files: index.hhp, index.hhc, and index.hhk. The 143010ff414cSEd Maste# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop 14315d3e7166SEd Maste# on Windows. In the beginning of 2021 Microsoft took the original page, with 14325d3e7166SEd Maste# a.o. the download links, offline the HTML help workshop was already many years 14335d3e7166SEd Maste# in maintenance mode). You can download the HTML help workshop from the web 14345d3e7166SEd Maste# archives at Installation executable (see: 14355d3e7166SEd Maste# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo 14365d3e7166SEd Maste# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe). 143710ff414cSEd Maste# 143810ff414cSEd Maste# The HTML Help Workshop contains a compiler that can convert all HTML output 143910ff414cSEd Maste# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML 144010ff414cSEd Maste# files are now used as the Windows 98 help format, and will replace the old 144110ff414cSEd Maste# Windows help format (.hlp) on all Windows platforms in the future. Compressed 144210ff414cSEd Maste# HTML files also contain an index, a table of contents, and you can search for 144310ff414cSEd Maste# words in the documentation. The HTML workshop also contains a viewer for 144410ff414cSEd Maste# compressed HTML files. 144510ff414cSEd Maste# The default value is: NO. 144610ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 144710ff414cSEd Maste 144810ff414cSEd MasteGENERATE_HTMLHELP = NO 144910ff414cSEd Maste 145010ff414cSEd Maste# The CHM_FILE tag can be used to specify the file name of the resulting .chm 145110ff414cSEd Maste# file. You can add a path in front of the file if the result should not be 145210ff414cSEd Maste# written to the html output directory. 145310ff414cSEd Maste# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 145410ff414cSEd Maste 145510ff414cSEd MasteCHM_FILE = 145610ff414cSEd Maste 145710ff414cSEd Maste# The HHC_LOCATION tag can be used to specify the location (absolute path 145810ff414cSEd Maste# including file name) of the HTML help compiler (hhc.exe). If non-empty, 145910ff414cSEd Maste# doxygen will try to run the HTML help compiler on the generated index.hhp. 146010ff414cSEd Maste# The file has to be specified with full path. 146110ff414cSEd Maste# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 146210ff414cSEd Maste 146310ff414cSEd MasteHHC_LOCATION = 146410ff414cSEd Maste 146510ff414cSEd Maste# The GENERATE_CHI flag controls if a separate .chi index file is generated 14665d3e7166SEd Maste# (YES) or that it should be included in the main .chm file (NO). 146710ff414cSEd Maste# The default value is: NO. 146810ff414cSEd Maste# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 146910ff414cSEd Maste 147010ff414cSEd MasteGENERATE_CHI = NO 147110ff414cSEd Maste 147210ff414cSEd Maste# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) 147310ff414cSEd Maste# and project file content. 147410ff414cSEd Maste# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 147510ff414cSEd Maste 147610ff414cSEd MasteCHM_INDEX_ENCODING = 147710ff414cSEd Maste 147810ff414cSEd Maste# The BINARY_TOC flag controls whether a binary table of contents is generated 147910ff414cSEd Maste# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it 148010ff414cSEd Maste# enables the Previous and Next buttons. 148110ff414cSEd Maste# The default value is: NO. 148210ff414cSEd Maste# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 148310ff414cSEd Maste 148410ff414cSEd MasteBINARY_TOC = NO 148510ff414cSEd Maste 148610ff414cSEd Maste# The TOC_EXPAND flag can be set to YES to add extra items for group members to 148710ff414cSEd Maste# the table of contents of the HTML help documentation and to the tree view. 148810ff414cSEd Maste# The default value is: NO. 148910ff414cSEd Maste# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 149010ff414cSEd Maste 149110ff414cSEd MasteTOC_EXPAND = NO 149210ff414cSEd Maste 149310ff414cSEd Maste# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and 149410ff414cSEd Maste# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that 149510ff414cSEd Maste# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help 149610ff414cSEd Maste# (.qch) of the generated HTML documentation. 149710ff414cSEd Maste# The default value is: NO. 149810ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 149910ff414cSEd Maste 150010ff414cSEd MasteGENERATE_QHP = NO 150110ff414cSEd Maste 150210ff414cSEd Maste# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify 150310ff414cSEd Maste# the file name of the resulting .qch file. The path specified is relative to 150410ff414cSEd Maste# the HTML output folder. 150510ff414cSEd Maste# This tag requires that the tag GENERATE_QHP is set to YES. 150610ff414cSEd Maste 150710ff414cSEd MasteQCH_FILE = 150810ff414cSEd Maste 150910ff414cSEd Maste# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help 151010ff414cSEd Maste# Project output. For more information please see Qt Help Project / Namespace 15115d3e7166SEd Maste# (see: 15125d3e7166SEd Maste# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). 151310ff414cSEd Maste# The default value is: org.doxygen.Project. 151410ff414cSEd Maste# This tag requires that the tag GENERATE_QHP is set to YES. 151510ff414cSEd Maste 151610ff414cSEd MasteQHP_NAMESPACE = org.doxygen.Project 151710ff414cSEd Maste 151810ff414cSEd Maste# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt 151910ff414cSEd Maste# Help Project output. For more information please see Qt Help Project / Virtual 15205d3e7166SEd Maste# Folders (see: 15215d3e7166SEd Maste# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). 152210ff414cSEd Maste# The default value is: doc. 152310ff414cSEd Maste# This tag requires that the tag GENERATE_QHP is set to YES. 152410ff414cSEd Maste 152510ff414cSEd MasteQHP_VIRTUAL_FOLDER = doc 152610ff414cSEd Maste 152710ff414cSEd Maste# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom 152810ff414cSEd Maste# filter to add. For more information please see Qt Help Project / Custom 15295d3e7166SEd Maste# Filters (see: 15305d3e7166SEd Maste# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). 153110ff414cSEd Maste# This tag requires that the tag GENERATE_QHP is set to YES. 153210ff414cSEd Maste 153310ff414cSEd MasteQHP_CUST_FILTER_NAME = 153410ff414cSEd Maste 153510ff414cSEd Maste# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the 153610ff414cSEd Maste# custom filter to add. For more information please see Qt Help Project / Custom 15375d3e7166SEd Maste# Filters (see: 15385d3e7166SEd Maste# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). 153910ff414cSEd Maste# This tag requires that the tag GENERATE_QHP is set to YES. 154010ff414cSEd Maste 154110ff414cSEd MasteQHP_CUST_FILTER_ATTRS = 154210ff414cSEd Maste 154310ff414cSEd Maste# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this 154410ff414cSEd Maste# project's filter section matches. Qt Help Project / Filter Attributes (see: 15455d3e7166SEd Maste# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). 154610ff414cSEd Maste# This tag requires that the tag GENERATE_QHP is set to YES. 154710ff414cSEd Maste 154810ff414cSEd MasteQHP_SECT_FILTER_ATTRS = 154910ff414cSEd Maste 15505d3e7166SEd Maste# The QHG_LOCATION tag can be used to specify the location (absolute path 15515d3e7166SEd Maste# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to 15525d3e7166SEd Maste# run qhelpgenerator on the generated .qhp file. 155310ff414cSEd Maste# This tag requires that the tag GENERATE_QHP is set to YES. 155410ff414cSEd Maste 155510ff414cSEd MasteQHG_LOCATION = 155610ff414cSEd Maste 155710ff414cSEd Maste# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be 155810ff414cSEd Maste# generated, together with the HTML files, they form an Eclipse help plugin. To 155910ff414cSEd Maste# install this plugin and make it available under the help contents menu in 156010ff414cSEd Maste# Eclipse, the contents of the directory containing the HTML and XML files needs 156110ff414cSEd Maste# to be copied into the plugins directory of eclipse. The name of the directory 156210ff414cSEd Maste# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. 156310ff414cSEd Maste# After copying Eclipse needs to be restarted before the help appears. 156410ff414cSEd Maste# The default value is: NO. 156510ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 156610ff414cSEd Maste 156710ff414cSEd MasteGENERATE_ECLIPSEHELP = NO 156810ff414cSEd Maste 156910ff414cSEd Maste# A unique identifier for the Eclipse help plugin. When installing the plugin 157010ff414cSEd Maste# the directory name containing the HTML and XML files should also have this 157110ff414cSEd Maste# name. Each documentation set should have its own identifier. 157210ff414cSEd Maste# The default value is: org.doxygen.Project. 157310ff414cSEd Maste# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. 157410ff414cSEd Maste 157510ff414cSEd MasteECLIPSE_DOC_ID = org.doxygen.Project 157610ff414cSEd Maste 157710ff414cSEd Maste# If you want full control over the layout of the generated HTML pages it might 157810ff414cSEd Maste# be necessary to disable the index and replace it with your own. The 157910ff414cSEd Maste# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top 158010ff414cSEd Maste# of each HTML page. A value of NO enables the index and the value YES disables 158110ff414cSEd Maste# it. Since the tabs in the index contain the same information as the navigation 158210ff414cSEd Maste# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. 158310ff414cSEd Maste# The default value is: NO. 158410ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 158510ff414cSEd Maste 158610ff414cSEd MasteDISABLE_INDEX = NO 158710ff414cSEd Maste 158810ff414cSEd Maste# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index 158910ff414cSEd Maste# structure should be generated to display hierarchical information. If the tag 159010ff414cSEd Maste# value is set to YES, a side panel will be generated containing a tree-like 159110ff414cSEd Maste# index structure (just like the one that is generated for HTML Help). For this 159210ff414cSEd Maste# to work a browser that supports JavaScript, DHTML, CSS and frames is required 159310ff414cSEd Maste# (i.e. any modern browser). Windows users are probably better off using the 159410ff414cSEd Maste# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can 15955d3e7166SEd Maste# further fine tune the look of the index (see "Fine-tuning the output"). As an 15965d3e7166SEd Maste# example, the default style sheet generated by doxygen has an example that 15975d3e7166SEd Maste# shows how to put an image at the root of the tree instead of the PROJECT_NAME. 15985d3e7166SEd Maste# Since the tree basically has the same information as the tab index, you could 15995d3e7166SEd Maste# consider setting DISABLE_INDEX to YES when enabling this option. 160010ff414cSEd Maste# The default value is: NO. 160110ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 160210ff414cSEd Maste 160310ff414cSEd MasteGENERATE_TREEVIEW = NO 160410ff414cSEd Maste 16055d3e7166SEd Maste# When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the 16065d3e7166SEd Maste# FULL_SIDEBAR option determines if the side bar is limited to only the treeview 16075d3e7166SEd Maste# area (value NO) or if it should extend to the full height of the window (value 16085d3e7166SEd Maste# YES). Setting this to YES gives a layout similar to 16095d3e7166SEd Maste# https://docs.readthedocs.io with more room for contents, but less room for the 16105d3e7166SEd Maste# project logo, title, and description. If either GENERATE_TREEVIEW or 16115d3e7166SEd Maste# DISABLE_INDEX is set to NO, this option has no effect. 16125d3e7166SEd Maste# The default value is: NO. 16135d3e7166SEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 16145d3e7166SEd Maste 16155d3e7166SEd MasteFULL_SIDEBAR = NO 16165d3e7166SEd Maste 161710ff414cSEd Maste# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that 161810ff414cSEd Maste# doxygen will group on one line in the generated HTML documentation. 161910ff414cSEd Maste# 162010ff414cSEd Maste# Note that a value of 0 will completely suppress the enum values from appearing 162110ff414cSEd Maste# in the overview section. 162210ff414cSEd Maste# Minimum value: 0, maximum value: 20, default value: 4. 162310ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 162410ff414cSEd Maste 162510ff414cSEd MasteENUM_VALUES_PER_LINE = 4 162610ff414cSEd Maste 162710ff414cSEd Maste# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used 162810ff414cSEd Maste# to set the initial width (in pixels) of the frame in which the tree is shown. 162910ff414cSEd Maste# Minimum value: 0, maximum value: 1500, default value: 250. 163010ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 163110ff414cSEd Maste 163210ff414cSEd MasteTREEVIEW_WIDTH = 250 163310ff414cSEd Maste 163410ff414cSEd Maste# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to 163510ff414cSEd Maste# external symbols imported via tag files in a separate window. 163610ff414cSEd Maste# The default value is: NO. 163710ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 163810ff414cSEd Maste 163910ff414cSEd MasteEXT_LINKS_IN_WINDOW = NO 164010ff414cSEd Maste 16415d3e7166SEd Maste# If the OBFUSCATE_EMAILS tag is set to YES, doxygen will obfuscate email 16425d3e7166SEd Maste# addresses. 16435d3e7166SEd Maste# The default value is: YES. 16445d3e7166SEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 16455d3e7166SEd Maste 16465d3e7166SEd MasteOBFUSCATE_EMAILS = YES 16475d3e7166SEd Maste 16485d3e7166SEd Maste# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg 16495d3e7166SEd Maste# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see 16505d3e7166SEd Maste# https://inkscape.org) to generate formulas as SVG images instead of PNGs for 16515d3e7166SEd Maste# the HTML output. These images will generally look nicer at scaled resolutions. 16525d3e7166SEd Maste# Possible values are: png (the default) and svg (looks nicer but requires the 16535d3e7166SEd Maste# pdf2svg or inkscape tool). 16545d3e7166SEd Maste# The default value is: png. 16555d3e7166SEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 16565d3e7166SEd Maste 16575d3e7166SEd MasteHTML_FORMULA_FORMAT = png 16585d3e7166SEd Maste 165910ff414cSEd Maste# Use this tag to change the font size of LaTeX formulas included as images in 166010ff414cSEd Maste# the HTML documentation. When you change the font size after a successful 166110ff414cSEd Maste# doxygen run you need to manually remove any form_*.png images from the HTML 166210ff414cSEd Maste# output directory to force them to be regenerated. 166310ff414cSEd Maste# Minimum value: 8, maximum value: 50, default value: 10. 166410ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 166510ff414cSEd Maste 166610ff414cSEd MasteFORMULA_FONTSIZE = 10 166710ff414cSEd Maste 16685d3e7166SEd Maste# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands 16695d3e7166SEd Maste# to create new LaTeX commands to be used in formulas as building blocks. See 16705d3e7166SEd Maste# the section "Including formulas" for details. 167110ff414cSEd Maste 16725d3e7166SEd MasteFORMULA_MACROFILE = 167310ff414cSEd Maste 167410ff414cSEd Maste# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see 16755d3e7166SEd Maste# https://www.mathjax.org) which uses client side JavaScript for the rendering 167610ff414cSEd Maste# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX 167710ff414cSEd Maste# installed or if you want to formulas look prettier in the HTML output. When 167810ff414cSEd Maste# enabled you may also need to install MathJax separately and configure the path 167910ff414cSEd Maste# to it using the MATHJAX_RELPATH option. 168010ff414cSEd Maste# The default value is: NO. 168110ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 168210ff414cSEd Maste 168310ff414cSEd MasteUSE_MATHJAX = NO 168410ff414cSEd Maste 16855d3e7166SEd Maste# With MATHJAX_VERSION it is possible to specify the MathJax version to be used. 16865d3e7166SEd Maste# Note that the different versions of MathJax have different requirements with 16875d3e7166SEd Maste# regards to the different settings, so it is possible that also other MathJax 16885d3e7166SEd Maste# settings have to be changed when switching between the different MathJax 16895d3e7166SEd Maste# versions. 16905d3e7166SEd Maste# Possible values are: MathJax_2 and MathJax_3. 16915d3e7166SEd Maste# The default value is: MathJax_2. 16925d3e7166SEd Maste# This tag requires that the tag USE_MATHJAX is set to YES. 16935d3e7166SEd Maste 16945d3e7166SEd MasteMATHJAX_VERSION = MathJax_2 16955d3e7166SEd Maste 169610ff414cSEd Maste# When MathJax is enabled you can set the default output format to be used for 16975d3e7166SEd Maste# the MathJax output. For more details about the output format see MathJax 16985d3e7166SEd Maste# version 2 (see: 16995d3e7166SEd Maste# http://docs.mathjax.org/en/v2.7-latest/output.html) and MathJax version 3 17005d3e7166SEd Maste# (see: 17015d3e7166SEd Maste# http://docs.mathjax.org/en/latest/web/components/output.html). 170210ff414cSEd Maste# Possible values are: HTML-CSS (which is slower, but has the best 17035d3e7166SEd Maste# compatibility. This is the name for Mathjax version 2, for MathJax version 3 17045d3e7166SEd Maste# this will be translated into chtml), NativeMML (i.e. MathML. Only supported 17055d3e7166SEd Maste# for NathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This 17065d3e7166SEd Maste# is the name for Mathjax version 3, for MathJax version 2 this will be 17075d3e7166SEd Maste# translated into HTML-CSS) and SVG. 170810ff414cSEd Maste# The default value is: HTML-CSS. 170910ff414cSEd Maste# This tag requires that the tag USE_MATHJAX is set to YES. 171010ff414cSEd Maste 171110ff414cSEd MasteMATHJAX_FORMAT = HTML-CSS 171210ff414cSEd Maste 171310ff414cSEd Maste# When MathJax is enabled you need to specify the location relative to the HTML 171410ff414cSEd Maste# output directory using the MATHJAX_RELPATH option. The destination directory 171510ff414cSEd Maste# should contain the MathJax.js script. For instance, if the mathjax directory 171610ff414cSEd Maste# is located at the same level as the HTML output directory, then 171710ff414cSEd Maste# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax 171810ff414cSEd Maste# Content Delivery Network so you can quickly see the result without installing 171910ff414cSEd Maste# MathJax. However, it is strongly recommended to install a local copy of 17205d3e7166SEd Maste# MathJax from https://www.mathjax.org before deployment. The default value is: 17215d3e7166SEd Maste# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2 17225d3e7166SEd Maste# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3 172310ff414cSEd Maste# This tag requires that the tag USE_MATHJAX is set to YES. 172410ff414cSEd Maste 172510ff414cSEd MasteMATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest 172610ff414cSEd Maste 172710ff414cSEd Maste# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax 172810ff414cSEd Maste# extension names that should be enabled during MathJax rendering. For example 17295d3e7166SEd Maste# for MathJax version 2 (see 17305d3e7166SEd Maste# https://docs.mathjax.org/en/v2.7-latest/tex.html#tex-and-latex-extensions): 173110ff414cSEd Maste# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols 17325d3e7166SEd Maste# For example for MathJax version 3 (see 17335d3e7166SEd Maste# http://docs.mathjax.org/en/latest/input/tex/extensions/index.html): 17345d3e7166SEd Maste# MATHJAX_EXTENSIONS = ams 173510ff414cSEd Maste# This tag requires that the tag USE_MATHJAX is set to YES. 173610ff414cSEd Maste 173710ff414cSEd MasteMATHJAX_EXTENSIONS = 173810ff414cSEd Maste 173910ff414cSEd Maste# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces 174010ff414cSEd Maste# of code that will be used on startup of the MathJax code. See the MathJax site 17415d3e7166SEd Maste# (see: 17425d3e7166SEd Maste# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an 174310ff414cSEd Maste# example see the documentation. 174410ff414cSEd Maste# This tag requires that the tag USE_MATHJAX is set to YES. 174510ff414cSEd Maste 174610ff414cSEd MasteMATHJAX_CODEFILE = 174710ff414cSEd Maste 174810ff414cSEd Maste# When the SEARCHENGINE tag is enabled doxygen will generate a search box for 174910ff414cSEd Maste# the HTML output. The underlying search engine uses javascript and DHTML and 175010ff414cSEd Maste# should work on any modern browser. Note that when using HTML help 175110ff414cSEd Maste# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) 175210ff414cSEd Maste# there is already a search function so this one should typically be disabled. 175310ff414cSEd Maste# For large projects the javascript based search engine can be slow, then 175410ff414cSEd Maste# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to 175510ff414cSEd Maste# search using the keyboard; to jump to the search box use <access key> + S 175610ff414cSEd Maste# (what the <access key> is depends on the OS and browser, but it is typically 175710ff414cSEd Maste# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down 175810ff414cSEd Maste# key> to jump into the search results window, the results can be navigated 175910ff414cSEd Maste# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel 176010ff414cSEd Maste# the search. The filter options can be selected when the cursor is inside the 176110ff414cSEd Maste# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> 176210ff414cSEd Maste# to select a filter and <Enter> or <escape> to activate or cancel the filter 176310ff414cSEd Maste# option. 176410ff414cSEd Maste# The default value is: YES. 176510ff414cSEd Maste# This tag requires that the tag GENERATE_HTML is set to YES. 176610ff414cSEd Maste 176710ff414cSEd MasteSEARCHENGINE = YES 176810ff414cSEd Maste 176910ff414cSEd Maste# When the SERVER_BASED_SEARCH tag is enabled the search engine will be 17705d3e7166SEd Maste# implemented using a web server instead of a web client using JavaScript. There 177110ff414cSEd Maste# are two flavors of web server based searching depending on the EXTERNAL_SEARCH 177210ff414cSEd Maste# setting. When disabled, doxygen will generate a PHP script for searching and 177310ff414cSEd Maste# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing 177410ff414cSEd Maste# and searching needs to be provided by external tools. See the section 177510ff414cSEd Maste# "External Indexing and Searching" for details. 177610ff414cSEd Maste# The default value is: NO. 177710ff414cSEd Maste# This tag requires that the tag SEARCHENGINE is set to YES. 177810ff414cSEd Maste 177910ff414cSEd MasteSERVER_BASED_SEARCH = NO 178010ff414cSEd Maste 178110ff414cSEd Maste# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP 178210ff414cSEd Maste# script for searching. Instead the search results are written to an XML file 178310ff414cSEd Maste# which needs to be processed by an external indexer. Doxygen will invoke an 178410ff414cSEd Maste# external search engine pointed to by the SEARCHENGINE_URL option to obtain the 178510ff414cSEd Maste# search results. 178610ff414cSEd Maste# 178710ff414cSEd Maste# Doxygen ships with an example indexer (doxyindexer) and search engine 178810ff414cSEd Maste# (doxysearch.cgi) which are based on the open source search engine library 17895d3e7166SEd Maste# Xapian (see: 17905d3e7166SEd Maste# https://xapian.org/). 179110ff414cSEd Maste# 179210ff414cSEd Maste# See the section "External Indexing and Searching" for details. 179310ff414cSEd Maste# The default value is: NO. 179410ff414cSEd Maste# This tag requires that the tag SEARCHENGINE is set to YES. 179510ff414cSEd Maste 179610ff414cSEd MasteEXTERNAL_SEARCH = NO 179710ff414cSEd Maste 179810ff414cSEd Maste# The SEARCHENGINE_URL should point to a search engine hosted by a web server 179910ff414cSEd Maste# which will return the search results when EXTERNAL_SEARCH is enabled. 180010ff414cSEd Maste# 180110ff414cSEd Maste# Doxygen ships with an example indexer (doxyindexer) and search engine 180210ff414cSEd Maste# (doxysearch.cgi) which are based on the open source search engine library 18035d3e7166SEd Maste# Xapian (see: 18045d3e7166SEd Maste# https://xapian.org/). See the section "External Indexing and Searching" for 18055d3e7166SEd Maste# details. 180610ff414cSEd Maste# This tag requires that the tag SEARCHENGINE is set to YES. 180710ff414cSEd Maste 180810ff414cSEd MasteSEARCHENGINE_URL = 180910ff414cSEd Maste 181010ff414cSEd Maste# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed 181110ff414cSEd Maste# search data is written to a file for indexing by an external tool. With the 181210ff414cSEd Maste# SEARCHDATA_FILE tag the name of this file can be specified. 181310ff414cSEd Maste# The default file is: searchdata.xml. 181410ff414cSEd Maste# This tag requires that the tag SEARCHENGINE is set to YES. 181510ff414cSEd Maste 181610ff414cSEd MasteSEARCHDATA_FILE = searchdata.xml 181710ff414cSEd Maste 181810ff414cSEd Maste# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the 181910ff414cSEd Maste# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is 182010ff414cSEd Maste# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple 182110ff414cSEd Maste# projects and redirect the results back to the right project. 182210ff414cSEd Maste# This tag requires that the tag SEARCHENGINE is set to YES. 182310ff414cSEd Maste 182410ff414cSEd MasteEXTERNAL_SEARCH_ID = 182510ff414cSEd Maste 182610ff414cSEd Maste# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen 182710ff414cSEd Maste# projects other than the one defined by this configuration file, but that are 182810ff414cSEd Maste# all added to the same external search index. Each project needs to have a 182910ff414cSEd Maste# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of 183010ff414cSEd Maste# to a relative location where the documentation can be found. The format is: 183110ff414cSEd Maste# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... 183210ff414cSEd Maste# This tag requires that the tag SEARCHENGINE is set to YES. 183310ff414cSEd Maste 183410ff414cSEd MasteEXTRA_SEARCH_MAPPINGS = 183510ff414cSEd Maste 183610ff414cSEd Maste#--------------------------------------------------------------------------- 183710ff414cSEd Maste# Configuration options related to the LaTeX output 183810ff414cSEd Maste#--------------------------------------------------------------------------- 183910ff414cSEd Maste 184010ff414cSEd Maste# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. 184110ff414cSEd Maste# The default value is: YES. 184210ff414cSEd Maste 184310ff414cSEd MasteGENERATE_LATEX = YES 184410ff414cSEd Maste 184510ff414cSEd Maste# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a 184610ff414cSEd Maste# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 184710ff414cSEd Maste# it. 184810ff414cSEd Maste# The default directory is: latex. 184910ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 185010ff414cSEd Maste 185110ff414cSEd MasteLATEX_OUTPUT = latex 185210ff414cSEd Maste 185310ff414cSEd Maste# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 185410ff414cSEd Maste# invoked. 185510ff414cSEd Maste# 18565d3e7166SEd Maste# Note that when not enabling USE_PDFLATEX the default is latex when enabling 18575d3e7166SEd Maste# USE_PDFLATEX the default is pdflatex and when in the later case latex is 18585d3e7166SEd Maste# chosen this is overwritten by pdflatex. For specific output languages the 18595d3e7166SEd Maste# default can have been set differently, this depends on the implementation of 18605d3e7166SEd Maste# the output language. 186110ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 186210ff414cSEd Maste 186310ff414cSEd MasteLATEX_CMD_NAME = latex 186410ff414cSEd Maste 186510ff414cSEd Maste# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate 186610ff414cSEd Maste# index for LaTeX. 18675d3e7166SEd Maste# Note: This tag is used in the Makefile / make.bat. 18685d3e7166SEd Maste# See also: LATEX_MAKEINDEX_CMD for the part in the generated output file 18695d3e7166SEd Maste# (.tex). 187010ff414cSEd Maste# The default file is: makeindex. 187110ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 187210ff414cSEd Maste 187310ff414cSEd MasteMAKEINDEX_CMD_NAME = makeindex 187410ff414cSEd Maste 18755d3e7166SEd Maste# The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to 18765d3e7166SEd Maste# generate index for LaTeX. In case there is no backslash (\) as first character 18775d3e7166SEd Maste# it will be automatically added in the LaTeX code. 18785d3e7166SEd Maste# Note: This tag is used in the generated output file (.tex). 18795d3e7166SEd Maste# See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat. 18805d3e7166SEd Maste# The default value is: makeindex. 18815d3e7166SEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 18825d3e7166SEd Maste 18835d3e7166SEd MasteLATEX_MAKEINDEX_CMD = makeindex 18845d3e7166SEd Maste 188510ff414cSEd Maste# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX 188610ff414cSEd Maste# documents. This may be useful for small projects and may help to save some 188710ff414cSEd Maste# trees in general. 188810ff414cSEd Maste# The default value is: NO. 188910ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 189010ff414cSEd Maste 189110ff414cSEd MasteCOMPACT_LATEX = NO 189210ff414cSEd Maste 189310ff414cSEd Maste# The PAPER_TYPE tag can be used to set the paper type that is used by the 189410ff414cSEd Maste# printer. 189510ff414cSEd Maste# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x 189610ff414cSEd Maste# 14 inches) and executive (7.25 x 10.5 inches). 189710ff414cSEd Maste# The default value is: a4. 189810ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 189910ff414cSEd Maste 190010ff414cSEd MastePAPER_TYPE = a4 190110ff414cSEd Maste 190210ff414cSEd Maste# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names 190310ff414cSEd Maste# that should be included in the LaTeX output. The package can be specified just 190410ff414cSEd Maste# by its name or with the correct syntax as to be used with the LaTeX 190510ff414cSEd Maste# \usepackage command. To get the times font for instance you can specify : 190610ff414cSEd Maste# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times} 190710ff414cSEd Maste# To use the option intlimits with the amsmath package you can specify: 190810ff414cSEd Maste# EXTRA_PACKAGES=[intlimits]{amsmath} 190910ff414cSEd Maste# If left blank no extra packages will be included. 191010ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 191110ff414cSEd Maste 191210ff414cSEd MasteEXTRA_PACKAGES = 191310ff414cSEd Maste 19145d3e7166SEd Maste# The LATEX_HEADER tag can be used to specify a user-defined LaTeX header for 19155d3e7166SEd Maste# the generated LaTeX document. The header should contain everything until the 19165d3e7166SEd Maste# first chapter. If it is left blank doxygen will generate a standard header. It 19175d3e7166SEd Maste# is highly recommended to start with a default header using 19185d3e7166SEd Maste# doxygen -w latex new_header.tex new_footer.tex new_stylesheet.sty 19195d3e7166SEd Maste# and then modify the file new_header.tex. See also section "Doxygen usage" for 19205d3e7166SEd Maste# information on how to generate the default header that doxygen normally uses. 192110ff414cSEd Maste# 19225d3e7166SEd Maste# Note: Only use a user-defined header if you know what you are doing! 19235d3e7166SEd Maste# Note: The header is subject to change so you typically have to regenerate the 19245d3e7166SEd Maste# default header when upgrading to a newer version of doxygen. The following 19255d3e7166SEd Maste# commands have a special meaning inside the header (and footer): For a 19265d3e7166SEd Maste# description of the possible markers and block names see the documentation. 192710ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 192810ff414cSEd Maste 192910ff414cSEd MasteLATEX_HEADER = 193010ff414cSEd Maste 19315d3e7166SEd Maste# The LATEX_FOOTER tag can be used to specify a user-defined LaTeX footer for 19325d3e7166SEd Maste# the generated LaTeX document. The footer should contain everything after the 19335d3e7166SEd Maste# last chapter. If it is left blank doxygen will generate a standard footer. See 193410ff414cSEd Maste# LATEX_HEADER for more information on how to generate a default footer and what 19355d3e7166SEd Maste# special commands can be used inside the footer. See also section "Doxygen 19365d3e7166SEd Maste# usage" for information on how to generate the default footer that doxygen 19375d3e7166SEd Maste# normally uses. Note: Only use a user-defined footer if you know what you are 19385d3e7166SEd Maste# doing! 193910ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 194010ff414cSEd Maste 194110ff414cSEd MasteLATEX_FOOTER = 194210ff414cSEd Maste 194310ff414cSEd Maste# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined 194410ff414cSEd Maste# LaTeX style sheets that are included after the standard style sheets created 194510ff414cSEd Maste# by doxygen. Using this option one can overrule certain style aspects. Doxygen 194610ff414cSEd Maste# will copy the style sheet files to the output directory. 194710ff414cSEd Maste# Note: The order of the extra style sheet files is of importance (e.g. the last 194810ff414cSEd Maste# style sheet in the list overrules the setting of the previous ones in the 194910ff414cSEd Maste# list). 195010ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 195110ff414cSEd Maste 195210ff414cSEd MasteLATEX_EXTRA_STYLESHEET = 195310ff414cSEd Maste 195410ff414cSEd Maste# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or 195510ff414cSEd Maste# other source files which should be copied to the LATEX_OUTPUT output 195610ff414cSEd Maste# directory. Note that the files will be copied as-is; there are no commands or 195710ff414cSEd Maste# markers available. 195810ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 195910ff414cSEd Maste 196010ff414cSEd MasteLATEX_EXTRA_FILES = 196110ff414cSEd Maste 196210ff414cSEd Maste# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is 196310ff414cSEd Maste# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will 196410ff414cSEd Maste# contain links (just like the HTML output) instead of page references. This 196510ff414cSEd Maste# makes the output suitable for online browsing using a PDF viewer. 196610ff414cSEd Maste# The default value is: YES. 196710ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 196810ff414cSEd Maste 196910ff414cSEd MastePDF_HYPERLINKS = YES 197010ff414cSEd Maste 19715d3e7166SEd Maste# If the USE_PDFLATEX tag is set to YES, doxygen will use the engine as 19725d3e7166SEd Maste# specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX 19735d3e7166SEd Maste# files. Set this option to YES, to get a higher quality PDF documentation. 19745d3e7166SEd Maste# 19755d3e7166SEd Maste# See also section LATEX_CMD_NAME for selecting the engine. 197610ff414cSEd Maste# The default value is: YES. 197710ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 197810ff414cSEd Maste 197910ff414cSEd MasteUSE_PDFLATEX = YES 198010ff414cSEd Maste 198110ff414cSEd Maste# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode 198210ff414cSEd Maste# command to the generated LaTeX files. This will instruct LaTeX to keep running 19835d3e7166SEd Maste# if errors occur, instead of asking the user for help. 198410ff414cSEd Maste# The default value is: NO. 198510ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 198610ff414cSEd Maste 198710ff414cSEd MasteLATEX_BATCHMODE = NO 198810ff414cSEd Maste 198910ff414cSEd Maste# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the 199010ff414cSEd Maste# index chapters (such as File Index, Compound Index, etc.) in the output. 199110ff414cSEd Maste# The default value is: NO. 199210ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 199310ff414cSEd Maste 199410ff414cSEd MasteLATEX_HIDE_INDICES = NO 199510ff414cSEd Maste 199610ff414cSEd Maste# The LATEX_BIB_STYLE tag can be used to specify the style to use for the 199710ff414cSEd Maste# bibliography, e.g. plainnat, or ieeetr. See 19985d3e7166SEd Maste# https://en.wikipedia.org/wiki/BibTeX and \cite for more info. 199910ff414cSEd Maste# The default value is: plain. 200010ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 200110ff414cSEd Maste 200210ff414cSEd MasteLATEX_BIB_STYLE = plain 200310ff414cSEd Maste 200410ff414cSEd Maste# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated 200510ff414cSEd Maste# page will contain the date and time when the page was generated. Setting this 200610ff414cSEd Maste# to NO can help when comparing the output of multiple runs. 200710ff414cSEd Maste# The default value is: NO. 200810ff414cSEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 200910ff414cSEd Maste 201010ff414cSEd MasteLATEX_TIMESTAMP = NO 201110ff414cSEd Maste 20125d3e7166SEd Maste# The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute) 20135d3e7166SEd Maste# path from which the emoji images will be read. If a relative path is entered, 20145d3e7166SEd Maste# it will be relative to the LATEX_OUTPUT directory. If left blank the 20155d3e7166SEd Maste# LATEX_OUTPUT directory will be used. 20165d3e7166SEd Maste# This tag requires that the tag GENERATE_LATEX is set to YES. 20175d3e7166SEd Maste 20185d3e7166SEd MasteLATEX_EMOJI_DIRECTORY = 20195d3e7166SEd Maste 202010ff414cSEd Maste#--------------------------------------------------------------------------- 202110ff414cSEd Maste# Configuration options related to the RTF output 202210ff414cSEd Maste#--------------------------------------------------------------------------- 202310ff414cSEd Maste 202410ff414cSEd Maste# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The 202510ff414cSEd Maste# RTF output is optimized for Word 97 and may not look too pretty with other RTF 202610ff414cSEd Maste# readers/editors. 202710ff414cSEd Maste# The default value is: NO. 202810ff414cSEd Maste 202910ff414cSEd MasteGENERATE_RTF = NO 203010ff414cSEd Maste 203110ff414cSEd Maste# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a 203210ff414cSEd Maste# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 203310ff414cSEd Maste# it. 203410ff414cSEd Maste# The default directory is: rtf. 203510ff414cSEd Maste# This tag requires that the tag GENERATE_RTF is set to YES. 203610ff414cSEd Maste 203710ff414cSEd MasteRTF_OUTPUT = rtf 203810ff414cSEd Maste 203910ff414cSEd Maste# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF 204010ff414cSEd Maste# documents. This may be useful for small projects and may help to save some 204110ff414cSEd Maste# trees in general. 204210ff414cSEd Maste# The default value is: NO. 204310ff414cSEd Maste# This tag requires that the tag GENERATE_RTF is set to YES. 204410ff414cSEd Maste 204510ff414cSEd MasteCOMPACT_RTF = NO 204610ff414cSEd Maste 204710ff414cSEd Maste# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will 204810ff414cSEd Maste# contain hyperlink fields. The RTF file will contain links (just like the HTML 204910ff414cSEd Maste# output) instead of page references. This makes the output suitable for online 205010ff414cSEd Maste# browsing using Word or some other Word compatible readers that support those 205110ff414cSEd Maste# fields. 205210ff414cSEd Maste# 205310ff414cSEd Maste# Note: WordPad (write) and others do not support links. 205410ff414cSEd Maste# The default value is: NO. 205510ff414cSEd Maste# This tag requires that the tag GENERATE_RTF is set to YES. 205610ff414cSEd Maste 205710ff414cSEd MasteRTF_HYPERLINKS = NO 205810ff414cSEd Maste 20595d3e7166SEd Maste# Load stylesheet definitions from file. Syntax is similar to doxygen's 20605d3e7166SEd Maste# configuration file, i.e. a series of assignments. You only have to provide 20615d3e7166SEd Maste# replacements, missing definitions are set to their default value. 206210ff414cSEd Maste# 206310ff414cSEd Maste# See also section "Doxygen usage" for information on how to generate the 206410ff414cSEd Maste# default style sheet that doxygen normally uses. 206510ff414cSEd Maste# This tag requires that the tag GENERATE_RTF is set to YES. 206610ff414cSEd Maste 206710ff414cSEd MasteRTF_STYLESHEET_FILE = 206810ff414cSEd Maste 206910ff414cSEd Maste# Set optional variables used in the generation of an RTF document. Syntax is 20705d3e7166SEd Maste# similar to doxygen's configuration file. A template extensions file can be 20715d3e7166SEd Maste# generated using doxygen -e rtf extensionFile. 207210ff414cSEd Maste# This tag requires that the tag GENERATE_RTF is set to YES. 207310ff414cSEd Maste 207410ff414cSEd MasteRTF_EXTENSIONS_FILE = 207510ff414cSEd Maste 207610ff414cSEd Maste#--------------------------------------------------------------------------- 207710ff414cSEd Maste# Configuration options related to the man page output 207810ff414cSEd Maste#--------------------------------------------------------------------------- 207910ff414cSEd Maste 208010ff414cSEd Maste# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for 208110ff414cSEd Maste# classes and files. 208210ff414cSEd Maste# The default value is: NO. 208310ff414cSEd Maste 208410ff414cSEd MasteGENERATE_MAN = NO 208510ff414cSEd Maste 208610ff414cSEd Maste# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a 208710ff414cSEd Maste# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 208810ff414cSEd Maste# it. A directory man3 will be created inside the directory specified by 208910ff414cSEd Maste# MAN_OUTPUT. 209010ff414cSEd Maste# The default directory is: man. 209110ff414cSEd Maste# This tag requires that the tag GENERATE_MAN is set to YES. 209210ff414cSEd Maste 209310ff414cSEd MasteMAN_OUTPUT = man 209410ff414cSEd Maste 209510ff414cSEd Maste# The MAN_EXTENSION tag determines the extension that is added to the generated 209610ff414cSEd Maste# man pages. In case the manual section does not start with a number, the number 209710ff414cSEd Maste# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is 209810ff414cSEd Maste# optional. 209910ff414cSEd Maste# The default value is: .3. 210010ff414cSEd Maste# This tag requires that the tag GENERATE_MAN is set to YES. 210110ff414cSEd Maste 210210ff414cSEd MasteMAN_EXTENSION = .3 210310ff414cSEd Maste 210410ff414cSEd Maste# The MAN_SUBDIR tag determines the name of the directory created within 210510ff414cSEd Maste# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by 210610ff414cSEd Maste# MAN_EXTENSION with the initial . removed. 210710ff414cSEd Maste# This tag requires that the tag GENERATE_MAN is set to YES. 210810ff414cSEd Maste 210910ff414cSEd MasteMAN_SUBDIR = 211010ff414cSEd Maste 211110ff414cSEd Maste# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it 211210ff414cSEd Maste# will generate one additional man file for each entity documented in the real 211310ff414cSEd Maste# man page(s). These additional files only source the real man page, but without 211410ff414cSEd Maste# them the man command would be unable to find the correct page. 211510ff414cSEd Maste# The default value is: NO. 211610ff414cSEd Maste# This tag requires that the tag GENERATE_MAN is set to YES. 211710ff414cSEd Maste 211810ff414cSEd MasteMAN_LINKS = NO 211910ff414cSEd Maste 212010ff414cSEd Maste#--------------------------------------------------------------------------- 212110ff414cSEd Maste# Configuration options related to the XML output 212210ff414cSEd Maste#--------------------------------------------------------------------------- 212310ff414cSEd Maste 212410ff414cSEd Maste# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that 212510ff414cSEd Maste# captures the structure of the code including all documentation. 212610ff414cSEd Maste# The default value is: NO. 212710ff414cSEd Maste 212810ff414cSEd MasteGENERATE_XML = YES 212910ff414cSEd Maste 213010ff414cSEd Maste# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a 213110ff414cSEd Maste# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 213210ff414cSEd Maste# it. 213310ff414cSEd Maste# The default directory is: xml. 213410ff414cSEd Maste# This tag requires that the tag GENERATE_XML is set to YES. 213510ff414cSEd Maste 213610ff414cSEd MasteXML_OUTPUT = xml 213710ff414cSEd Maste 213810ff414cSEd Maste# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program 213910ff414cSEd Maste# listings (including syntax highlighting and cross-referencing information) to 214010ff414cSEd Maste# the XML output. Note that enabling this will significantly increase the size 214110ff414cSEd Maste# of the XML output. 214210ff414cSEd Maste# The default value is: YES. 214310ff414cSEd Maste# This tag requires that the tag GENERATE_XML is set to YES. 214410ff414cSEd Maste 214510ff414cSEd MasteXML_PROGRAMLISTING = YES 214610ff414cSEd Maste 21475d3e7166SEd Maste# If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include 21485d3e7166SEd Maste# namespace members in file scope as well, matching the HTML output. 21495d3e7166SEd Maste# The default value is: NO. 21505d3e7166SEd Maste# This tag requires that the tag GENERATE_XML is set to YES. 21515d3e7166SEd Maste 21525d3e7166SEd MasteXML_NS_MEMB_FILE_SCOPE = NO 21535d3e7166SEd Maste 215410ff414cSEd Maste#--------------------------------------------------------------------------- 215510ff414cSEd Maste# Configuration options related to the DOCBOOK output 215610ff414cSEd Maste#--------------------------------------------------------------------------- 215710ff414cSEd Maste 215810ff414cSEd Maste# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files 215910ff414cSEd Maste# that can be used to generate PDF. 216010ff414cSEd Maste# The default value is: NO. 216110ff414cSEd Maste 216210ff414cSEd MasteGENERATE_DOCBOOK = NO 216310ff414cSEd Maste 216410ff414cSEd Maste# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. 216510ff414cSEd Maste# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in 216610ff414cSEd Maste# front of it. 216710ff414cSEd Maste# The default directory is: docbook. 216810ff414cSEd Maste# This tag requires that the tag GENERATE_DOCBOOK is set to YES. 216910ff414cSEd Maste 217010ff414cSEd MasteDOCBOOK_OUTPUT = docbook 217110ff414cSEd Maste 217210ff414cSEd Maste#--------------------------------------------------------------------------- 217310ff414cSEd Maste# Configuration options for the AutoGen Definitions output 217410ff414cSEd Maste#--------------------------------------------------------------------------- 217510ff414cSEd Maste 217610ff414cSEd Maste# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an 21775d3e7166SEd Maste# AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures 21785d3e7166SEd Maste# the structure of the code including all documentation. Note that this feature 21795d3e7166SEd Maste# is still experimental and incomplete at the moment. 218010ff414cSEd Maste# The default value is: NO. 218110ff414cSEd Maste 218210ff414cSEd MasteGENERATE_AUTOGEN_DEF = NO 218310ff414cSEd Maste 218410ff414cSEd Maste#--------------------------------------------------------------------------- 218510ff414cSEd Maste# Configuration options related to the Perl module output 218610ff414cSEd Maste#--------------------------------------------------------------------------- 218710ff414cSEd Maste 218810ff414cSEd Maste# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module 218910ff414cSEd Maste# file that captures the structure of the code including all documentation. 219010ff414cSEd Maste# 219110ff414cSEd Maste# Note that this feature is still experimental and incomplete at the moment. 219210ff414cSEd Maste# The default value is: NO. 219310ff414cSEd Maste 219410ff414cSEd MasteGENERATE_PERLMOD = NO 219510ff414cSEd Maste 219610ff414cSEd Maste# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary 219710ff414cSEd Maste# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI 219810ff414cSEd Maste# output from the Perl module output. 219910ff414cSEd Maste# The default value is: NO. 220010ff414cSEd Maste# This tag requires that the tag GENERATE_PERLMOD is set to YES. 220110ff414cSEd Maste 220210ff414cSEd MastePERLMOD_LATEX = NO 220310ff414cSEd Maste 220410ff414cSEd Maste# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely 220510ff414cSEd Maste# formatted so it can be parsed by a human reader. This is useful if you want to 220610ff414cSEd Maste# understand what is going on. On the other hand, if this tag is set to NO, the 220710ff414cSEd Maste# size of the Perl module output will be much smaller and Perl will parse it 220810ff414cSEd Maste# just the same. 220910ff414cSEd Maste# The default value is: YES. 221010ff414cSEd Maste# This tag requires that the tag GENERATE_PERLMOD is set to YES. 221110ff414cSEd Maste 221210ff414cSEd MastePERLMOD_PRETTY = YES 221310ff414cSEd Maste 221410ff414cSEd Maste# The names of the make variables in the generated doxyrules.make file are 221510ff414cSEd Maste# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful 221610ff414cSEd Maste# so different doxyrules.make files included by the same Makefile don't 221710ff414cSEd Maste# overwrite each other's variables. 221810ff414cSEd Maste# This tag requires that the tag GENERATE_PERLMOD is set to YES. 221910ff414cSEd Maste 222010ff414cSEd MastePERLMOD_MAKEVAR_PREFIX = 222110ff414cSEd Maste 222210ff414cSEd Maste#--------------------------------------------------------------------------- 222310ff414cSEd Maste# Configuration options related to the preprocessor 222410ff414cSEd Maste#--------------------------------------------------------------------------- 222510ff414cSEd Maste 222610ff414cSEd Maste# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all 222710ff414cSEd Maste# C-preprocessor directives found in the sources and include files. 222810ff414cSEd Maste# The default value is: YES. 222910ff414cSEd Maste 223010ff414cSEd MasteENABLE_PREPROCESSING = YES 223110ff414cSEd Maste 223210ff414cSEd Maste# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names 223310ff414cSEd Maste# in the source code. If set to NO, only conditional compilation will be 223410ff414cSEd Maste# performed. Macro expansion can be done in a controlled way by setting 223510ff414cSEd Maste# EXPAND_ONLY_PREDEF to YES. 223610ff414cSEd Maste# The default value is: NO. 223710ff414cSEd Maste# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 223810ff414cSEd Maste 223910ff414cSEd MasteMACRO_EXPANSION = YES 224010ff414cSEd Maste 224110ff414cSEd Maste# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then 224210ff414cSEd Maste# the macro expansion is limited to the macros specified with the PREDEFINED and 224310ff414cSEd Maste# EXPAND_AS_DEFINED tags. 224410ff414cSEd Maste# The default value is: NO. 224510ff414cSEd Maste# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 224610ff414cSEd Maste 224710ff414cSEd MasteEXPAND_ONLY_PREDEF = YES 224810ff414cSEd Maste 224910ff414cSEd Maste# If the SEARCH_INCLUDES tag is set to YES, the include files in the 225010ff414cSEd Maste# INCLUDE_PATH will be searched if a #include is found. 225110ff414cSEd Maste# The default value is: YES. 225210ff414cSEd Maste# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 225310ff414cSEd Maste 225410ff414cSEd MasteSEARCH_INCLUDES = YES 225510ff414cSEd Maste 225610ff414cSEd Maste# The INCLUDE_PATH tag can be used to specify one or more directories that 225710ff414cSEd Maste# contain include files that are not input files but should be processed by the 22585d3e7166SEd Maste# preprocessor. Note that the INCLUDE_PATH is not recursive, so the setting of 22595d3e7166SEd Maste# RECURSIVE has no effect here. 226010ff414cSEd Maste# This tag requires that the tag SEARCH_INCLUDES is set to YES. 226110ff414cSEd Maste 226210ff414cSEd MasteINCLUDE_PATH = 226310ff414cSEd Maste 226410ff414cSEd Maste# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 226510ff414cSEd Maste# patterns (like *.h and *.hpp) to filter out the header-files in the 226610ff414cSEd Maste# directories. If left blank, the patterns specified with FILE_PATTERNS will be 226710ff414cSEd Maste# used. 226810ff414cSEd Maste# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 226910ff414cSEd Maste 227010ff414cSEd MasteINCLUDE_FILE_PATTERNS = 227110ff414cSEd Maste 227210ff414cSEd Maste# The PREDEFINED tag can be used to specify one or more macro names that are 227310ff414cSEd Maste# defined before the preprocessor is started (similar to the -D option of e.g. 227410ff414cSEd Maste# gcc). The argument of the tag is a list of macros of the form: name or 227510ff414cSEd Maste# name=definition (no spaces). If the definition and the "=" are omitted, "=1" 227610ff414cSEd Maste# is assumed. To prevent a macro definition from being undefined via #undef or 227710ff414cSEd Maste# recursively expanded use the := operator instead of the = operator. 227810ff414cSEd Maste# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 227910ff414cSEd Maste 22805d3e7166SEd MastePREDEFINED = CBOR_RESTRICT_POINTER= \ 22815d3e7166SEd Maste CBOR_EXPORT \ 22825d3e7166SEd Maste _CBOR_NODISCARD= 228310ff414cSEd Maste 228410ff414cSEd Maste# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this 228510ff414cSEd Maste# tag can be used to specify a list of macro names that should be expanded. The 228610ff414cSEd Maste# macro definition that is found in the sources will be used. Use the PREDEFINED 228710ff414cSEd Maste# tag if you want to use a different macro definition that overrules the 228810ff414cSEd Maste# definition found in the source code. 228910ff414cSEd Maste# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 229010ff414cSEd Maste 229110ff414cSEd MasteEXPAND_AS_DEFINED = CBOR_RESTRICT_POINTER 229210ff414cSEd Maste 229310ff414cSEd Maste# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will 229410ff414cSEd Maste# remove all references to function-like macros that are alone on a line, have 229510ff414cSEd Maste# an all uppercase name, and do not end with a semicolon. Such function macros 229610ff414cSEd Maste# are typically used for boiler-plate code, and will confuse the parser if not 229710ff414cSEd Maste# removed. 229810ff414cSEd Maste# The default value is: YES. 229910ff414cSEd Maste# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 230010ff414cSEd Maste 230110ff414cSEd MasteSKIP_FUNCTION_MACROS = YES 230210ff414cSEd Maste 230310ff414cSEd Maste#--------------------------------------------------------------------------- 230410ff414cSEd Maste# Configuration options related to external references 230510ff414cSEd Maste#--------------------------------------------------------------------------- 230610ff414cSEd Maste 230710ff414cSEd Maste# The TAGFILES tag can be used to specify one or more tag files. For each tag 230810ff414cSEd Maste# file the location of the external documentation should be added. The format of 230910ff414cSEd Maste# a tag file without this location is as follows: 231010ff414cSEd Maste# TAGFILES = file1 file2 ... 231110ff414cSEd Maste# Adding location for the tag files is done as follows: 231210ff414cSEd Maste# TAGFILES = file1=loc1 "file2 = loc2" ... 231310ff414cSEd Maste# where loc1 and loc2 can be relative or absolute paths or URLs. See the 231410ff414cSEd Maste# section "Linking to external documentation" for more information about the use 231510ff414cSEd Maste# of tag files. 231610ff414cSEd Maste# Note: Each tag file must have a unique name (where the name does NOT include 231710ff414cSEd Maste# the path). If a tag file is not located in the directory in which doxygen is 231810ff414cSEd Maste# run, you must also specify the path to the tagfile here. 231910ff414cSEd Maste 232010ff414cSEd MasteTAGFILES = 232110ff414cSEd Maste 232210ff414cSEd Maste# When a file name is specified after GENERATE_TAGFILE, doxygen will create a 232310ff414cSEd Maste# tag file that is based on the input files it reads. See section "Linking to 232410ff414cSEd Maste# external documentation" for more information about the usage of tag files. 232510ff414cSEd Maste 232610ff414cSEd MasteGENERATE_TAGFILE = 232710ff414cSEd Maste 232810ff414cSEd Maste# If the ALLEXTERNALS tag is set to YES, all external class will be listed in 232910ff414cSEd Maste# the class index. If set to NO, only the inherited external classes will be 233010ff414cSEd Maste# listed. 233110ff414cSEd Maste# The default value is: NO. 233210ff414cSEd Maste 233310ff414cSEd MasteALLEXTERNALS = NO 233410ff414cSEd Maste 233510ff414cSEd Maste# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed 233610ff414cSEd Maste# in the modules index. If set to NO, only the current project's groups will be 233710ff414cSEd Maste# listed. 233810ff414cSEd Maste# The default value is: YES. 233910ff414cSEd Maste 234010ff414cSEd MasteEXTERNAL_GROUPS = YES 234110ff414cSEd Maste 234210ff414cSEd Maste# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in 234310ff414cSEd Maste# the related pages index. If set to NO, only the current project's pages will 234410ff414cSEd Maste# be listed. 234510ff414cSEd Maste# The default value is: YES. 234610ff414cSEd Maste 234710ff414cSEd MasteEXTERNAL_PAGES = YES 234810ff414cSEd Maste 234910ff414cSEd Maste#--------------------------------------------------------------------------- 235010ff414cSEd Maste# Configuration options related to the dot tool 235110ff414cSEd Maste#--------------------------------------------------------------------------- 235210ff414cSEd Maste 235310ff414cSEd Maste# You can include diagrams made with dia in doxygen documentation. Doxygen will 235410ff414cSEd Maste# then run dia to produce the diagram and insert it in the documentation. The 235510ff414cSEd Maste# DIA_PATH tag allows you to specify the directory where the dia binary resides. 235610ff414cSEd Maste# If left empty dia is assumed to be found in the default search path. 235710ff414cSEd Maste 235810ff414cSEd MasteDIA_PATH = 235910ff414cSEd Maste 236010ff414cSEd Maste# If set to YES the inheritance and collaboration graphs will hide inheritance 236110ff414cSEd Maste# and usage relations if the target is undocumented or is not a class. 236210ff414cSEd Maste# The default value is: YES. 236310ff414cSEd Maste 236410ff414cSEd MasteHIDE_UNDOC_RELATIONS = YES 236510ff414cSEd Maste 236610ff414cSEd Maste# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 236710ff414cSEd Maste# available from the path. This tool is part of Graphviz (see: 236810ff414cSEd Maste# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent 236910ff414cSEd Maste# Bell Labs. The other options in this section have no effect if this option is 237010ff414cSEd Maste# set to NO 237110ff414cSEd Maste# The default value is: NO. 237210ff414cSEd Maste 237310ff414cSEd MasteHAVE_DOT = NO 237410ff414cSEd Maste 237510ff414cSEd Maste# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed 237610ff414cSEd Maste# to run in parallel. When set to 0 doxygen will base this on the number of 237710ff414cSEd Maste# processors available in the system. You can set it explicitly to a value 237810ff414cSEd Maste# larger than 0 to get control over the balance between CPU load and processing 237910ff414cSEd Maste# speed. 238010ff414cSEd Maste# Minimum value: 0, maximum value: 32, default value: 0. 238110ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 238210ff414cSEd Maste 238310ff414cSEd MasteDOT_NUM_THREADS = 0 238410ff414cSEd Maste 23855d3e7166SEd Maste# DOT_COMMON_ATTR is common attributes for nodes, edges and labels of 23865d3e7166SEd Maste# subgraphs. When you want a differently looking font in the dot files that 23875d3e7166SEd Maste# doxygen generates you can specify fontname, fontcolor and fontsize attributes. 23885d3e7166SEd Maste# For details please see <a href=https://graphviz.org/doc/info/attrs.html>Node, 23895d3e7166SEd Maste# Edge and Graph Attributes specification</a> You need to make sure dot is able 23905d3e7166SEd Maste# to find the font, which can be done by putting it in a standard location or by 23915d3e7166SEd Maste# setting the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the 23925d3e7166SEd Maste# directory containing the font. Default graphviz fontsize is 14. 23935d3e7166SEd Maste# The default value is: fontname=Helvetica,fontsize=10. 239410ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 239510ff414cSEd Maste 23965d3e7166SEd MasteDOT_COMMON_ATTR = "fontname=Helvetica,fontsize=10" 239710ff414cSEd Maste 23985d3e7166SEd Maste# DOT_EDGE_ATTR is concatenated with DOT_COMMON_ATTR. For elegant style you can 23995d3e7166SEd Maste# add 'arrowhead=open, arrowtail=open, arrowsize=0.5'. <a 24005d3e7166SEd Maste# href=https://graphviz.org/doc/info/arrows.html>Complete documentation about 24015d3e7166SEd Maste# arrows shapes.</a> 24025d3e7166SEd Maste# The default value is: labelfontname=Helvetica,labelfontsize=10. 240310ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 240410ff414cSEd Maste 24055d3e7166SEd MasteDOT_EDGE_ATTR = "labelfontname=Helvetica,labelfontsize=10" 240610ff414cSEd Maste 24075d3e7166SEd Maste# DOT_NODE_ATTR is concatenated with DOT_COMMON_ATTR. For view without boxes 24085d3e7166SEd Maste# around nodes set 'shape=plain' or 'shape=plaintext' <a 24095d3e7166SEd Maste# href=https://www.graphviz.org/doc/info/shapes.html>Shapes specification</a> 24105d3e7166SEd Maste# The default value is: shape=box,height=0.2,width=0.4. 24115d3e7166SEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 24125d3e7166SEd Maste 24135d3e7166SEd MasteDOT_NODE_ATTR = "shape=box,height=0.2,width=0.4" 24145d3e7166SEd Maste 24155d3e7166SEd Maste# You can set the path where dot can find font specified with fontname in 24165d3e7166SEd Maste# DOT_COMMON_ATTR and others dot attributes. 241710ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 241810ff414cSEd Maste 241910ff414cSEd MasteDOT_FONTPATH = 242010ff414cSEd Maste 24215d3e7166SEd Maste# If the CLASS_GRAPH tag is set to YES (or GRAPH) then doxygen will generate a 24225d3e7166SEd Maste# graph for each documented class showing the direct and indirect inheritance 24235d3e7166SEd Maste# relations. In case HAVE_DOT is set as well dot will be used to draw the graph, 24245d3e7166SEd Maste# otherwise the built-in generator will be used. If the CLASS_GRAPH tag is set 24255d3e7166SEd Maste# to TEXT the direct and indirect inheritance relations will be shown as texts / 24265d3e7166SEd Maste# links. 24275d3e7166SEd Maste# Possible values are: NO, YES, TEXT and GRAPH. 242810ff414cSEd Maste# The default value is: YES. 242910ff414cSEd Maste 243010ff414cSEd MasteCLASS_GRAPH = YES 243110ff414cSEd Maste 243210ff414cSEd Maste# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a 243310ff414cSEd Maste# graph for each documented class showing the direct and indirect implementation 243410ff414cSEd Maste# dependencies (inheritance, containment, and class references variables) of the 243510ff414cSEd Maste# class with other documented classes. 243610ff414cSEd Maste# The default value is: YES. 243710ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 243810ff414cSEd Maste 243910ff414cSEd MasteCOLLABORATION_GRAPH = YES 244010ff414cSEd Maste 244110ff414cSEd Maste# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for 24425d3e7166SEd Maste# groups, showing the direct groups dependencies. See also the chapter Grouping 24435d3e7166SEd Maste# in the manual. 244410ff414cSEd Maste# The default value is: YES. 244510ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 244610ff414cSEd Maste 244710ff414cSEd MasteGROUP_GRAPHS = YES 244810ff414cSEd Maste 244910ff414cSEd Maste# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and 245010ff414cSEd Maste# collaboration diagrams in a style similar to the OMG's Unified Modeling 245110ff414cSEd Maste# Language. 245210ff414cSEd Maste# The default value is: NO. 245310ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 245410ff414cSEd Maste 245510ff414cSEd MasteUML_LOOK = NO 245610ff414cSEd Maste 245710ff414cSEd Maste# If the UML_LOOK tag is enabled, the fields and methods are shown inside the 245810ff414cSEd Maste# class node. If there are many fields or methods and many nodes the graph may 245910ff414cSEd Maste# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the 246010ff414cSEd Maste# number of items for each type to make the size more manageable. Set this to 0 246110ff414cSEd Maste# for no limit. Note that the threshold may be exceeded by 50% before the limit 246210ff414cSEd Maste# is enforced. So when you set the threshold to 10, up to 15 fields may appear, 246310ff414cSEd Maste# but if the number exceeds 15, the total amount of fields shown is limited to 246410ff414cSEd Maste# 10. 246510ff414cSEd Maste# Minimum value: 0, maximum value: 100, default value: 10. 24665d3e7166SEd Maste# This tag requires that the tag UML_LOOK is set to YES. 246710ff414cSEd Maste 246810ff414cSEd MasteUML_LIMIT_NUM_FIELDS = 10 246910ff414cSEd Maste 24705d3e7166SEd Maste# If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and 24715d3e7166SEd Maste# methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS 24725d3e7166SEd Maste# tag is set to YES, doxygen will add type and arguments for attributes and 24735d3e7166SEd Maste# methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen 24745d3e7166SEd Maste# will not generate fields with class member information in the UML graphs. The 24755d3e7166SEd Maste# class diagrams will look similar to the default class diagrams but using UML 24765d3e7166SEd Maste# notation for the relationships. 24775d3e7166SEd Maste# Possible values are: NO, YES and NONE. 24785d3e7166SEd Maste# The default value is: NO. 24795d3e7166SEd Maste# This tag requires that the tag UML_LOOK is set to YES. 24805d3e7166SEd Maste 24815d3e7166SEd MasteDOT_UML_DETAILS = NO 24825d3e7166SEd Maste 24835d3e7166SEd Maste# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters 24845d3e7166SEd Maste# to display on a single line. If the actual line length exceeds this threshold 24855d3e7166SEd Maste# significantly it will wrapped across multiple lines. Some heuristics are apply 24865d3e7166SEd Maste# to avoid ugly line breaks. 24875d3e7166SEd Maste# Minimum value: 0, maximum value: 1000, default value: 17. 24885d3e7166SEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 24895d3e7166SEd Maste 24905d3e7166SEd MasteDOT_WRAP_THRESHOLD = 17 24915d3e7166SEd Maste 249210ff414cSEd Maste# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and 249310ff414cSEd Maste# collaboration graphs will show the relations between templates and their 249410ff414cSEd Maste# instances. 249510ff414cSEd Maste# The default value is: NO. 249610ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 249710ff414cSEd Maste 249810ff414cSEd MasteTEMPLATE_RELATIONS = NO 249910ff414cSEd Maste 250010ff414cSEd Maste# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to 250110ff414cSEd Maste# YES then doxygen will generate a graph for each documented file showing the 250210ff414cSEd Maste# direct and indirect include dependencies of the file with other documented 250310ff414cSEd Maste# files. 250410ff414cSEd Maste# The default value is: YES. 250510ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 250610ff414cSEd Maste 250710ff414cSEd MasteINCLUDE_GRAPH = YES 250810ff414cSEd Maste 250910ff414cSEd Maste# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are 251010ff414cSEd Maste# set to YES then doxygen will generate a graph for each documented file showing 251110ff414cSEd Maste# the direct and indirect include dependencies of the file with other documented 251210ff414cSEd Maste# files. 251310ff414cSEd Maste# The default value is: YES. 251410ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 251510ff414cSEd Maste 251610ff414cSEd MasteINCLUDED_BY_GRAPH = YES 251710ff414cSEd Maste 251810ff414cSEd Maste# If the CALL_GRAPH tag is set to YES then doxygen will generate a call 251910ff414cSEd Maste# dependency graph for every global function or class method. 252010ff414cSEd Maste# 252110ff414cSEd Maste# Note that enabling this option will significantly increase the time of a run. 252210ff414cSEd Maste# So in most cases it will be better to enable call graphs for selected 252310ff414cSEd Maste# functions only using the \callgraph command. Disabling a call graph can be 252410ff414cSEd Maste# accomplished by means of the command \hidecallgraph. 252510ff414cSEd Maste# The default value is: NO. 252610ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 252710ff414cSEd Maste 252810ff414cSEd MasteCALL_GRAPH = NO 252910ff414cSEd Maste 253010ff414cSEd Maste# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller 253110ff414cSEd Maste# dependency graph for every global function or class method. 253210ff414cSEd Maste# 253310ff414cSEd Maste# Note that enabling this option will significantly increase the time of a run. 253410ff414cSEd Maste# So in most cases it will be better to enable caller graphs for selected 253510ff414cSEd Maste# functions only using the \callergraph command. Disabling a caller graph can be 253610ff414cSEd Maste# accomplished by means of the command \hidecallergraph. 253710ff414cSEd Maste# The default value is: NO. 253810ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 253910ff414cSEd Maste 254010ff414cSEd MasteCALLER_GRAPH = NO 254110ff414cSEd Maste 254210ff414cSEd Maste# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical 254310ff414cSEd Maste# hierarchy of all classes instead of a textual one. 254410ff414cSEd Maste# The default value is: YES. 254510ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 254610ff414cSEd Maste 254710ff414cSEd MasteGRAPHICAL_HIERARCHY = YES 254810ff414cSEd Maste 254910ff414cSEd Maste# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the 255010ff414cSEd Maste# dependencies a directory has on other directories in a graphical way. The 255110ff414cSEd Maste# dependency relations are determined by the #include relations between the 255210ff414cSEd Maste# files in the directories. 255310ff414cSEd Maste# The default value is: YES. 255410ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 255510ff414cSEd Maste 255610ff414cSEd MasteDIRECTORY_GRAPH = YES 255710ff414cSEd Maste 25585d3e7166SEd Maste# The DIR_GRAPH_MAX_DEPTH tag can be used to limit the maximum number of levels 25595d3e7166SEd Maste# of child directories generated in directory dependency graphs by dot. 25605d3e7166SEd Maste# Minimum value: 1, maximum value: 25, default value: 1. 25615d3e7166SEd Maste# This tag requires that the tag DIRECTORY_GRAPH is set to YES. 25625d3e7166SEd Maste 25635d3e7166SEd MasteDIR_GRAPH_MAX_DEPTH = 1 25645d3e7166SEd Maste 256510ff414cSEd Maste# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 256610ff414cSEd Maste# generated by dot. For an explanation of the image formats see the section 256710ff414cSEd Maste# output formats in the documentation of the dot tool (Graphviz (see: 256810ff414cSEd Maste# http://www.graphviz.org/)). 256910ff414cSEd Maste# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order 257010ff414cSEd Maste# to make the SVG files visible in IE 9+ (other browsers do not have this 257110ff414cSEd Maste# requirement). 257210ff414cSEd Maste# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo, 257310ff414cSEd Maste# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and 257410ff414cSEd Maste# png:gdiplus:gdiplus. 257510ff414cSEd Maste# The default value is: png. 257610ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 257710ff414cSEd Maste 257810ff414cSEd MasteDOT_IMAGE_FORMAT = png 257910ff414cSEd Maste 258010ff414cSEd Maste# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to 258110ff414cSEd Maste# enable generation of interactive SVG images that allow zooming and panning. 258210ff414cSEd Maste# 258310ff414cSEd Maste# Note that this requires a modern browser other than Internet Explorer. Tested 258410ff414cSEd Maste# and working are Firefox, Chrome, Safari, and Opera. 258510ff414cSEd Maste# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make 258610ff414cSEd Maste# the SVG files visible. Older versions of IE do not have SVG support. 258710ff414cSEd Maste# The default value is: NO. 258810ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 258910ff414cSEd Maste 259010ff414cSEd MasteINTERACTIVE_SVG = NO 259110ff414cSEd Maste 259210ff414cSEd Maste# The DOT_PATH tag can be used to specify the path where the dot tool can be 259310ff414cSEd Maste# found. If left blank, it is assumed the dot tool can be found in the path. 259410ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 259510ff414cSEd Maste 259610ff414cSEd MasteDOT_PATH = 259710ff414cSEd Maste 259810ff414cSEd Maste# The DOTFILE_DIRS tag can be used to specify one or more directories that 259910ff414cSEd Maste# contain dot files that are included in the documentation (see the \dotfile 260010ff414cSEd Maste# command). 260110ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 260210ff414cSEd Maste 260310ff414cSEd MasteDOTFILE_DIRS = 260410ff414cSEd Maste 260510ff414cSEd Maste# The MSCFILE_DIRS tag can be used to specify one or more directories that 260610ff414cSEd Maste# contain msc files that are included in the documentation (see the \mscfile 260710ff414cSEd Maste# command). 260810ff414cSEd Maste 260910ff414cSEd MasteMSCFILE_DIRS = 261010ff414cSEd Maste 261110ff414cSEd Maste# The DIAFILE_DIRS tag can be used to specify one or more directories that 261210ff414cSEd Maste# contain dia files that are included in the documentation (see the \diafile 261310ff414cSEd Maste# command). 261410ff414cSEd Maste 261510ff414cSEd MasteDIAFILE_DIRS = 261610ff414cSEd Maste 261710ff414cSEd Maste# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the 26185d3e7166SEd Maste# path where java can find the plantuml.jar file or to the filename of jar file 26195d3e7166SEd Maste# to be used. If left blank, it is assumed PlantUML is not used or called during 26205d3e7166SEd Maste# a preprocessing step. Doxygen will generate a warning when it encounters a 26215d3e7166SEd Maste# \startuml command in this case and will not generate output for the diagram. 262210ff414cSEd Maste 262310ff414cSEd MastePLANTUML_JAR_PATH = 262410ff414cSEd Maste 26255d3e7166SEd Maste# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a 26265d3e7166SEd Maste# configuration file for plantuml. 26275d3e7166SEd Maste 26285d3e7166SEd MastePLANTUML_CFG_FILE = 26295d3e7166SEd Maste 263010ff414cSEd Maste# When using plantuml, the specified paths are searched for files specified by 263110ff414cSEd Maste# the !include statement in a plantuml block. 263210ff414cSEd Maste 263310ff414cSEd MastePLANTUML_INCLUDE_PATH = 263410ff414cSEd Maste 263510ff414cSEd Maste# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes 263610ff414cSEd Maste# that will be shown in the graph. If the number of nodes in a graph becomes 263710ff414cSEd Maste# larger than this value, doxygen will truncate the graph, which is visualized 263810ff414cSEd Maste# by representing a node as a red box. Note that doxygen if the number of direct 263910ff414cSEd Maste# children of the root node in a graph is already larger than 264010ff414cSEd Maste# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that 264110ff414cSEd Maste# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 264210ff414cSEd Maste# Minimum value: 0, maximum value: 10000, default value: 50. 264310ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 264410ff414cSEd Maste 264510ff414cSEd MasteDOT_GRAPH_MAX_NODES = 50 264610ff414cSEd Maste 264710ff414cSEd Maste# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs 264810ff414cSEd Maste# generated by dot. A depth value of 3 means that only nodes reachable from the 264910ff414cSEd Maste# root by following a path via at most 3 edges will be shown. Nodes that lay 265010ff414cSEd Maste# further from the root node will be omitted. Note that setting this option to 1 265110ff414cSEd Maste# or 2 may greatly reduce the computation time needed for large code bases. Also 265210ff414cSEd Maste# note that the size of a graph can be further restricted by 265310ff414cSEd Maste# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 265410ff414cSEd Maste# Minimum value: 0, maximum value: 1000, default value: 0. 265510ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 265610ff414cSEd Maste 265710ff414cSEd MasteMAX_DOT_GRAPH_DEPTH = 0 265810ff414cSEd Maste 265910ff414cSEd Maste# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output 266010ff414cSEd Maste# files in one run (i.e. multiple -o and -T options on the command line). This 266110ff414cSEd Maste# makes dot run faster, but since only newer versions of dot (>1.8.10) support 266210ff414cSEd Maste# this, this feature is disabled by default. 266310ff414cSEd Maste# The default value is: NO. 266410ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 266510ff414cSEd Maste 266610ff414cSEd MasteDOT_MULTI_TARGETS = YES 266710ff414cSEd Maste 266810ff414cSEd Maste# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page 266910ff414cSEd Maste# explaining the meaning of the various boxes and arrows in the dot generated 267010ff414cSEd Maste# graphs. 26715d3e7166SEd Maste# Note: This tag requires that UML_LOOK isn't set, i.e. the doxygen internal 26725d3e7166SEd Maste# graphical representation for inheritance and collaboration diagrams is used. 267310ff414cSEd Maste# The default value is: YES. 267410ff414cSEd Maste# This tag requires that the tag HAVE_DOT is set to YES. 267510ff414cSEd Maste 267610ff414cSEd MasteGENERATE_LEGEND = YES 267710ff414cSEd Maste 26785d3e7166SEd Maste# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate 267910ff414cSEd Maste# files that are used to generate the various graphs. 26805d3e7166SEd Maste# 26815d3e7166SEd Maste# Note: This setting is not only used for dot files but also for msc temporary 26825d3e7166SEd Maste# files. 268310ff414cSEd Maste# The default value is: YES. 268410ff414cSEd Maste 268510ff414cSEd MasteDOT_CLEANUP = YES 2686