1cabdff1aSopenharmony_ci# Doxyfile 1.8.8 2cabdff1aSopenharmony_ci 3cabdff1aSopenharmony_ci# This file describes the settings to be used by the documentation system 4cabdff1aSopenharmony_ci# doxygen (www.doxygen.org) for a project. 5cabdff1aSopenharmony_ci# 6cabdff1aSopenharmony_ci# All text after a double hash (##) is considered a comment and is placed in 7cabdff1aSopenharmony_ci# front of the TAG it is preceding. 8cabdff1aSopenharmony_ci# 9cabdff1aSopenharmony_ci# All text after a single hash (#) is considered a comment and will be ignored. 10cabdff1aSopenharmony_ci# The format is: 11cabdff1aSopenharmony_ci# TAG = value [value, ...] 12cabdff1aSopenharmony_ci# For lists, items can also be appended using: 13cabdff1aSopenharmony_ci# TAG += value [value, ...] 14cabdff1aSopenharmony_ci# Values that contain spaces should be placed between quotes (\" \"). 15cabdff1aSopenharmony_ci 16cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 17cabdff1aSopenharmony_ci# Project related configuration options 18cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 19cabdff1aSopenharmony_ci 20cabdff1aSopenharmony_ci# This tag specifies the encoding used for all characters in the config file 21cabdff1aSopenharmony_ci# that follow. The default is UTF-8 which is also the encoding used for all text 22cabdff1aSopenharmony_ci# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv 23cabdff1aSopenharmony_ci# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv 24cabdff1aSopenharmony_ci# for the list of possible encodings. 25cabdff1aSopenharmony_ci# The default value is: UTF-8. 26cabdff1aSopenharmony_ci 27cabdff1aSopenharmony_ciDOXYFILE_ENCODING = UTF-8 28cabdff1aSopenharmony_ci 29cabdff1aSopenharmony_ci# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 30cabdff1aSopenharmony_ci# double-quotes, unless you are using Doxywizard) that should identify the 31cabdff1aSopenharmony_ci# project for which the documentation is generated. This name is used in the 32cabdff1aSopenharmony_ci# title of most generated pages and in a few other places. 33cabdff1aSopenharmony_ci# The default value is: My Project. 34cabdff1aSopenharmony_ci 35cabdff1aSopenharmony_ciPROJECT_NAME = FFmpeg 36cabdff1aSopenharmony_ci 37cabdff1aSopenharmony_ci# The PROJECT_NUMBER tag can be used to enter a project or revision number. This 38cabdff1aSopenharmony_ci# could be handy for archiving the generated documentation or if some version 39cabdff1aSopenharmony_ci# control system is used. 40cabdff1aSopenharmony_ci 41cabdff1aSopenharmony_ciPROJECT_NUMBER = 5.1.4 42cabdff1aSopenharmony_ci 43cabdff1aSopenharmony_ci# Using the PROJECT_BRIEF tag one can provide an optional one line description 44cabdff1aSopenharmony_ci# for a project that appears at the top of each page and should give viewer a 45cabdff1aSopenharmony_ci# quick idea about the purpose of the project. Keep the description short. 46cabdff1aSopenharmony_ci 47cabdff1aSopenharmony_ciPROJECT_BRIEF = 48cabdff1aSopenharmony_ci 49cabdff1aSopenharmony_ci# With the PROJECT_LOGO tag one can specify an logo or icon that is included in 50cabdff1aSopenharmony_ci# the documentation. The maximum height of the logo should not exceed 55 pixels 51cabdff1aSopenharmony_ci# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo 52cabdff1aSopenharmony_ci# to the output directory. 53cabdff1aSopenharmony_ci 54cabdff1aSopenharmony_ciPROJECT_LOGO = 55cabdff1aSopenharmony_ci 56cabdff1aSopenharmony_ci# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path 57cabdff1aSopenharmony_ci# into which the generated documentation will be written. If a relative path is 58cabdff1aSopenharmony_ci# entered, it will be relative to the location where doxygen was started. If 59cabdff1aSopenharmony_ci# left blank the current directory will be used. 60cabdff1aSopenharmony_ci 61cabdff1aSopenharmony_ciOUTPUT_DIRECTORY = doc/doxy 62cabdff1aSopenharmony_ci 63cabdff1aSopenharmony_ci# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- 64cabdff1aSopenharmony_ci# directories (in 2 levels) under the output directory of each output format and 65cabdff1aSopenharmony_ci# will distribute the generated files over these directories. Enabling this 66cabdff1aSopenharmony_ci# option can be useful when feeding doxygen a huge amount of source files, where 67cabdff1aSopenharmony_ci# putting all generated files in the same directory would otherwise causes 68cabdff1aSopenharmony_ci# performance problems for the file system. 69cabdff1aSopenharmony_ci# The default value is: NO. 70cabdff1aSopenharmony_ci 71cabdff1aSopenharmony_ciCREATE_SUBDIRS = NO 72cabdff1aSopenharmony_ci 73cabdff1aSopenharmony_ci# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 74cabdff1aSopenharmony_ci# characters to appear in the names of generated files. If set to NO, non-ASCII 75cabdff1aSopenharmony_ci# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode 76cabdff1aSopenharmony_ci# U+3044. 77cabdff1aSopenharmony_ci# The default value is: NO. 78cabdff1aSopenharmony_ci 79cabdff1aSopenharmony_ciALLOW_UNICODE_NAMES = NO 80cabdff1aSopenharmony_ci 81cabdff1aSopenharmony_ci# The OUTPUT_LANGUAGE tag is used to specify the language in which all 82cabdff1aSopenharmony_ci# documentation generated by doxygen is written. Doxygen will use this 83cabdff1aSopenharmony_ci# information to generate all constant output in the proper language. 84cabdff1aSopenharmony_ci# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, 85cabdff1aSopenharmony_ci# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), 86cabdff1aSopenharmony_ci# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, 87cabdff1aSopenharmony_ci# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), 88cabdff1aSopenharmony_ci# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, 89cabdff1aSopenharmony_ci# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, 90cabdff1aSopenharmony_ci# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, 91cabdff1aSopenharmony_ci# Ukrainian and Vietnamese. 92cabdff1aSopenharmony_ci# The default value is: English. 93cabdff1aSopenharmony_ci 94cabdff1aSopenharmony_ciOUTPUT_LANGUAGE = English 95cabdff1aSopenharmony_ci 96cabdff1aSopenharmony_ci# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member 97cabdff1aSopenharmony_ci# descriptions after the members that are listed in the file and class 98cabdff1aSopenharmony_ci# documentation (similar to Javadoc). Set to NO to disable this. 99cabdff1aSopenharmony_ci# The default value is: YES. 100cabdff1aSopenharmony_ci 101cabdff1aSopenharmony_ciBRIEF_MEMBER_DESC = YES 102cabdff1aSopenharmony_ci 103cabdff1aSopenharmony_ci# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief 104cabdff1aSopenharmony_ci# description of a member or function before the detailed description 105cabdff1aSopenharmony_ci# 106cabdff1aSopenharmony_ci# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 107cabdff1aSopenharmony_ci# brief descriptions will be completely suppressed. 108cabdff1aSopenharmony_ci# The default value is: YES. 109cabdff1aSopenharmony_ci 110cabdff1aSopenharmony_ciREPEAT_BRIEF = YES 111cabdff1aSopenharmony_ci 112cabdff1aSopenharmony_ci# This tag implements a quasi-intelligent brief description abbreviator that is 113cabdff1aSopenharmony_ci# used to form the text in various listings. Each string in this list, if found 114cabdff1aSopenharmony_ci# as the leading text of the brief description, will be stripped from the text 115cabdff1aSopenharmony_ci# and the result, after processing the whole list, is used as the annotated 116cabdff1aSopenharmony_ci# text. Otherwise, the brief description is used as-is. If left blank, the 117cabdff1aSopenharmony_ci# following values are used ($name is automatically replaced with the name of 118cabdff1aSopenharmony_ci# the entity):The $name class, The $name widget, The $name file, is, provides, 119cabdff1aSopenharmony_ci# specifies, contains, represents, a, an and the. 120cabdff1aSopenharmony_ci 121cabdff1aSopenharmony_ciABBREVIATE_BRIEF = 122cabdff1aSopenharmony_ci 123cabdff1aSopenharmony_ci# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 124cabdff1aSopenharmony_ci# doxygen will generate a detailed section even if there is only a brief 125cabdff1aSopenharmony_ci# description. 126cabdff1aSopenharmony_ci# The default value is: NO. 127cabdff1aSopenharmony_ci 128cabdff1aSopenharmony_ciALWAYS_DETAILED_SEC = NO 129cabdff1aSopenharmony_ci 130cabdff1aSopenharmony_ci# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 131cabdff1aSopenharmony_ci# inherited members of a class in the documentation of that class as if those 132cabdff1aSopenharmony_ci# members were ordinary class members. Constructors, destructors and assignment 133cabdff1aSopenharmony_ci# operators of the base classes will not be shown. 134cabdff1aSopenharmony_ci# The default value is: NO. 135cabdff1aSopenharmony_ci 136cabdff1aSopenharmony_ciINLINE_INHERITED_MEMB = NO 137cabdff1aSopenharmony_ci 138cabdff1aSopenharmony_ci# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path 139cabdff1aSopenharmony_ci# before files name in the file list and in the header files. If set to NO the 140cabdff1aSopenharmony_ci# shortest path that makes the file name unique will be used 141cabdff1aSopenharmony_ci# The default value is: YES. 142cabdff1aSopenharmony_ci 143cabdff1aSopenharmony_ciFULL_PATH_NAMES = YES 144cabdff1aSopenharmony_ci 145cabdff1aSopenharmony_ci# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. 146cabdff1aSopenharmony_ci# Stripping is only done if one of the specified strings matches the left-hand 147cabdff1aSopenharmony_ci# part of the path. The tag can be used to show relative paths in the file list. 148cabdff1aSopenharmony_ci# If left blank the directory from which doxygen is run is used as the path to 149cabdff1aSopenharmony_ci# strip. 150cabdff1aSopenharmony_ci# 151cabdff1aSopenharmony_ci# Note that you can specify absolute paths here, but also relative paths, which 152cabdff1aSopenharmony_ci# will be relative from the directory where doxygen is started. 153cabdff1aSopenharmony_ci# This tag requires that the tag FULL_PATH_NAMES is set to YES. 154cabdff1aSopenharmony_ci 155cabdff1aSopenharmony_ciSTRIP_FROM_PATH = . 156cabdff1aSopenharmony_ci 157cabdff1aSopenharmony_ci# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the 158cabdff1aSopenharmony_ci# path mentioned in the documentation of a class, which tells the reader which 159cabdff1aSopenharmony_ci# header file to include in order to use a class. If left blank only the name of 160cabdff1aSopenharmony_ci# the header file containing the class definition is used. Otherwise one should 161cabdff1aSopenharmony_ci# specify the list of include paths that are normally passed to the compiler 162cabdff1aSopenharmony_ci# using the -I flag. 163cabdff1aSopenharmony_ci 164cabdff1aSopenharmony_ciSTRIP_FROM_INC_PATH = . 165cabdff1aSopenharmony_ci 166cabdff1aSopenharmony_ci# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but 167cabdff1aSopenharmony_ci# less readable) file names. This can be useful is your file systems doesn't 168cabdff1aSopenharmony_ci# support long names like on DOS, Mac, or CD-ROM. 169cabdff1aSopenharmony_ci# The default value is: NO. 170cabdff1aSopenharmony_ci 171cabdff1aSopenharmony_ciSHORT_NAMES = NO 172cabdff1aSopenharmony_ci 173cabdff1aSopenharmony_ci# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the 174cabdff1aSopenharmony_ci# first line (until the first dot) of a Javadoc-style comment as the brief 175cabdff1aSopenharmony_ci# description. If set to NO, the Javadoc-style will behave just like regular Qt- 176cabdff1aSopenharmony_ci# style comments (thus requiring an explicit @brief command for a brief 177cabdff1aSopenharmony_ci# description.) 178cabdff1aSopenharmony_ci# The default value is: NO. 179cabdff1aSopenharmony_ci 180cabdff1aSopenharmony_ciJAVADOC_AUTOBRIEF = YES 181cabdff1aSopenharmony_ci 182cabdff1aSopenharmony_ci# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first 183cabdff1aSopenharmony_ci# line (until the first dot) of a Qt-style comment as the brief description. If 184cabdff1aSopenharmony_ci# set to NO, the Qt-style will behave just like regular Qt-style comments (thus 185cabdff1aSopenharmony_ci# requiring an explicit \brief command for a brief description.) 186cabdff1aSopenharmony_ci# The default value is: NO. 187cabdff1aSopenharmony_ci 188cabdff1aSopenharmony_ciQT_AUTOBRIEF = NO 189cabdff1aSopenharmony_ci 190cabdff1aSopenharmony_ci# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a 191cabdff1aSopenharmony_ci# multi-line C++ special comment block (i.e. a block of //! or /// comments) as 192cabdff1aSopenharmony_ci# a brief description. This used to be the default behavior. The new default is 193cabdff1aSopenharmony_ci# to treat a multi-line C++ comment block as a detailed description. Set this 194cabdff1aSopenharmony_ci# tag to YES if you prefer the old behavior instead. 195cabdff1aSopenharmony_ci# 196cabdff1aSopenharmony_ci# Note that setting this tag to YES also means that rational rose comments are 197cabdff1aSopenharmony_ci# not recognized any more. 198cabdff1aSopenharmony_ci# The default value is: NO. 199cabdff1aSopenharmony_ci 200cabdff1aSopenharmony_ciMULTILINE_CPP_IS_BRIEF = NO 201cabdff1aSopenharmony_ci 202cabdff1aSopenharmony_ci# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the 203cabdff1aSopenharmony_ci# documentation from any documented member that it re-implements. 204cabdff1aSopenharmony_ci# The default value is: YES. 205cabdff1aSopenharmony_ci 206cabdff1aSopenharmony_ciINHERIT_DOCS = YES 207cabdff1aSopenharmony_ci 208cabdff1aSopenharmony_ci# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a 209cabdff1aSopenharmony_ci# new page for each member. If set to NO, the documentation of a member will be 210cabdff1aSopenharmony_ci# part of the file/class/namespace that contains it. 211cabdff1aSopenharmony_ci# The default value is: NO. 212cabdff1aSopenharmony_ci 213cabdff1aSopenharmony_ciSEPARATE_MEMBER_PAGES = NO 214cabdff1aSopenharmony_ci 215cabdff1aSopenharmony_ci# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen 216cabdff1aSopenharmony_ci# uses this value to replace tabs by spaces in code fragments. 217cabdff1aSopenharmony_ci# Minimum value: 1, maximum value: 16, default value: 4. 218cabdff1aSopenharmony_ci 219cabdff1aSopenharmony_ciTAB_SIZE = 4 220cabdff1aSopenharmony_ci 221cabdff1aSopenharmony_ci# This tag can be used to specify a number of aliases that act as commands in 222cabdff1aSopenharmony_ci# the documentation. An alias has the form: 223cabdff1aSopenharmony_ci# name=value 224cabdff1aSopenharmony_ci# For example adding 225cabdff1aSopenharmony_ci# "sideeffect=@par Side Effects:\n" 226cabdff1aSopenharmony_ci# will allow you to put the command \sideeffect (or @sideeffect) in the 227cabdff1aSopenharmony_ci# documentation, which will result in a user-defined paragraph with heading 228cabdff1aSopenharmony_ci# "Side Effects:". You can put \n's in the value part of an alias to insert 229cabdff1aSopenharmony_ci# newlines. 230cabdff1aSopenharmony_ci 231cabdff1aSopenharmony_ciALIASES = 232cabdff1aSopenharmony_ci 233cabdff1aSopenharmony_ci# This tag can be used to specify a number of word-keyword mappings (TCL only). 234cabdff1aSopenharmony_ci# A mapping has the form "name=value". For example adding "class=itcl::class" 235cabdff1aSopenharmony_ci# will allow you to use the command class in the itcl::class meaning. 236cabdff1aSopenharmony_ci 237cabdff1aSopenharmony_ciTCL_SUBST = 238cabdff1aSopenharmony_ci 239cabdff1aSopenharmony_ci# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 240cabdff1aSopenharmony_ci# only. Doxygen will then generate output that is more tailored for C. For 241cabdff1aSopenharmony_ci# instance, some of the names that are used will be different. The list of all 242cabdff1aSopenharmony_ci# members will be omitted, etc. 243cabdff1aSopenharmony_ci# The default value is: NO. 244cabdff1aSopenharmony_ci 245cabdff1aSopenharmony_ciOPTIMIZE_OUTPUT_FOR_C = YES 246cabdff1aSopenharmony_ci 247cabdff1aSopenharmony_ci# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or 248cabdff1aSopenharmony_ci# Python sources only. Doxygen will then generate output that is more tailored 249cabdff1aSopenharmony_ci# for that language. For instance, namespaces will be presented as packages, 250cabdff1aSopenharmony_ci# qualified scopes will look different, etc. 251cabdff1aSopenharmony_ci# The default value is: NO. 252cabdff1aSopenharmony_ci 253cabdff1aSopenharmony_ciOPTIMIZE_OUTPUT_JAVA = NO 254cabdff1aSopenharmony_ci 255cabdff1aSopenharmony_ci# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran 256cabdff1aSopenharmony_ci# sources. Doxygen will then generate output that is tailored for Fortran. 257cabdff1aSopenharmony_ci# The default value is: NO. 258cabdff1aSopenharmony_ci 259cabdff1aSopenharmony_ciOPTIMIZE_FOR_FORTRAN = NO 260cabdff1aSopenharmony_ci 261cabdff1aSopenharmony_ci# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL 262cabdff1aSopenharmony_ci# sources. Doxygen will then generate output that is tailored for VHDL. 263cabdff1aSopenharmony_ci# The default value is: NO. 264cabdff1aSopenharmony_ci 265cabdff1aSopenharmony_ciOPTIMIZE_OUTPUT_VHDL = NO 266cabdff1aSopenharmony_ci 267cabdff1aSopenharmony_ci# Doxygen selects the parser to use depending on the extension of the files it 268cabdff1aSopenharmony_ci# parses. With this tag you can assign which parser to use for a given 269cabdff1aSopenharmony_ci# extension. Doxygen has a built-in mapping, but you can override or extend it 270cabdff1aSopenharmony_ci# using this tag. The format is ext=language, where ext is a file extension, and 271cabdff1aSopenharmony_ci# language is one of the parsers supported by doxygen: IDL, Java, Javascript, 272cabdff1aSopenharmony_ci# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: 273cabdff1aSopenharmony_ci# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: 274cabdff1aSopenharmony_ci# Fortran. In the later case the parser tries to guess whether the code is fixed 275cabdff1aSopenharmony_ci# or free formatted code, this is the default for Fortran type files), VHDL. For 276cabdff1aSopenharmony_ci# instance to make doxygen treat .inc files as Fortran files (default is PHP), 277cabdff1aSopenharmony_ci# and .f files as C (default is Fortran), use: inc=Fortran f=C. 278cabdff1aSopenharmony_ci# 279cabdff1aSopenharmony_ci# Note For files without extension you can use no_extension as a placeholder. 280cabdff1aSopenharmony_ci# 281cabdff1aSopenharmony_ci# Note that for custom extensions you also need to set FILE_PATTERNS otherwise 282cabdff1aSopenharmony_ci# the files are not read by doxygen. 283cabdff1aSopenharmony_ci 284cabdff1aSopenharmony_ciEXTENSION_MAPPING = 285cabdff1aSopenharmony_ci 286cabdff1aSopenharmony_ci# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments 287cabdff1aSopenharmony_ci# according to the Markdown format, which allows for more readable 288cabdff1aSopenharmony_ci# documentation. See http://daringfireball.net/projects/markdown/ for details. 289cabdff1aSopenharmony_ci# The output of markdown processing is further processed by doxygen, so you can 290cabdff1aSopenharmony_ci# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in 291cabdff1aSopenharmony_ci# case of backward compatibilities issues. 292cabdff1aSopenharmony_ci# The default value is: YES. 293cabdff1aSopenharmony_ci 294cabdff1aSopenharmony_ciMARKDOWN_SUPPORT = YES 295cabdff1aSopenharmony_ci 296cabdff1aSopenharmony_ci# When enabled doxygen tries to link words that correspond to documented 297cabdff1aSopenharmony_ci# classes, or namespaces to their corresponding documentation. Such a link can 298cabdff1aSopenharmony_ci# be prevented in individual cases by by putting a % sign in front of the word 299cabdff1aSopenharmony_ci# or globally by setting AUTOLINK_SUPPORT to NO. 300cabdff1aSopenharmony_ci# The default value is: YES. 301cabdff1aSopenharmony_ci 302cabdff1aSopenharmony_ciAUTOLINK_SUPPORT = YES 303cabdff1aSopenharmony_ci 304cabdff1aSopenharmony_ci# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 305cabdff1aSopenharmony_ci# to include (a tag file for) the STL sources as input, then you should set this 306cabdff1aSopenharmony_ci# tag to YES in order to let doxygen match functions declarations and 307cabdff1aSopenharmony_ci# definitions whose arguments contain STL classes (e.g. func(std::string); 308cabdff1aSopenharmony_ci# versus func(std::string) {}). This also make the inheritance and collaboration 309cabdff1aSopenharmony_ci# diagrams that involve STL classes more complete and accurate. 310cabdff1aSopenharmony_ci# The default value is: NO. 311cabdff1aSopenharmony_ci 312cabdff1aSopenharmony_ciBUILTIN_STL_SUPPORT = NO 313cabdff1aSopenharmony_ci 314cabdff1aSopenharmony_ci# If you use Microsoft's C++/CLI language, you should set this option to YES to 315cabdff1aSopenharmony_ci# enable parsing support. 316cabdff1aSopenharmony_ci# The default value is: NO. 317cabdff1aSopenharmony_ci 318cabdff1aSopenharmony_ciCPP_CLI_SUPPORT = NO 319cabdff1aSopenharmony_ci 320cabdff1aSopenharmony_ci# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: 321cabdff1aSopenharmony_ci# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen 322cabdff1aSopenharmony_ci# will parse them like normal C++ but will assume all classes use public instead 323cabdff1aSopenharmony_ci# of private inheritance when no explicit protection keyword is present. 324cabdff1aSopenharmony_ci# The default value is: NO. 325cabdff1aSopenharmony_ci 326cabdff1aSopenharmony_ciSIP_SUPPORT = NO 327cabdff1aSopenharmony_ci 328cabdff1aSopenharmony_ci# For Microsoft's IDL there are propget and propput attributes to indicate 329cabdff1aSopenharmony_ci# getter and setter methods for a property. Setting this option to YES will make 330cabdff1aSopenharmony_ci# doxygen to replace the get and set methods by a property in the documentation. 331cabdff1aSopenharmony_ci# This will only work if the methods are indeed getting or setting a simple 332cabdff1aSopenharmony_ci# type. If this is not the case, or you want to show the methods anyway, you 333cabdff1aSopenharmony_ci# should set this option to NO. 334cabdff1aSopenharmony_ci# The default value is: YES. 335cabdff1aSopenharmony_ci 336cabdff1aSopenharmony_ciIDL_PROPERTY_SUPPORT = YES 337cabdff1aSopenharmony_ci 338cabdff1aSopenharmony_ci# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 339cabdff1aSopenharmony_ci# tag is set to YES, then doxygen will reuse the documentation of the first 340cabdff1aSopenharmony_ci# member in the group (if any) for the other members of the group. By default 341cabdff1aSopenharmony_ci# all members of a group must be documented explicitly. 342cabdff1aSopenharmony_ci# The default value is: NO. 343cabdff1aSopenharmony_ci 344cabdff1aSopenharmony_ciDISTRIBUTE_GROUP_DOC = NO 345cabdff1aSopenharmony_ci 346cabdff1aSopenharmony_ci# Set the SUBGROUPING tag to YES to allow class member groups of the same type 347cabdff1aSopenharmony_ci# (for instance a group of public functions) to be put as a subgroup of that 348cabdff1aSopenharmony_ci# type (e.g. under the Public Functions section). Set it to NO to prevent 349cabdff1aSopenharmony_ci# subgrouping. Alternatively, this can be done per class using the 350cabdff1aSopenharmony_ci# \nosubgrouping command. 351cabdff1aSopenharmony_ci# The default value is: YES. 352cabdff1aSopenharmony_ci 353cabdff1aSopenharmony_ciSUBGROUPING = YES 354cabdff1aSopenharmony_ci 355cabdff1aSopenharmony_ci# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions 356cabdff1aSopenharmony_ci# are shown inside the group in which they are included (e.g. using \ingroup) 357cabdff1aSopenharmony_ci# instead of on a separate page (for HTML and Man pages) or section (for LaTeX 358cabdff1aSopenharmony_ci# and RTF). 359cabdff1aSopenharmony_ci# 360cabdff1aSopenharmony_ci# Note that this feature does not work in combination with 361cabdff1aSopenharmony_ci# SEPARATE_MEMBER_PAGES. 362cabdff1aSopenharmony_ci# The default value is: NO. 363cabdff1aSopenharmony_ci 364cabdff1aSopenharmony_ciINLINE_GROUPED_CLASSES = NO 365cabdff1aSopenharmony_ci 366cabdff1aSopenharmony_ci# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions 367cabdff1aSopenharmony_ci# with only public data fields or simple typedef fields will be shown inline in 368cabdff1aSopenharmony_ci# the documentation of the scope in which they are defined (i.e. file, 369cabdff1aSopenharmony_ci# namespace, or group documentation), provided this scope is documented. If set 370cabdff1aSopenharmony_ci# to NO, structs, classes, and unions are shown on a separate page (for HTML and 371cabdff1aSopenharmony_ci# Man pages) or section (for LaTeX and RTF). 372cabdff1aSopenharmony_ci# The default value is: NO. 373cabdff1aSopenharmony_ci 374cabdff1aSopenharmony_ciINLINE_SIMPLE_STRUCTS = NO 375cabdff1aSopenharmony_ci 376cabdff1aSopenharmony_ci# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or 377cabdff1aSopenharmony_ci# enum is documented as struct, union, or enum with the name of the typedef. So 378cabdff1aSopenharmony_ci# typedef struct TypeS {} TypeT, will appear in the documentation as a struct 379cabdff1aSopenharmony_ci# with name TypeT. When disabled the typedef will appear as a member of a file, 380cabdff1aSopenharmony_ci# namespace, or class. And the struct will be named TypeS. This can typically be 381cabdff1aSopenharmony_ci# useful for C code in case the coding convention dictates that all compound 382cabdff1aSopenharmony_ci# types are typedef'ed and only the typedef is referenced, never the tag name. 383cabdff1aSopenharmony_ci# The default value is: NO. 384cabdff1aSopenharmony_ci 385cabdff1aSopenharmony_ciTYPEDEF_HIDES_STRUCT = YES 386cabdff1aSopenharmony_ci 387cabdff1aSopenharmony_ci# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 388cabdff1aSopenharmony_ci# cache is used to resolve symbols given their name and scope. Since this can be 389cabdff1aSopenharmony_ci# an expensive process and often the same symbol appears multiple times in the 390cabdff1aSopenharmony_ci# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small 391cabdff1aSopenharmony_ci# doxygen will become slower. If the cache is too large, memory is wasted. The 392cabdff1aSopenharmony_ci# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range 393cabdff1aSopenharmony_ci# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 394cabdff1aSopenharmony_ci# symbols. At the end of a run doxygen will report the cache usage and suggest 395cabdff1aSopenharmony_ci# the optimal cache size from a speed point of view. 396cabdff1aSopenharmony_ci# Minimum value: 0, maximum value: 9, default value: 0. 397cabdff1aSopenharmony_ci 398cabdff1aSopenharmony_ciLOOKUP_CACHE_SIZE = 0 399cabdff1aSopenharmony_ci 400cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 401cabdff1aSopenharmony_ci# Build related configuration options 402cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 403cabdff1aSopenharmony_ci 404cabdff1aSopenharmony_ci# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 405cabdff1aSopenharmony_ci# documentation are documented, even if no documentation was available. Private 406cabdff1aSopenharmony_ci# class members and static file members will be hidden unless the 407cabdff1aSopenharmony_ci# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. 408cabdff1aSopenharmony_ci# Note: This will also disable the warnings about undocumented members that are 409cabdff1aSopenharmony_ci# normally produced when WARNINGS is set to YES. 410cabdff1aSopenharmony_ci# The default value is: NO. 411cabdff1aSopenharmony_ci 412cabdff1aSopenharmony_ciEXTRACT_ALL = YES 413cabdff1aSopenharmony_ci 414cabdff1aSopenharmony_ci# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will 415cabdff1aSopenharmony_ci# be included in the documentation. 416cabdff1aSopenharmony_ci# The default value is: NO. 417cabdff1aSopenharmony_ci 418cabdff1aSopenharmony_ciEXTRACT_PRIVATE = YES 419cabdff1aSopenharmony_ci 420cabdff1aSopenharmony_ci# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal 421cabdff1aSopenharmony_ci# scope will be included in the documentation. 422cabdff1aSopenharmony_ci# The default value is: NO. 423cabdff1aSopenharmony_ci 424cabdff1aSopenharmony_ciEXTRACT_PACKAGE = NO 425cabdff1aSopenharmony_ci 426cabdff1aSopenharmony_ci# If the EXTRACT_STATIC tag is set to YES all static members of a file will be 427cabdff1aSopenharmony_ci# included in the documentation. 428cabdff1aSopenharmony_ci# The default value is: NO. 429cabdff1aSopenharmony_ci 430cabdff1aSopenharmony_ciEXTRACT_STATIC = YES 431cabdff1aSopenharmony_ci 432cabdff1aSopenharmony_ci# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined 433cabdff1aSopenharmony_ci# locally in source files will be included in the documentation. If set to NO 434cabdff1aSopenharmony_ci# only classes defined in header files are included. Does not have any effect 435cabdff1aSopenharmony_ci# for Java sources. 436cabdff1aSopenharmony_ci# The default value is: YES. 437cabdff1aSopenharmony_ci 438cabdff1aSopenharmony_ciEXTRACT_LOCAL_CLASSES = YES 439cabdff1aSopenharmony_ci 440cabdff1aSopenharmony_ci# This flag is only useful for Objective-C code. When set to YES local methods, 441cabdff1aSopenharmony_ci# which are defined in the implementation section but not in the interface are 442cabdff1aSopenharmony_ci# included in the documentation. If set to NO only methods in the interface are 443cabdff1aSopenharmony_ci# included. 444cabdff1aSopenharmony_ci# The default value is: NO. 445cabdff1aSopenharmony_ci 446cabdff1aSopenharmony_ciEXTRACT_LOCAL_METHODS = NO 447cabdff1aSopenharmony_ci 448cabdff1aSopenharmony_ci# If this flag is set to YES, the members of anonymous namespaces will be 449cabdff1aSopenharmony_ci# extracted and appear in the documentation as a namespace called 450cabdff1aSopenharmony_ci# 'anonymous_namespace{file}', where file will be replaced with the base name of 451cabdff1aSopenharmony_ci# the file that contains the anonymous namespace. By default anonymous namespace 452cabdff1aSopenharmony_ci# are hidden. 453cabdff1aSopenharmony_ci# The default value is: NO. 454cabdff1aSopenharmony_ci 455cabdff1aSopenharmony_ciEXTRACT_ANON_NSPACES = NO 456cabdff1aSopenharmony_ci 457cabdff1aSopenharmony_ci# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all 458cabdff1aSopenharmony_ci# undocumented members inside documented classes or files. If set to NO these 459cabdff1aSopenharmony_ci# members will be included in the various overviews, but no documentation 460cabdff1aSopenharmony_ci# section is generated. This option has no effect if EXTRACT_ALL is enabled. 461cabdff1aSopenharmony_ci# The default value is: NO. 462cabdff1aSopenharmony_ci 463cabdff1aSopenharmony_ciHIDE_UNDOC_MEMBERS = NO 464cabdff1aSopenharmony_ci 465cabdff1aSopenharmony_ci# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all 466cabdff1aSopenharmony_ci# undocumented classes that are normally visible in the class hierarchy. If set 467cabdff1aSopenharmony_ci# to NO these classes will be included in the various overviews. This option has 468cabdff1aSopenharmony_ci# no effect if EXTRACT_ALL is enabled. 469cabdff1aSopenharmony_ci# The default value is: NO. 470cabdff1aSopenharmony_ci 471cabdff1aSopenharmony_ciHIDE_UNDOC_CLASSES = NO 472cabdff1aSopenharmony_ci 473cabdff1aSopenharmony_ci# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend 474cabdff1aSopenharmony_ci# (class|struct|union) declarations. If set to NO these declarations will be 475cabdff1aSopenharmony_ci# included in the documentation. 476cabdff1aSopenharmony_ci# The default value is: NO. 477cabdff1aSopenharmony_ci 478cabdff1aSopenharmony_ciHIDE_FRIEND_COMPOUNDS = NO 479cabdff1aSopenharmony_ci 480cabdff1aSopenharmony_ci# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any 481cabdff1aSopenharmony_ci# documentation blocks found inside the body of a function. If set to NO these 482cabdff1aSopenharmony_ci# blocks will be appended to the function's detailed documentation block. 483cabdff1aSopenharmony_ci# The default value is: NO. 484cabdff1aSopenharmony_ci 485cabdff1aSopenharmony_ciHIDE_IN_BODY_DOCS = NO 486cabdff1aSopenharmony_ci 487cabdff1aSopenharmony_ci# The INTERNAL_DOCS tag determines if documentation that is typed after a 488cabdff1aSopenharmony_ci# \internal command is included. If the tag is set to NO then the documentation 489cabdff1aSopenharmony_ci# will be excluded. Set it to YES to include the internal documentation. 490cabdff1aSopenharmony_ci# The default value is: NO. 491cabdff1aSopenharmony_ci 492cabdff1aSopenharmony_ciINTERNAL_DOCS = NO 493cabdff1aSopenharmony_ci 494cabdff1aSopenharmony_ci# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file 495cabdff1aSopenharmony_ci# names in lower-case letters. If set to YES upper-case letters are also 496cabdff1aSopenharmony_ci# allowed. This is useful if you have classes or files whose names only differ 497cabdff1aSopenharmony_ci# in case and if your file system supports case sensitive file names. Windows 498cabdff1aSopenharmony_ci# and Mac users are advised to set this option to NO. 499cabdff1aSopenharmony_ci# The default value is: system dependent. 500cabdff1aSopenharmony_ci 501cabdff1aSopenharmony_ciCASE_SENSE_NAMES = YES 502cabdff1aSopenharmony_ci 503cabdff1aSopenharmony_ci# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with 504cabdff1aSopenharmony_ci# their full class and namespace scopes in the documentation. If set to YES the 505cabdff1aSopenharmony_ci# scope will be hidden. 506cabdff1aSopenharmony_ci# The default value is: NO. 507cabdff1aSopenharmony_ci 508cabdff1aSopenharmony_ciHIDE_SCOPE_NAMES = NO 509cabdff1aSopenharmony_ci 510cabdff1aSopenharmony_ci# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of 511cabdff1aSopenharmony_ci# the files that are included by a file in the documentation of that file. 512cabdff1aSopenharmony_ci# The default value is: YES. 513cabdff1aSopenharmony_ci 514cabdff1aSopenharmony_ciSHOW_INCLUDE_FILES = YES 515cabdff1aSopenharmony_ci 516cabdff1aSopenharmony_ci# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each 517cabdff1aSopenharmony_ci# grouped member an include statement to the documentation, telling the reader 518cabdff1aSopenharmony_ci# which file to include in order to use the member. 519cabdff1aSopenharmony_ci# The default value is: NO. 520cabdff1aSopenharmony_ci 521cabdff1aSopenharmony_ciSHOW_GROUPED_MEMB_INC = NO 522cabdff1aSopenharmony_ci 523cabdff1aSopenharmony_ci# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include 524cabdff1aSopenharmony_ci# files with double quotes in the documentation rather than with sharp brackets. 525cabdff1aSopenharmony_ci# The default value is: NO. 526cabdff1aSopenharmony_ci 527cabdff1aSopenharmony_ciFORCE_LOCAL_INCLUDES = NO 528cabdff1aSopenharmony_ci 529cabdff1aSopenharmony_ci# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the 530cabdff1aSopenharmony_ci# documentation for inline members. 531cabdff1aSopenharmony_ci# The default value is: YES. 532cabdff1aSopenharmony_ci 533cabdff1aSopenharmony_ciINLINE_INFO = YES 534cabdff1aSopenharmony_ci 535cabdff1aSopenharmony_ci# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the 536cabdff1aSopenharmony_ci# (detailed) documentation of file and class members alphabetically by member 537cabdff1aSopenharmony_ci# name. If set to NO the members will appear in declaration order. 538cabdff1aSopenharmony_ci# The default value is: YES. 539cabdff1aSopenharmony_ci 540cabdff1aSopenharmony_ciSORT_MEMBER_DOCS = NO 541cabdff1aSopenharmony_ci 542cabdff1aSopenharmony_ci# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief 543cabdff1aSopenharmony_ci# descriptions of file, namespace and class members alphabetically by member 544cabdff1aSopenharmony_ci# name. If set to NO the members will appear in declaration order. Note that 545cabdff1aSopenharmony_ci# this will also influence the order of the classes in the class list. 546cabdff1aSopenharmony_ci# The default value is: NO. 547cabdff1aSopenharmony_ci 548cabdff1aSopenharmony_ciSORT_BRIEF_DOCS = NO 549cabdff1aSopenharmony_ci 550cabdff1aSopenharmony_ci# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the 551cabdff1aSopenharmony_ci# (brief and detailed) documentation of class members so that constructors and 552cabdff1aSopenharmony_ci# destructors are listed first. If set to NO the constructors will appear in the 553cabdff1aSopenharmony_ci# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. 554cabdff1aSopenharmony_ci# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief 555cabdff1aSopenharmony_ci# member documentation. 556cabdff1aSopenharmony_ci# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting 557cabdff1aSopenharmony_ci# detailed member documentation. 558cabdff1aSopenharmony_ci# The default value is: NO. 559cabdff1aSopenharmony_ci 560cabdff1aSopenharmony_ciSORT_MEMBERS_CTORS_1ST = NO 561cabdff1aSopenharmony_ci 562cabdff1aSopenharmony_ci# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy 563cabdff1aSopenharmony_ci# of group names into alphabetical order. If set to NO the group names will 564cabdff1aSopenharmony_ci# appear in their defined order. 565cabdff1aSopenharmony_ci# The default value is: NO. 566cabdff1aSopenharmony_ci 567cabdff1aSopenharmony_ciSORT_GROUP_NAMES = NO 568cabdff1aSopenharmony_ci 569cabdff1aSopenharmony_ci# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by 570cabdff1aSopenharmony_ci# fully-qualified names, including namespaces. If set to NO, the class list will 571cabdff1aSopenharmony_ci# be sorted only by class name, not including the namespace part. 572cabdff1aSopenharmony_ci# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 573cabdff1aSopenharmony_ci# Note: This option applies only to the class list, not to the alphabetical 574cabdff1aSopenharmony_ci# list. 575cabdff1aSopenharmony_ci# The default value is: NO. 576cabdff1aSopenharmony_ci 577cabdff1aSopenharmony_ciSORT_BY_SCOPE_NAME = NO 578cabdff1aSopenharmony_ci 579cabdff1aSopenharmony_ci# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper 580cabdff1aSopenharmony_ci# type resolution of all parameters of a function it will reject a match between 581cabdff1aSopenharmony_ci# the prototype and the implementation of a member function even if there is 582cabdff1aSopenharmony_ci# only one candidate or it is obvious which candidate to choose by doing a 583cabdff1aSopenharmony_ci# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still 584cabdff1aSopenharmony_ci# accept a match between prototype and implementation in such cases. 585cabdff1aSopenharmony_ci# The default value is: NO. 586cabdff1aSopenharmony_ci 587cabdff1aSopenharmony_ciSTRICT_PROTO_MATCHING = NO 588cabdff1aSopenharmony_ci 589cabdff1aSopenharmony_ci# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the 590cabdff1aSopenharmony_ci# todo list. This list is created by putting \todo commands in the 591cabdff1aSopenharmony_ci# documentation. 592cabdff1aSopenharmony_ci# The default value is: YES. 593cabdff1aSopenharmony_ci 594cabdff1aSopenharmony_ciGENERATE_TODOLIST = YES 595cabdff1aSopenharmony_ci 596cabdff1aSopenharmony_ci# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the 597cabdff1aSopenharmony_ci# test list. This list is created by putting \test commands in the 598cabdff1aSopenharmony_ci# documentation. 599cabdff1aSopenharmony_ci# The default value is: YES. 600cabdff1aSopenharmony_ci 601cabdff1aSopenharmony_ciGENERATE_TESTLIST = YES 602cabdff1aSopenharmony_ci 603cabdff1aSopenharmony_ci# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug 604cabdff1aSopenharmony_ci# list. This list is created by putting \bug commands in the documentation. 605cabdff1aSopenharmony_ci# The default value is: YES. 606cabdff1aSopenharmony_ci 607cabdff1aSopenharmony_ciGENERATE_BUGLIST = YES 608cabdff1aSopenharmony_ci 609cabdff1aSopenharmony_ci# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) 610cabdff1aSopenharmony_ci# the deprecated list. This list is created by putting \deprecated commands in 611cabdff1aSopenharmony_ci# the documentation. 612cabdff1aSopenharmony_ci# The default value is: YES. 613cabdff1aSopenharmony_ci 614cabdff1aSopenharmony_ciGENERATE_DEPRECATEDLIST= YES 615cabdff1aSopenharmony_ci 616cabdff1aSopenharmony_ci# The ENABLED_SECTIONS tag can be used to enable conditional documentation 617cabdff1aSopenharmony_ci# sections, marked by \if <section_label> ... \endif and \cond <section_label> 618cabdff1aSopenharmony_ci# ... \endcond blocks. 619cabdff1aSopenharmony_ci 620cabdff1aSopenharmony_ciENABLED_SECTIONS = 621cabdff1aSopenharmony_ci 622cabdff1aSopenharmony_ci# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the 623cabdff1aSopenharmony_ci# initial value of a variable or macro / define can have for it to appear in the 624cabdff1aSopenharmony_ci# documentation. If the initializer consists of more lines than specified here 625cabdff1aSopenharmony_ci# it will be hidden. Use a value of 0 to hide initializers completely. The 626cabdff1aSopenharmony_ci# appearance of the value of individual variables and macros / defines can be 627cabdff1aSopenharmony_ci# controlled using \showinitializer or \hideinitializer command in the 628cabdff1aSopenharmony_ci# documentation regardless of this setting. 629cabdff1aSopenharmony_ci# Minimum value: 0, maximum value: 10000, default value: 30. 630cabdff1aSopenharmony_ci 631cabdff1aSopenharmony_ciMAX_INITIALIZER_LINES = 30 632cabdff1aSopenharmony_ci 633cabdff1aSopenharmony_ci# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at 634cabdff1aSopenharmony_ci# the bottom of the documentation of classes and structs. If set to YES the list 635cabdff1aSopenharmony_ci# will mention the files that were used to generate the documentation. 636cabdff1aSopenharmony_ci# The default value is: YES. 637cabdff1aSopenharmony_ci 638cabdff1aSopenharmony_ciSHOW_USED_FILES = YES 639cabdff1aSopenharmony_ci 640cabdff1aSopenharmony_ci# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This 641cabdff1aSopenharmony_ci# will remove the Files entry from the Quick Index and from the Folder Tree View 642cabdff1aSopenharmony_ci# (if specified). 643cabdff1aSopenharmony_ci# The default value is: YES. 644cabdff1aSopenharmony_ci 645cabdff1aSopenharmony_ciSHOW_FILES = YES 646cabdff1aSopenharmony_ci 647cabdff1aSopenharmony_ci# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces 648cabdff1aSopenharmony_ci# page. This will remove the Namespaces entry from the Quick Index and from the 649cabdff1aSopenharmony_ci# Folder Tree View (if specified). 650cabdff1aSopenharmony_ci# The default value is: YES. 651cabdff1aSopenharmony_ci 652cabdff1aSopenharmony_ciSHOW_NAMESPACES = YES 653cabdff1aSopenharmony_ci 654cabdff1aSopenharmony_ci# The FILE_VERSION_FILTER tag can be used to specify a program or script that 655cabdff1aSopenharmony_ci# doxygen should invoke to get the current version for each file (typically from 656cabdff1aSopenharmony_ci# the version control system). Doxygen will invoke the program by executing (via 657cabdff1aSopenharmony_ci# popen()) the command command input-file, where command is the value of the 658cabdff1aSopenharmony_ci# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided 659cabdff1aSopenharmony_ci# by doxygen. Whatever the program writes to standard output is used as the file 660cabdff1aSopenharmony_ci# version. For an example see the documentation. 661cabdff1aSopenharmony_ci 662cabdff1aSopenharmony_ciFILE_VERSION_FILTER = 663cabdff1aSopenharmony_ci 664cabdff1aSopenharmony_ci# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed 665cabdff1aSopenharmony_ci# by doxygen. The layout file controls the global structure of the generated 666cabdff1aSopenharmony_ci# output files in an output format independent way. To create the layout file 667cabdff1aSopenharmony_ci# that represents doxygen's defaults, run doxygen with the -l option. You can 668cabdff1aSopenharmony_ci# optionally specify a file name after the option, if omitted DoxygenLayout.xml 669cabdff1aSopenharmony_ci# will be used as the name of the layout file. 670cabdff1aSopenharmony_ci# 671cabdff1aSopenharmony_ci# Note that if you run doxygen from a directory containing a file called 672cabdff1aSopenharmony_ci# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE 673cabdff1aSopenharmony_ci# tag is left empty. 674cabdff1aSopenharmony_ci 675cabdff1aSopenharmony_ciLAYOUT_FILE = 676cabdff1aSopenharmony_ci 677cabdff1aSopenharmony_ci# The CITE_BIB_FILES tag can be used to specify one or more bib files containing 678cabdff1aSopenharmony_ci# the reference definitions. This must be a list of .bib files. The .bib 679cabdff1aSopenharmony_ci# extension is automatically appended if omitted. This requires the bibtex tool 680cabdff1aSopenharmony_ci# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. 681cabdff1aSopenharmony_ci# For LaTeX the style of the bibliography can be controlled using 682cabdff1aSopenharmony_ci# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the 683cabdff1aSopenharmony_ci# search path. See also \cite for info how to create references. 684cabdff1aSopenharmony_ci 685cabdff1aSopenharmony_ciCITE_BIB_FILES = 686cabdff1aSopenharmony_ci 687cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 688cabdff1aSopenharmony_ci# Configuration options related to warning and progress messages 689cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 690cabdff1aSopenharmony_ci 691cabdff1aSopenharmony_ci# The QUIET tag can be used to turn on/off the messages that are generated to 692cabdff1aSopenharmony_ci# standard output by doxygen. If QUIET is set to YES this implies that the 693cabdff1aSopenharmony_ci# messages are off. 694cabdff1aSopenharmony_ci# The default value is: NO. 695cabdff1aSopenharmony_ci 696cabdff1aSopenharmony_ciQUIET = YES 697cabdff1aSopenharmony_ci 698cabdff1aSopenharmony_ci# The WARNINGS tag can be used to turn on/off the warning messages that are 699cabdff1aSopenharmony_ci# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES 700cabdff1aSopenharmony_ci# this implies that the warnings are on. 701cabdff1aSopenharmony_ci# 702cabdff1aSopenharmony_ci# Tip: Turn warnings on while writing the documentation. 703cabdff1aSopenharmony_ci# The default value is: YES. 704cabdff1aSopenharmony_ci 705cabdff1aSopenharmony_ciWARNINGS = YES 706cabdff1aSopenharmony_ci 707cabdff1aSopenharmony_ci# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate 708cabdff1aSopenharmony_ci# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag 709cabdff1aSopenharmony_ci# will automatically be disabled. 710cabdff1aSopenharmony_ci# The default value is: YES. 711cabdff1aSopenharmony_ci 712cabdff1aSopenharmony_ciWARN_IF_UNDOCUMENTED = YES 713cabdff1aSopenharmony_ci 714cabdff1aSopenharmony_ci# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for 715cabdff1aSopenharmony_ci# potential errors in the documentation, such as not documenting some parameters 716cabdff1aSopenharmony_ci# in a documented function, or documenting parameters that don't exist or using 717cabdff1aSopenharmony_ci# markup commands wrongly. 718cabdff1aSopenharmony_ci# The default value is: YES. 719cabdff1aSopenharmony_ci 720cabdff1aSopenharmony_ciWARN_IF_DOC_ERROR = YES 721cabdff1aSopenharmony_ci 722cabdff1aSopenharmony_ci# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that 723cabdff1aSopenharmony_ci# are documented, but have no documentation for their parameters or return 724cabdff1aSopenharmony_ci# value. If set to NO doxygen will only warn about wrong or incomplete parameter 725cabdff1aSopenharmony_ci# documentation, but not about the absence of documentation. 726cabdff1aSopenharmony_ci# The default value is: NO. 727cabdff1aSopenharmony_ci 728cabdff1aSopenharmony_ciWARN_NO_PARAMDOC = NO 729cabdff1aSopenharmony_ci 730cabdff1aSopenharmony_ci# The WARN_FORMAT tag determines the format of the warning messages that doxygen 731cabdff1aSopenharmony_ci# can produce. The string should contain the $file, $line, and $text tags, which 732cabdff1aSopenharmony_ci# will be replaced by the file and line number from which the warning originated 733cabdff1aSopenharmony_ci# and the warning text. Optionally the format may contain $version, which will 734cabdff1aSopenharmony_ci# be replaced by the version of the file (if it could be obtained via 735cabdff1aSopenharmony_ci# FILE_VERSION_FILTER) 736cabdff1aSopenharmony_ci# The default value is: $file:$line: $text. 737cabdff1aSopenharmony_ci 738cabdff1aSopenharmony_ciWARN_FORMAT = "$file:$line: $text" 739cabdff1aSopenharmony_ci 740cabdff1aSopenharmony_ci# The WARN_LOGFILE tag can be used to specify a file to which warning and error 741cabdff1aSopenharmony_ci# messages should be written. If left blank the output is written to standard 742cabdff1aSopenharmony_ci# error (stderr). 743cabdff1aSopenharmony_ci 744cabdff1aSopenharmony_ciWARN_LOGFILE = 745cabdff1aSopenharmony_ci 746cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 747cabdff1aSopenharmony_ci# Configuration options related to the input files 748cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 749cabdff1aSopenharmony_ci 750cabdff1aSopenharmony_ci# The INPUT tag is used to specify the files and/or directories that contain 751cabdff1aSopenharmony_ci# documented source files. You may enter file names like myfile.cpp or 752cabdff1aSopenharmony_ci# directories like /usr/src/myproject. Separate the files or directories with 753cabdff1aSopenharmony_ci# spaces. 754cabdff1aSopenharmony_ci# Note: If this tag is empty the current directory is searched. 755cabdff1aSopenharmony_ci 756cabdff1aSopenharmony_ciINPUT = 757cabdff1aSopenharmony_ci 758cabdff1aSopenharmony_ci# This tag can be used to specify the character encoding of the source files 759cabdff1aSopenharmony_ci# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses 760cabdff1aSopenharmony_ci# libiconv (or the iconv built into libc) for the transcoding. See the libiconv 761cabdff1aSopenharmony_ci# documentation (see: http://www.gnu.org/software/libiconv) for the list of 762cabdff1aSopenharmony_ci# possible encodings. 763cabdff1aSopenharmony_ci# The default value is: UTF-8. 764cabdff1aSopenharmony_ci 765cabdff1aSopenharmony_ciINPUT_ENCODING = UTF-8 766cabdff1aSopenharmony_ci 767cabdff1aSopenharmony_ci# If the value of the INPUT tag contains directories, you can use the 768cabdff1aSopenharmony_ci# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and 769cabdff1aSopenharmony_ci# *.h) to filter out the source-files in the directories. If left blank the 770cabdff1aSopenharmony_ci# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, 771cabdff1aSopenharmony_ci# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, 772cabdff1aSopenharmony_ci# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, 773cabdff1aSopenharmony_ci# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, 774cabdff1aSopenharmony_ci# *.qsf, *.as and *.js. 775cabdff1aSopenharmony_ci 776cabdff1aSopenharmony_ciFILE_PATTERNS = 777cabdff1aSopenharmony_ci 778cabdff1aSopenharmony_ci# The RECURSIVE tag can be used to specify whether or not subdirectories should 779cabdff1aSopenharmony_ci# be searched for input files as well. 780cabdff1aSopenharmony_ci# The default value is: NO. 781cabdff1aSopenharmony_ci 782cabdff1aSopenharmony_ciRECURSIVE = YES 783cabdff1aSopenharmony_ci 784cabdff1aSopenharmony_ci# The EXCLUDE tag can be used to specify files and/or directories that should be 785cabdff1aSopenharmony_ci# excluded from the INPUT source files. This way you can easily exclude a 786cabdff1aSopenharmony_ci# subdirectory from a directory tree whose root is specified with the INPUT tag. 787cabdff1aSopenharmony_ci# 788cabdff1aSopenharmony_ci# Note that relative paths are relative to the directory from which doxygen is 789cabdff1aSopenharmony_ci# run. 790cabdff1aSopenharmony_ci 791cabdff1aSopenharmony_ciEXCLUDE = 792cabdff1aSopenharmony_ci 793cabdff1aSopenharmony_ci# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or 794cabdff1aSopenharmony_ci# directories that are symbolic links (a Unix file system feature) are excluded 795cabdff1aSopenharmony_ci# from the input. 796cabdff1aSopenharmony_ci# The default value is: NO. 797cabdff1aSopenharmony_ci 798cabdff1aSopenharmony_ciEXCLUDE_SYMLINKS = NO 799cabdff1aSopenharmony_ci 800cabdff1aSopenharmony_ci# If the value of the INPUT tag contains directories, you can use the 801cabdff1aSopenharmony_ci# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 802cabdff1aSopenharmony_ci# certain files from those directories. 803cabdff1aSopenharmony_ci# 804cabdff1aSopenharmony_ci# Note that the wildcards are matched against the file with absolute path, so to 805cabdff1aSopenharmony_ci# exclude all test directories for example use the pattern */test/* 806cabdff1aSopenharmony_ci 807cabdff1aSopenharmony_ciEXCLUDE_PATTERNS = *.git \ 808cabdff1aSopenharmony_ci *.d 809cabdff1aSopenharmony_ci 810cabdff1aSopenharmony_ci# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 811cabdff1aSopenharmony_ci# (namespaces, classes, functions, etc.) that should be excluded from the 812cabdff1aSopenharmony_ci# output. The symbol name can be a fully qualified name, a word, or if the 813cabdff1aSopenharmony_ci# wildcard * is used, a substring. Examples: ANamespace, AClass, 814cabdff1aSopenharmony_ci# AClass::ANamespace, ANamespace::*Test 815cabdff1aSopenharmony_ci# 816cabdff1aSopenharmony_ci# Note that the wildcards are matched against the file with absolute path, so to 817cabdff1aSopenharmony_ci# exclude all test directories use the pattern */test/* 818cabdff1aSopenharmony_ci 819cabdff1aSopenharmony_ciEXCLUDE_SYMBOLS = 820cabdff1aSopenharmony_ci 821cabdff1aSopenharmony_ci# The EXAMPLE_PATH tag can be used to specify one or more files or directories 822cabdff1aSopenharmony_ci# that contain example code fragments that are included (see the \include 823cabdff1aSopenharmony_ci# command). 824cabdff1aSopenharmony_ci 825cabdff1aSopenharmony_ciEXAMPLE_PATH = doc/examples/ tools/ 826cabdff1aSopenharmony_ci 827cabdff1aSopenharmony_ci# If the value of the EXAMPLE_PATH tag contains directories, you can use the 828cabdff1aSopenharmony_ci# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and 829cabdff1aSopenharmony_ci# *.h) to filter out the source-files in the directories. If left blank all 830cabdff1aSopenharmony_ci# files are included. 831cabdff1aSopenharmony_ci 832cabdff1aSopenharmony_ciEXAMPLE_PATTERNS = *.c 833cabdff1aSopenharmony_ci 834cabdff1aSopenharmony_ci# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 835cabdff1aSopenharmony_ci# searched for input files to be used with the \include or \dontinclude commands 836cabdff1aSopenharmony_ci# irrespective of the value of the RECURSIVE tag. 837cabdff1aSopenharmony_ci# The default value is: NO. 838cabdff1aSopenharmony_ci 839cabdff1aSopenharmony_ciEXAMPLE_RECURSIVE = NO 840cabdff1aSopenharmony_ci 841cabdff1aSopenharmony_ci# The IMAGE_PATH tag can be used to specify one or more files or directories 842cabdff1aSopenharmony_ci# that contain images that are to be included in the documentation (see the 843cabdff1aSopenharmony_ci# \image command). 844cabdff1aSopenharmony_ci 845cabdff1aSopenharmony_ciIMAGE_PATH = 846cabdff1aSopenharmony_ci 847cabdff1aSopenharmony_ci# The INPUT_FILTER tag can be used to specify a program that doxygen should 848cabdff1aSopenharmony_ci# invoke to filter for each input file. Doxygen will invoke the filter program 849cabdff1aSopenharmony_ci# by executing (via popen()) the command: 850cabdff1aSopenharmony_ci# 851cabdff1aSopenharmony_ci# <filter> <input-file> 852cabdff1aSopenharmony_ci# 853cabdff1aSopenharmony_ci# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the 854cabdff1aSopenharmony_ci# name of an input file. Doxygen will then use the output that the filter 855cabdff1aSopenharmony_ci# program writes to standard output. If FILTER_PATTERNS is specified, this tag 856cabdff1aSopenharmony_ci# will be ignored. 857cabdff1aSopenharmony_ci# 858cabdff1aSopenharmony_ci# Note that the filter must not add or remove lines; it is applied before the 859cabdff1aSopenharmony_ci# code is scanned, but not when the output code is generated. If lines are added 860cabdff1aSopenharmony_ci# or removed, the anchors will not be placed correctly. 861cabdff1aSopenharmony_ci 862cabdff1aSopenharmony_ciINPUT_FILTER = 863cabdff1aSopenharmony_ci 864cabdff1aSopenharmony_ci# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 865cabdff1aSopenharmony_ci# basis. Doxygen will compare the file name with each pattern and apply the 866cabdff1aSopenharmony_ci# filter if there is a match. The filters are a list of the form: pattern=filter 867cabdff1aSopenharmony_ci# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how 868cabdff1aSopenharmony_ci# filters are used. If the FILTER_PATTERNS tag is empty or if none of the 869cabdff1aSopenharmony_ci# patterns match the file name, INPUT_FILTER is applied. 870cabdff1aSopenharmony_ci 871cabdff1aSopenharmony_ciFILTER_PATTERNS = 872cabdff1aSopenharmony_ci 873cabdff1aSopenharmony_ci# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 874cabdff1aSopenharmony_ci# INPUT_FILTER ) will also be used to filter the input files that are used for 875cabdff1aSopenharmony_ci# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). 876cabdff1aSopenharmony_ci# The default value is: NO. 877cabdff1aSopenharmony_ci 878cabdff1aSopenharmony_ciFILTER_SOURCE_FILES = NO 879cabdff1aSopenharmony_ci 880cabdff1aSopenharmony_ci# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file 881cabdff1aSopenharmony_ci# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and 882cabdff1aSopenharmony_ci# it is also possible to disable source filtering for a specific pattern using 883cabdff1aSopenharmony_ci# *.ext= (so without naming a filter). 884cabdff1aSopenharmony_ci# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. 885cabdff1aSopenharmony_ci 886cabdff1aSopenharmony_ciFILTER_SOURCE_PATTERNS = 887cabdff1aSopenharmony_ci 888cabdff1aSopenharmony_ci# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that 889cabdff1aSopenharmony_ci# is part of the input, its contents will be placed on the main page 890cabdff1aSopenharmony_ci# (index.html). This can be useful if you have a project on for instance GitHub 891cabdff1aSopenharmony_ci# and want to reuse the introduction page also for the doxygen output. 892cabdff1aSopenharmony_ci 893cabdff1aSopenharmony_ciUSE_MDFILE_AS_MAINPAGE = 894cabdff1aSopenharmony_ci 895cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 896cabdff1aSopenharmony_ci# Configuration options related to source browsing 897cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 898cabdff1aSopenharmony_ci 899cabdff1aSopenharmony_ci# If the SOURCE_BROWSER tag is set to YES then a list of source files will be 900cabdff1aSopenharmony_ci# generated. Documented entities will be cross-referenced with these sources. 901cabdff1aSopenharmony_ci# 902cabdff1aSopenharmony_ci# Note: To get rid of all source code in the generated output, make sure that 903cabdff1aSopenharmony_ci# also VERBATIM_HEADERS is set to NO. 904cabdff1aSopenharmony_ci# The default value is: NO. 905cabdff1aSopenharmony_ci 906cabdff1aSopenharmony_ciSOURCE_BROWSER = YES 907cabdff1aSopenharmony_ci 908cabdff1aSopenharmony_ci# Setting the INLINE_SOURCES tag to YES will include the body of functions, 909cabdff1aSopenharmony_ci# classes and enums directly into the documentation. 910cabdff1aSopenharmony_ci# The default value is: NO. 911cabdff1aSopenharmony_ci 912cabdff1aSopenharmony_ciINLINE_SOURCES = NO 913cabdff1aSopenharmony_ci 914cabdff1aSopenharmony_ci# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any 915cabdff1aSopenharmony_ci# special comment blocks from generated source code fragments. Normal C, C++ and 916cabdff1aSopenharmony_ci# Fortran comments will always remain visible. 917cabdff1aSopenharmony_ci# The default value is: YES. 918cabdff1aSopenharmony_ci 919cabdff1aSopenharmony_ciSTRIP_CODE_COMMENTS = NO 920cabdff1aSopenharmony_ci 921cabdff1aSopenharmony_ci# If the REFERENCED_BY_RELATION tag is set to YES then for each documented 922cabdff1aSopenharmony_ci# function all documented functions referencing it will be listed. 923cabdff1aSopenharmony_ci# The default value is: NO. 924cabdff1aSopenharmony_ci 925cabdff1aSopenharmony_ciREFERENCED_BY_RELATION = YES 926cabdff1aSopenharmony_ci 927cabdff1aSopenharmony_ci# If the REFERENCES_RELATION tag is set to YES then for each documented function 928cabdff1aSopenharmony_ci# all documented entities called/used by that function will be listed. 929cabdff1aSopenharmony_ci# The default value is: NO. 930cabdff1aSopenharmony_ci 931cabdff1aSopenharmony_ciREFERENCES_RELATION = NO 932cabdff1aSopenharmony_ci 933cabdff1aSopenharmony_ci# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set 934cabdff1aSopenharmony_ci# to YES, then the hyperlinks from functions in REFERENCES_RELATION and 935cabdff1aSopenharmony_ci# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will 936cabdff1aSopenharmony_ci# link to the documentation. 937cabdff1aSopenharmony_ci# The default value is: YES. 938cabdff1aSopenharmony_ci 939cabdff1aSopenharmony_ciREFERENCES_LINK_SOURCE = YES 940cabdff1aSopenharmony_ci 941cabdff1aSopenharmony_ci# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the 942cabdff1aSopenharmony_ci# source code will show a tooltip with additional information such as prototype, 943cabdff1aSopenharmony_ci# brief description and links to the definition and documentation. Since this 944cabdff1aSopenharmony_ci# will make the HTML file larger and loading of large files a bit slower, you 945cabdff1aSopenharmony_ci# can opt to disable this feature. 946cabdff1aSopenharmony_ci# The default value is: YES. 947cabdff1aSopenharmony_ci# This tag requires that the tag SOURCE_BROWSER is set to YES. 948cabdff1aSopenharmony_ci 949cabdff1aSopenharmony_ciSOURCE_TOOLTIPS = YES 950cabdff1aSopenharmony_ci 951cabdff1aSopenharmony_ci# If the USE_HTAGS tag is set to YES then the references to source code will 952cabdff1aSopenharmony_ci# point to the HTML generated by the htags(1) tool instead of doxygen built-in 953cabdff1aSopenharmony_ci# source browser. The htags tool is part of GNU's global source tagging system 954cabdff1aSopenharmony_ci# (see http://www.gnu.org/software/global/global.html). You will need version 955cabdff1aSopenharmony_ci# 4.8.6 or higher. 956cabdff1aSopenharmony_ci# 957cabdff1aSopenharmony_ci# To use it do the following: 958cabdff1aSopenharmony_ci# - Install the latest version of global 959cabdff1aSopenharmony_ci# - Enable SOURCE_BROWSER and USE_HTAGS in the config file 960cabdff1aSopenharmony_ci# - Make sure the INPUT points to the root of the source tree 961cabdff1aSopenharmony_ci# - Run doxygen as normal 962cabdff1aSopenharmony_ci# 963cabdff1aSopenharmony_ci# Doxygen will invoke htags (and that will in turn invoke gtags), so these 964cabdff1aSopenharmony_ci# tools must be available from the command line (i.e. in the search path). 965cabdff1aSopenharmony_ci# 966cabdff1aSopenharmony_ci# The result: instead of the source browser generated by doxygen, the links to 967cabdff1aSopenharmony_ci# source code will now point to the output of htags. 968cabdff1aSopenharmony_ci# The default value is: NO. 969cabdff1aSopenharmony_ci# This tag requires that the tag SOURCE_BROWSER is set to YES. 970cabdff1aSopenharmony_ci 971cabdff1aSopenharmony_ciUSE_HTAGS = NO 972cabdff1aSopenharmony_ci 973cabdff1aSopenharmony_ci# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a 974cabdff1aSopenharmony_ci# verbatim copy of the header file for each class for which an include is 975cabdff1aSopenharmony_ci# specified. Set to NO to disable this. 976cabdff1aSopenharmony_ci# See also: Section \class. 977cabdff1aSopenharmony_ci# The default value is: YES. 978cabdff1aSopenharmony_ci 979cabdff1aSopenharmony_ciVERBATIM_HEADERS = YES 980cabdff1aSopenharmony_ci 981cabdff1aSopenharmony_ci# If the CLANG_ASSISTED_PARSING tag is set to YES, then doxygen will use the 982cabdff1aSopenharmony_ci# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the 983cabdff1aSopenharmony_ci# cost of reduced performance. This can be particularly helpful with template 984cabdff1aSopenharmony_ci# rich C++ code for which doxygen's built-in parser lacks the necessary type 985cabdff1aSopenharmony_ci# information. 986cabdff1aSopenharmony_ci# Note: The availability of this option depends on whether or not doxygen was 987cabdff1aSopenharmony_ci# compiled with the --with-libclang option. 988cabdff1aSopenharmony_ci# The default value is: NO. 989cabdff1aSopenharmony_ci 990cabdff1aSopenharmony_ciCLANG_ASSISTED_PARSING = NO 991cabdff1aSopenharmony_ci 992cabdff1aSopenharmony_ci# If clang assisted parsing is enabled you can provide the compiler with command 993cabdff1aSopenharmony_ci# line options that you would normally use when invoking the compiler. Note that 994cabdff1aSopenharmony_ci# the include paths will already be set by doxygen for the files and directories 995cabdff1aSopenharmony_ci# specified with INPUT and INCLUDE_PATH. 996cabdff1aSopenharmony_ci# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. 997cabdff1aSopenharmony_ci 998cabdff1aSopenharmony_ciCLANG_OPTIONS = 999cabdff1aSopenharmony_ci 1000cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1001cabdff1aSopenharmony_ci# Configuration options related to the alphabetical class index 1002cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1003cabdff1aSopenharmony_ci 1004cabdff1aSopenharmony_ci# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all 1005cabdff1aSopenharmony_ci# compounds will be generated. Enable this if the project contains a lot of 1006cabdff1aSopenharmony_ci# classes, structs, unions or interfaces. 1007cabdff1aSopenharmony_ci# The default value is: YES. 1008cabdff1aSopenharmony_ci 1009cabdff1aSopenharmony_ciALPHABETICAL_INDEX = YES 1010cabdff1aSopenharmony_ci 1011cabdff1aSopenharmony_ci# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in 1012cabdff1aSopenharmony_ci# which the alphabetical index list will be split. 1013cabdff1aSopenharmony_ci# Minimum value: 1, maximum value: 20, default value: 5. 1014cabdff1aSopenharmony_ci# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. 1015cabdff1aSopenharmony_ci 1016cabdff1aSopenharmony_ciCOLS_IN_ALPHA_INDEX = 5 1017cabdff1aSopenharmony_ci 1018cabdff1aSopenharmony_ci# In case all classes in a project start with a common prefix, all classes will 1019cabdff1aSopenharmony_ci# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag 1020cabdff1aSopenharmony_ci# can be used to specify a prefix (or a list of prefixes) that should be ignored 1021cabdff1aSopenharmony_ci# while generating the index headers. 1022cabdff1aSopenharmony_ci# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. 1023cabdff1aSopenharmony_ci 1024cabdff1aSopenharmony_ciIGNORE_PREFIX = 1025cabdff1aSopenharmony_ci 1026cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1027cabdff1aSopenharmony_ci# Configuration options related to the HTML output 1028cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1029cabdff1aSopenharmony_ci 1030cabdff1aSopenharmony_ci# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output 1031cabdff1aSopenharmony_ci# The default value is: YES. 1032cabdff1aSopenharmony_ci 1033cabdff1aSopenharmony_ciGENERATE_HTML = YES 1034cabdff1aSopenharmony_ci 1035cabdff1aSopenharmony_ci# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a 1036cabdff1aSopenharmony_ci# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1037cabdff1aSopenharmony_ci# it. 1038cabdff1aSopenharmony_ci# The default directory is: html. 1039cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1040cabdff1aSopenharmony_ci 1041cabdff1aSopenharmony_ciHTML_OUTPUT = html 1042cabdff1aSopenharmony_ci 1043cabdff1aSopenharmony_ci# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each 1044cabdff1aSopenharmony_ci# generated HTML page (for example: .htm, .php, .asp). 1045cabdff1aSopenharmony_ci# The default value is: .html. 1046cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1047cabdff1aSopenharmony_ci 1048cabdff1aSopenharmony_ciHTML_FILE_EXTENSION = .html 1049cabdff1aSopenharmony_ci 1050cabdff1aSopenharmony_ci# The HTML_HEADER tag can be used to specify a user-defined HTML header file for 1051cabdff1aSopenharmony_ci# each generated HTML page. If the tag is left blank doxygen will generate a 1052cabdff1aSopenharmony_ci# standard header. 1053cabdff1aSopenharmony_ci# 1054cabdff1aSopenharmony_ci# To get valid HTML the header file that includes any scripts and style sheets 1055cabdff1aSopenharmony_ci# that doxygen needs, which is dependent on the configuration options used (e.g. 1056cabdff1aSopenharmony_ci# the setting GENERATE_TREEVIEW). It is highly recommended to start with a 1057cabdff1aSopenharmony_ci# default header using 1058cabdff1aSopenharmony_ci# doxygen -w html new_header.html new_footer.html new_stylesheet.css 1059cabdff1aSopenharmony_ci# YourConfigFile 1060cabdff1aSopenharmony_ci# and then modify the file new_header.html. See also section "Doxygen usage" 1061cabdff1aSopenharmony_ci# for information on how to generate the default header that doxygen normally 1062cabdff1aSopenharmony_ci# uses. 1063cabdff1aSopenharmony_ci# Note: The header is subject to change so you typically have to regenerate the 1064cabdff1aSopenharmony_ci# default header when upgrading to a newer version of doxygen. For a description 1065cabdff1aSopenharmony_ci# of the possible markers and block names see the documentation. 1066cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1067cabdff1aSopenharmony_ci 1068cabdff1aSopenharmony_ciHTML_HEADER = 1069cabdff1aSopenharmony_ci 1070cabdff1aSopenharmony_ci# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each 1071cabdff1aSopenharmony_ci# generated HTML page. If the tag is left blank doxygen will generate a standard 1072cabdff1aSopenharmony_ci# footer. See HTML_HEADER for more information on how to generate a default 1073cabdff1aSopenharmony_ci# footer and what special commands can be used inside the footer. See also 1074cabdff1aSopenharmony_ci# section "Doxygen usage" for information on how to generate the default footer 1075cabdff1aSopenharmony_ci# that doxygen normally uses. 1076cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1077cabdff1aSopenharmony_ci 1078cabdff1aSopenharmony_ciHTML_FOOTER = 1079cabdff1aSopenharmony_ci 1080cabdff1aSopenharmony_ci# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style 1081cabdff1aSopenharmony_ci# sheet that is used by each HTML page. It can be used to fine-tune the look of 1082cabdff1aSopenharmony_ci# the HTML output. If left blank doxygen will generate a default style sheet. 1083cabdff1aSopenharmony_ci# See also section "Doxygen usage" for information on how to generate the style 1084cabdff1aSopenharmony_ci# sheet that doxygen normally uses. 1085cabdff1aSopenharmony_ci# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as 1086cabdff1aSopenharmony_ci# it is more robust and this tag (HTML_STYLESHEET) will in the future become 1087cabdff1aSopenharmony_ci# obsolete. 1088cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1089cabdff1aSopenharmony_ci 1090cabdff1aSopenharmony_ciHTML_STYLESHEET = 1091cabdff1aSopenharmony_ci 1092cabdff1aSopenharmony_ci# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined 1093cabdff1aSopenharmony_ci# cascading style sheets that are included after the standard style sheets 1094cabdff1aSopenharmony_ci# created by doxygen. Using this option one can overrule certain style aspects. 1095cabdff1aSopenharmony_ci# This is preferred over using HTML_STYLESHEET since it does not replace the 1096cabdff1aSopenharmony_ci# standard style sheet and is therefor more robust against future updates. 1097cabdff1aSopenharmony_ci# Doxygen will copy the style sheet files to the output directory. 1098cabdff1aSopenharmony_ci# Note: The order of the extra stylesheet files is of importance (e.g. the last 1099cabdff1aSopenharmony_ci# stylesheet in the list overrules the setting of the previous ones in the 1100cabdff1aSopenharmony_ci# list). For an example see the documentation. 1101cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1102cabdff1aSopenharmony_ci 1103cabdff1aSopenharmony_ciHTML_EXTRA_STYLESHEET = 1104cabdff1aSopenharmony_ci 1105cabdff1aSopenharmony_ci# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or 1106cabdff1aSopenharmony_ci# other source files which should be copied to the HTML output directory. Note 1107cabdff1aSopenharmony_ci# that these files will be copied to the base HTML output directory. Use the 1108cabdff1aSopenharmony_ci# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these 1109cabdff1aSopenharmony_ci# files. In the HTML_STYLESHEET file, use the file name only. Also note that the 1110cabdff1aSopenharmony_ci# files will be copied as-is; there are no commands or markers available. 1111cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1112cabdff1aSopenharmony_ci 1113cabdff1aSopenharmony_ciHTML_EXTRA_FILES = 1114cabdff1aSopenharmony_ci 1115cabdff1aSopenharmony_ci# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen 1116cabdff1aSopenharmony_ci# will adjust the colors in the stylesheet and background images according to 1117cabdff1aSopenharmony_ci# this color. Hue is specified as an angle on a colorwheel, see 1118cabdff1aSopenharmony_ci# http://en.wikipedia.org/wiki/Hue for more information. For instance the value 1119cabdff1aSopenharmony_ci# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 1120cabdff1aSopenharmony_ci# purple, and 360 is red again. 1121cabdff1aSopenharmony_ci# Minimum value: 0, maximum value: 359, default value: 220. 1122cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1123cabdff1aSopenharmony_ci 1124cabdff1aSopenharmony_ciHTML_COLORSTYLE_HUE = 220 1125cabdff1aSopenharmony_ci 1126cabdff1aSopenharmony_ci# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors 1127cabdff1aSopenharmony_ci# in the HTML output. For a value of 0 the output will use grayscales only. A 1128cabdff1aSopenharmony_ci# value of 255 will produce the most vivid colors. 1129cabdff1aSopenharmony_ci# Minimum value: 0, maximum value: 255, default value: 100. 1130cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1131cabdff1aSopenharmony_ci 1132cabdff1aSopenharmony_ciHTML_COLORSTYLE_SAT = 100 1133cabdff1aSopenharmony_ci 1134cabdff1aSopenharmony_ci# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the 1135cabdff1aSopenharmony_ci# luminance component of the colors in the HTML output. Values below 100 1136cabdff1aSopenharmony_ci# gradually make the output lighter, whereas values above 100 make the output 1137cabdff1aSopenharmony_ci# darker. The value divided by 100 is the actual gamma applied, so 80 represents 1138cabdff1aSopenharmony_ci# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not 1139cabdff1aSopenharmony_ci# change the gamma. 1140cabdff1aSopenharmony_ci# Minimum value: 40, maximum value: 240, default value: 80. 1141cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1142cabdff1aSopenharmony_ci 1143cabdff1aSopenharmony_ciHTML_COLORSTYLE_GAMMA = 80 1144cabdff1aSopenharmony_ci 1145cabdff1aSopenharmony_ci# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1146cabdff1aSopenharmony_ci# page will contain the date and time when the page was generated. Setting this 1147cabdff1aSopenharmony_ci# to NO can help when comparing the output of multiple runs. 1148cabdff1aSopenharmony_ci# The default value is: YES. 1149cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1150cabdff1aSopenharmony_ci 1151cabdff1aSopenharmony_ciHTML_TIMESTAMP = YES 1152cabdff1aSopenharmony_ci 1153cabdff1aSopenharmony_ci# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 1154cabdff1aSopenharmony_ci# documentation will contain sections that can be hidden and shown after the 1155cabdff1aSopenharmony_ci# page has loaded. 1156cabdff1aSopenharmony_ci# The default value is: NO. 1157cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1158cabdff1aSopenharmony_ci 1159cabdff1aSopenharmony_ciHTML_DYNAMIC_SECTIONS = NO 1160cabdff1aSopenharmony_ci 1161cabdff1aSopenharmony_ci# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries 1162cabdff1aSopenharmony_ci# shown in the various tree structured indices initially; the user can expand 1163cabdff1aSopenharmony_ci# and collapse entries dynamically later on. Doxygen will expand the tree to 1164cabdff1aSopenharmony_ci# such a level that at most the specified number of entries are visible (unless 1165cabdff1aSopenharmony_ci# a fully collapsed tree already exceeds this amount). So setting the number of 1166cabdff1aSopenharmony_ci# entries 1 will produce a full collapsed tree by default. 0 is a special value 1167cabdff1aSopenharmony_ci# representing an infinite number of entries and will result in a full expanded 1168cabdff1aSopenharmony_ci# tree by default. 1169cabdff1aSopenharmony_ci# Minimum value: 0, maximum value: 9999, default value: 100. 1170cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1171cabdff1aSopenharmony_ci 1172cabdff1aSopenharmony_ciHTML_INDEX_NUM_ENTRIES = 100 1173cabdff1aSopenharmony_ci 1174cabdff1aSopenharmony_ci# If the GENERATE_DOCSET tag is set to YES, additional index files will be 1175cabdff1aSopenharmony_ci# generated that can be used as input for Apple's Xcode 3 integrated development 1176cabdff1aSopenharmony_ci# environment (see: http://developer.apple.com/tools/xcode/), introduced with 1177cabdff1aSopenharmony_ci# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a 1178cabdff1aSopenharmony_ci# Makefile in the HTML output directory. Running make will produce the docset in 1179cabdff1aSopenharmony_ci# that directory and running make install will install the docset in 1180cabdff1aSopenharmony_ci# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at 1181cabdff1aSopenharmony_ci# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html 1182cabdff1aSopenharmony_ci# for more information. 1183cabdff1aSopenharmony_ci# The default value is: NO. 1184cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1185cabdff1aSopenharmony_ci 1186cabdff1aSopenharmony_ciGENERATE_DOCSET = NO 1187cabdff1aSopenharmony_ci 1188cabdff1aSopenharmony_ci# This tag determines the name of the docset feed. A documentation feed provides 1189cabdff1aSopenharmony_ci# an umbrella under which multiple documentation sets from a single provider 1190cabdff1aSopenharmony_ci# (such as a company or product suite) can be grouped. 1191cabdff1aSopenharmony_ci# The default value is: Doxygen generated docs. 1192cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_DOCSET is set to YES. 1193cabdff1aSopenharmony_ci 1194cabdff1aSopenharmony_ciDOCSET_FEEDNAME = "Doxygen generated docs" 1195cabdff1aSopenharmony_ci 1196cabdff1aSopenharmony_ci# This tag specifies a string that should uniquely identify the documentation 1197cabdff1aSopenharmony_ci# set bundle. This should be a reverse domain-name style string, e.g. 1198cabdff1aSopenharmony_ci# com.mycompany.MyDocSet. Doxygen will append .docset to the name. 1199cabdff1aSopenharmony_ci# The default value is: org.doxygen.Project. 1200cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_DOCSET is set to YES. 1201cabdff1aSopenharmony_ci 1202cabdff1aSopenharmony_ciDOCSET_BUNDLE_ID = org.doxygen.Project 1203cabdff1aSopenharmony_ci 1204cabdff1aSopenharmony_ci# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify 1205cabdff1aSopenharmony_ci# the documentation publisher. This should be a reverse domain-name style 1206cabdff1aSopenharmony_ci# string, e.g. com.mycompany.MyDocSet.documentation. 1207cabdff1aSopenharmony_ci# The default value is: org.doxygen.Publisher. 1208cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_DOCSET is set to YES. 1209cabdff1aSopenharmony_ci 1210cabdff1aSopenharmony_ciDOCSET_PUBLISHER_ID = org.doxygen.Publisher 1211cabdff1aSopenharmony_ci 1212cabdff1aSopenharmony_ci# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. 1213cabdff1aSopenharmony_ci# The default value is: Publisher. 1214cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_DOCSET is set to YES. 1215cabdff1aSopenharmony_ci 1216cabdff1aSopenharmony_ciDOCSET_PUBLISHER_NAME = Publisher 1217cabdff1aSopenharmony_ci 1218cabdff1aSopenharmony_ci# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three 1219cabdff1aSopenharmony_ci# additional HTML index files: index.hhp, index.hhc, and index.hhk. The 1220cabdff1aSopenharmony_ci# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop 1221cabdff1aSopenharmony_ci# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on 1222cabdff1aSopenharmony_ci# Windows. 1223cabdff1aSopenharmony_ci# 1224cabdff1aSopenharmony_ci# The HTML Help Workshop contains a compiler that can convert all HTML output 1225cabdff1aSopenharmony_ci# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML 1226cabdff1aSopenharmony_ci# files are now used as the Windows 98 help format, and will replace the old 1227cabdff1aSopenharmony_ci# Windows help format (.hlp) on all Windows platforms in the future. Compressed 1228cabdff1aSopenharmony_ci# HTML files also contain an index, a table of contents, and you can search for 1229cabdff1aSopenharmony_ci# words in the documentation. The HTML workshop also contains a viewer for 1230cabdff1aSopenharmony_ci# compressed HTML files. 1231cabdff1aSopenharmony_ci# The default value is: NO. 1232cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1233cabdff1aSopenharmony_ci 1234cabdff1aSopenharmony_ciGENERATE_HTMLHELP = NO 1235cabdff1aSopenharmony_ci 1236cabdff1aSopenharmony_ci# The CHM_FILE tag can be used to specify the file name of the resulting .chm 1237cabdff1aSopenharmony_ci# file. You can add a path in front of the file if the result should not be 1238cabdff1aSopenharmony_ci# written to the html output directory. 1239cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1240cabdff1aSopenharmony_ci 1241cabdff1aSopenharmony_ciCHM_FILE = 1242cabdff1aSopenharmony_ci 1243cabdff1aSopenharmony_ci# The HHC_LOCATION tag can be used to specify the location (absolute path 1244cabdff1aSopenharmony_ci# including file name) of the HTML help compiler ( hhc.exe). If non-empty 1245cabdff1aSopenharmony_ci# doxygen will try to run the HTML help compiler on the generated index.hhp. 1246cabdff1aSopenharmony_ci# The file has to be specified with full path. 1247cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1248cabdff1aSopenharmony_ci 1249cabdff1aSopenharmony_ciHHC_LOCATION = 1250cabdff1aSopenharmony_ci 1251cabdff1aSopenharmony_ci# The GENERATE_CHI flag controls if a separate .chi index file is generated ( 1252cabdff1aSopenharmony_ci# YES) or that it should be included in the master .chm file ( NO). 1253cabdff1aSopenharmony_ci# The default value is: NO. 1254cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1255cabdff1aSopenharmony_ci 1256cabdff1aSopenharmony_ciGENERATE_CHI = NO 1257cabdff1aSopenharmony_ci 1258cabdff1aSopenharmony_ci# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) 1259cabdff1aSopenharmony_ci# and project file content. 1260cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1261cabdff1aSopenharmony_ci 1262cabdff1aSopenharmony_ciCHM_INDEX_ENCODING = 1263cabdff1aSopenharmony_ci 1264cabdff1aSopenharmony_ci# The BINARY_TOC flag controls whether a binary table of contents is generated ( 1265cabdff1aSopenharmony_ci# YES) or a normal table of contents ( NO) in the .chm file. Furthermore it 1266cabdff1aSopenharmony_ci# enables the Previous and Next buttons. 1267cabdff1aSopenharmony_ci# The default value is: NO. 1268cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1269cabdff1aSopenharmony_ci 1270cabdff1aSopenharmony_ciBINARY_TOC = NO 1271cabdff1aSopenharmony_ci 1272cabdff1aSopenharmony_ci# The TOC_EXPAND flag can be set to YES to add extra items for group members to 1273cabdff1aSopenharmony_ci# the table of contents of the HTML help documentation and to the tree view. 1274cabdff1aSopenharmony_ci# The default value is: NO. 1275cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1276cabdff1aSopenharmony_ci 1277cabdff1aSopenharmony_ciTOC_EXPAND = NO 1278cabdff1aSopenharmony_ci 1279cabdff1aSopenharmony_ci# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and 1280cabdff1aSopenharmony_ci# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that 1281cabdff1aSopenharmony_ci# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help 1282cabdff1aSopenharmony_ci# (.qch) of the generated HTML documentation. 1283cabdff1aSopenharmony_ci# The default value is: NO. 1284cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1285cabdff1aSopenharmony_ci 1286cabdff1aSopenharmony_ciGENERATE_QHP = NO 1287cabdff1aSopenharmony_ci 1288cabdff1aSopenharmony_ci# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify 1289cabdff1aSopenharmony_ci# the file name of the resulting .qch file. The path specified is relative to 1290cabdff1aSopenharmony_ci# the HTML output folder. 1291cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES. 1292cabdff1aSopenharmony_ci 1293cabdff1aSopenharmony_ciQCH_FILE = 1294cabdff1aSopenharmony_ci 1295cabdff1aSopenharmony_ci# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help 1296cabdff1aSopenharmony_ci# Project output. For more information please see Qt Help Project / Namespace 1297cabdff1aSopenharmony_ci# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). 1298cabdff1aSopenharmony_ci# The default value is: org.doxygen.Project. 1299cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES. 1300cabdff1aSopenharmony_ci 1301cabdff1aSopenharmony_ciQHP_NAMESPACE = org.doxygen.Project 1302cabdff1aSopenharmony_ci 1303cabdff1aSopenharmony_ci# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt 1304cabdff1aSopenharmony_ci# Help Project output. For more information please see Qt Help Project / Virtual 1305cabdff1aSopenharmony_ci# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- 1306cabdff1aSopenharmony_ci# folders). 1307cabdff1aSopenharmony_ci# The default value is: doc. 1308cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES. 1309cabdff1aSopenharmony_ci 1310cabdff1aSopenharmony_ciQHP_VIRTUAL_FOLDER = doc 1311cabdff1aSopenharmony_ci 1312cabdff1aSopenharmony_ci# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom 1313cabdff1aSopenharmony_ci# filter to add. For more information please see Qt Help Project / Custom 1314cabdff1aSopenharmony_ci# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- 1315cabdff1aSopenharmony_ci# filters). 1316cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES. 1317cabdff1aSopenharmony_ci 1318cabdff1aSopenharmony_ciQHP_CUST_FILTER_NAME = 1319cabdff1aSopenharmony_ci 1320cabdff1aSopenharmony_ci# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the 1321cabdff1aSopenharmony_ci# custom filter to add. For more information please see Qt Help Project / Custom 1322cabdff1aSopenharmony_ci# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- 1323cabdff1aSopenharmony_ci# filters). 1324cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES. 1325cabdff1aSopenharmony_ci 1326cabdff1aSopenharmony_ciQHP_CUST_FILTER_ATTRS = 1327cabdff1aSopenharmony_ci 1328cabdff1aSopenharmony_ci# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this 1329cabdff1aSopenharmony_ci# project's filter section matches. Qt Help Project / Filter Attributes (see: 1330cabdff1aSopenharmony_ci# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). 1331cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES. 1332cabdff1aSopenharmony_ci 1333cabdff1aSopenharmony_ciQHP_SECT_FILTER_ATTRS = 1334cabdff1aSopenharmony_ci 1335cabdff1aSopenharmony_ci# The QHG_LOCATION tag can be used to specify the location of Qt's 1336cabdff1aSopenharmony_ci# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the 1337cabdff1aSopenharmony_ci# generated .qhp file. 1338cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES. 1339cabdff1aSopenharmony_ci 1340cabdff1aSopenharmony_ciQHG_LOCATION = 1341cabdff1aSopenharmony_ci 1342cabdff1aSopenharmony_ci# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be 1343cabdff1aSopenharmony_ci# generated, together with the HTML files, they form an Eclipse help plugin. To 1344cabdff1aSopenharmony_ci# install this plugin and make it available under the help contents menu in 1345cabdff1aSopenharmony_ci# Eclipse, the contents of the directory containing the HTML and XML files needs 1346cabdff1aSopenharmony_ci# to be copied into the plugins directory of eclipse. The name of the directory 1347cabdff1aSopenharmony_ci# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. 1348cabdff1aSopenharmony_ci# After copying Eclipse needs to be restarted before the help appears. 1349cabdff1aSopenharmony_ci# The default value is: NO. 1350cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1351cabdff1aSopenharmony_ci 1352cabdff1aSopenharmony_ciGENERATE_ECLIPSEHELP = NO 1353cabdff1aSopenharmony_ci 1354cabdff1aSopenharmony_ci# A unique identifier for the Eclipse help plugin. When installing the plugin 1355cabdff1aSopenharmony_ci# the directory name containing the HTML and XML files should also have this 1356cabdff1aSopenharmony_ci# name. Each documentation set should have its own identifier. 1357cabdff1aSopenharmony_ci# The default value is: org.doxygen.Project. 1358cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. 1359cabdff1aSopenharmony_ci 1360cabdff1aSopenharmony_ciECLIPSE_DOC_ID = org.doxygen.Project 1361cabdff1aSopenharmony_ci 1362cabdff1aSopenharmony_ci# If you want full control over the layout of the generated HTML pages it might 1363cabdff1aSopenharmony_ci# be necessary to disable the index and replace it with your own. The 1364cabdff1aSopenharmony_ci# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top 1365cabdff1aSopenharmony_ci# of each HTML page. A value of NO enables the index and the value YES disables 1366cabdff1aSopenharmony_ci# it. Since the tabs in the index contain the same information as the navigation 1367cabdff1aSopenharmony_ci# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. 1368cabdff1aSopenharmony_ci# The default value is: NO. 1369cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1370cabdff1aSopenharmony_ci 1371cabdff1aSopenharmony_ciDISABLE_INDEX = NO 1372cabdff1aSopenharmony_ci 1373cabdff1aSopenharmony_ci# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index 1374cabdff1aSopenharmony_ci# structure should be generated to display hierarchical information. If the tag 1375cabdff1aSopenharmony_ci# value is set to YES, a side panel will be generated containing a tree-like 1376cabdff1aSopenharmony_ci# index structure (just like the one that is generated for HTML Help). For this 1377cabdff1aSopenharmony_ci# to work a browser that supports JavaScript, DHTML, CSS and frames is required 1378cabdff1aSopenharmony_ci# (i.e. any modern browser). Windows users are probably better off using the 1379cabdff1aSopenharmony_ci# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can 1380cabdff1aSopenharmony_ci# further fine-tune the look of the index. As an example, the default style 1381cabdff1aSopenharmony_ci# sheet generated by doxygen has an example that shows how to put an image at 1382cabdff1aSopenharmony_ci# the root of the tree instead of the PROJECT_NAME. Since the tree basically has 1383cabdff1aSopenharmony_ci# the same information as the tab index, you could consider setting 1384cabdff1aSopenharmony_ci# DISABLE_INDEX to YES when enabling this option. 1385cabdff1aSopenharmony_ci# The default value is: NO. 1386cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1387cabdff1aSopenharmony_ci 1388cabdff1aSopenharmony_ciGENERATE_TREEVIEW = NO 1389cabdff1aSopenharmony_ci 1390cabdff1aSopenharmony_ci# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that 1391cabdff1aSopenharmony_ci# doxygen will group on one line in the generated HTML documentation. 1392cabdff1aSopenharmony_ci# 1393cabdff1aSopenharmony_ci# Note that a value of 0 will completely suppress the enum values from appearing 1394cabdff1aSopenharmony_ci# in the overview section. 1395cabdff1aSopenharmony_ci# Minimum value: 0, maximum value: 20, default value: 4. 1396cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1397cabdff1aSopenharmony_ci 1398cabdff1aSopenharmony_ciENUM_VALUES_PER_LINE = 4 1399cabdff1aSopenharmony_ci 1400cabdff1aSopenharmony_ci# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used 1401cabdff1aSopenharmony_ci# to set the initial width (in pixels) of the frame in which the tree is shown. 1402cabdff1aSopenharmony_ci# Minimum value: 0, maximum value: 1500, default value: 250. 1403cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1404cabdff1aSopenharmony_ci 1405cabdff1aSopenharmony_ciTREEVIEW_WIDTH = 250 1406cabdff1aSopenharmony_ci 1407cabdff1aSopenharmony_ci# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to 1408cabdff1aSopenharmony_ci# external symbols imported via tag files in a separate window. 1409cabdff1aSopenharmony_ci# The default value is: NO. 1410cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1411cabdff1aSopenharmony_ci 1412cabdff1aSopenharmony_ciEXT_LINKS_IN_WINDOW = NO 1413cabdff1aSopenharmony_ci 1414cabdff1aSopenharmony_ci# Use this tag to change the font size of LaTeX formulas included as images in 1415cabdff1aSopenharmony_ci# the HTML documentation. When you change the font size after a successful 1416cabdff1aSopenharmony_ci# doxygen run you need to manually remove any form_*.png images from the HTML 1417cabdff1aSopenharmony_ci# output directory to force them to be regenerated. 1418cabdff1aSopenharmony_ci# Minimum value: 8, maximum value: 50, default value: 10. 1419cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1420cabdff1aSopenharmony_ci 1421cabdff1aSopenharmony_ciFORMULA_FONTSIZE = 10 1422cabdff1aSopenharmony_ci 1423cabdff1aSopenharmony_ci# Use the FORMULA_TRANPARENT tag to determine whether or not the images 1424cabdff1aSopenharmony_ci# generated for formulas are transparent PNGs. Transparent PNGs are not 1425cabdff1aSopenharmony_ci# supported properly for IE 6.0, but are supported on all modern browsers. 1426cabdff1aSopenharmony_ci# 1427cabdff1aSopenharmony_ci# Note that when changing this option you need to delete any form_*.png files in 1428cabdff1aSopenharmony_ci# the HTML output directory before the changes have effect. 1429cabdff1aSopenharmony_ci# The default value is: YES. 1430cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1431cabdff1aSopenharmony_ci 1432cabdff1aSopenharmony_ciFORMULA_TRANSPARENT = YES 1433cabdff1aSopenharmony_ci 1434cabdff1aSopenharmony_ci# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see 1435cabdff1aSopenharmony_ci# http://www.mathjax.org) which uses client side Javascript for the rendering 1436cabdff1aSopenharmony_ci# instead of using prerendered bitmaps. Use this if you do not have LaTeX 1437cabdff1aSopenharmony_ci# installed or if you want to formulas look prettier in the HTML output. When 1438cabdff1aSopenharmony_ci# enabled you may also need to install MathJax separately and configure the path 1439cabdff1aSopenharmony_ci# to it using the MATHJAX_RELPATH option. 1440cabdff1aSopenharmony_ci# The default value is: NO. 1441cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1442cabdff1aSopenharmony_ci 1443cabdff1aSopenharmony_ciUSE_MATHJAX = NO 1444cabdff1aSopenharmony_ci 1445cabdff1aSopenharmony_ci# When MathJax is enabled you can set the default output format to be used for 1446cabdff1aSopenharmony_ci# the MathJax output. See the MathJax site (see: 1447cabdff1aSopenharmony_ci# http://docs.mathjax.org/en/latest/output.html) for more details. 1448cabdff1aSopenharmony_ci# Possible values are: HTML-CSS (which is slower, but has the best 1449cabdff1aSopenharmony_ci# compatibility), NativeMML (i.e. MathML) and SVG. 1450cabdff1aSopenharmony_ci# The default value is: HTML-CSS. 1451cabdff1aSopenharmony_ci# This tag requires that the tag USE_MATHJAX is set to YES. 1452cabdff1aSopenharmony_ci 1453cabdff1aSopenharmony_ciMATHJAX_FORMAT = HTML-CSS 1454cabdff1aSopenharmony_ci 1455cabdff1aSopenharmony_ci# When MathJax is enabled you need to specify the location relative to the HTML 1456cabdff1aSopenharmony_ci# output directory using the MATHJAX_RELPATH option. The destination directory 1457cabdff1aSopenharmony_ci# should contain the MathJax.js script. For instance, if the mathjax directory 1458cabdff1aSopenharmony_ci# is located at the same level as the HTML output directory, then 1459cabdff1aSopenharmony_ci# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax 1460cabdff1aSopenharmony_ci# Content Delivery Network so you can quickly see the result without installing 1461cabdff1aSopenharmony_ci# MathJax. However, it is strongly recommended to install a local copy of 1462cabdff1aSopenharmony_ci# MathJax from http://www.mathjax.org before deployment. 1463cabdff1aSopenharmony_ci# The default value is: http://cdn.mathjax.org/mathjax/latest. 1464cabdff1aSopenharmony_ci# This tag requires that the tag USE_MATHJAX is set to YES. 1465cabdff1aSopenharmony_ci 1466cabdff1aSopenharmony_ciMATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest 1467cabdff1aSopenharmony_ci 1468cabdff1aSopenharmony_ci# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax 1469cabdff1aSopenharmony_ci# extension names that should be enabled during MathJax rendering. For example 1470cabdff1aSopenharmony_ci# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols 1471cabdff1aSopenharmony_ci# This tag requires that the tag USE_MATHJAX is set to YES. 1472cabdff1aSopenharmony_ci 1473cabdff1aSopenharmony_ciMATHJAX_EXTENSIONS = 1474cabdff1aSopenharmony_ci 1475cabdff1aSopenharmony_ci# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces 1476cabdff1aSopenharmony_ci# of code that will be used on startup of the MathJax code. See the MathJax site 1477cabdff1aSopenharmony_ci# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an 1478cabdff1aSopenharmony_ci# example see the documentation. 1479cabdff1aSopenharmony_ci# This tag requires that the tag USE_MATHJAX is set to YES. 1480cabdff1aSopenharmony_ci 1481cabdff1aSopenharmony_ciMATHJAX_CODEFILE = 1482cabdff1aSopenharmony_ci 1483cabdff1aSopenharmony_ci# When the SEARCHENGINE tag is enabled doxygen will generate a search box for 1484cabdff1aSopenharmony_ci# the HTML output. The underlying search engine uses javascript and DHTML and 1485cabdff1aSopenharmony_ci# should work on any modern browser. Note that when using HTML help 1486cabdff1aSopenharmony_ci# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) 1487cabdff1aSopenharmony_ci# there is already a search function so this one should typically be disabled. 1488cabdff1aSopenharmony_ci# For large projects the javascript based search engine can be slow, then 1489cabdff1aSopenharmony_ci# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to 1490cabdff1aSopenharmony_ci# search using the keyboard; to jump to the search box use <access key> + S 1491cabdff1aSopenharmony_ci# (what the <access key> is depends on the OS and browser, but it is typically 1492cabdff1aSopenharmony_ci# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down 1493cabdff1aSopenharmony_ci# key> to jump into the search results window, the results can be navigated 1494cabdff1aSopenharmony_ci# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel 1495cabdff1aSopenharmony_ci# the search. The filter options can be selected when the cursor is inside the 1496cabdff1aSopenharmony_ci# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> 1497cabdff1aSopenharmony_ci# to select a filter and <Enter> or <escape> to activate or cancel the filter 1498cabdff1aSopenharmony_ci# option. 1499cabdff1aSopenharmony_ci# The default value is: YES. 1500cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES. 1501cabdff1aSopenharmony_ci 1502cabdff1aSopenharmony_ciSEARCHENGINE = YES 1503cabdff1aSopenharmony_ci 1504cabdff1aSopenharmony_ci# When the SERVER_BASED_SEARCH tag is enabled the search engine will be 1505cabdff1aSopenharmony_ci# implemented using a web server instead of a web client using Javascript. There 1506cabdff1aSopenharmony_ci# are two flavors of web server based searching depending on the EXTERNAL_SEARCH 1507cabdff1aSopenharmony_ci# setting. When disabled, doxygen will generate a PHP script for searching and 1508cabdff1aSopenharmony_ci# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing 1509cabdff1aSopenharmony_ci# and searching needs to be provided by external tools. See the section 1510cabdff1aSopenharmony_ci# "External Indexing and Searching" for details. 1511cabdff1aSopenharmony_ci# The default value is: NO. 1512cabdff1aSopenharmony_ci# This tag requires that the tag SEARCHENGINE is set to YES. 1513cabdff1aSopenharmony_ci 1514cabdff1aSopenharmony_ciSERVER_BASED_SEARCH = NO 1515cabdff1aSopenharmony_ci 1516cabdff1aSopenharmony_ci# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP 1517cabdff1aSopenharmony_ci# script for searching. Instead the search results are written to an XML file 1518cabdff1aSopenharmony_ci# which needs to be processed by an external indexer. Doxygen will invoke an 1519cabdff1aSopenharmony_ci# external search engine pointed to by the SEARCHENGINE_URL option to obtain the 1520cabdff1aSopenharmony_ci# search results. 1521cabdff1aSopenharmony_ci# 1522cabdff1aSopenharmony_ci# Doxygen ships with an example indexer ( doxyindexer) and search engine 1523cabdff1aSopenharmony_ci# (doxysearch.cgi) which are based on the open source search engine library 1524cabdff1aSopenharmony_ci# Xapian (see: http://xapian.org/). 1525cabdff1aSopenharmony_ci# 1526cabdff1aSopenharmony_ci# See the section "External Indexing and Searching" for details. 1527cabdff1aSopenharmony_ci# The default value is: NO. 1528cabdff1aSopenharmony_ci# This tag requires that the tag SEARCHENGINE is set to YES. 1529cabdff1aSopenharmony_ci 1530cabdff1aSopenharmony_ciEXTERNAL_SEARCH = NO 1531cabdff1aSopenharmony_ci 1532cabdff1aSopenharmony_ci# The SEARCHENGINE_URL should point to a search engine hosted by a web server 1533cabdff1aSopenharmony_ci# which will return the search results when EXTERNAL_SEARCH is enabled. 1534cabdff1aSopenharmony_ci# 1535cabdff1aSopenharmony_ci# Doxygen ships with an example indexer ( doxyindexer) and search engine 1536cabdff1aSopenharmony_ci# (doxysearch.cgi) which are based on the open source search engine library 1537cabdff1aSopenharmony_ci# Xapian (see: http://xapian.org/). See the section "External Indexing and 1538cabdff1aSopenharmony_ci# Searching" for details. 1539cabdff1aSopenharmony_ci# This tag requires that the tag SEARCHENGINE is set to YES. 1540cabdff1aSopenharmony_ci 1541cabdff1aSopenharmony_ciSEARCHENGINE_URL = 1542cabdff1aSopenharmony_ci 1543cabdff1aSopenharmony_ci# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed 1544cabdff1aSopenharmony_ci# search data is written to a file for indexing by an external tool. With the 1545cabdff1aSopenharmony_ci# SEARCHDATA_FILE tag the name of this file can be specified. 1546cabdff1aSopenharmony_ci# The default file is: searchdata.xml. 1547cabdff1aSopenharmony_ci# This tag requires that the tag SEARCHENGINE is set to YES. 1548cabdff1aSopenharmony_ci 1549cabdff1aSopenharmony_ciSEARCHDATA_FILE = searchdata.xml 1550cabdff1aSopenharmony_ci 1551cabdff1aSopenharmony_ci# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the 1552cabdff1aSopenharmony_ci# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is 1553cabdff1aSopenharmony_ci# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple 1554cabdff1aSopenharmony_ci# projects and redirect the results back to the right project. 1555cabdff1aSopenharmony_ci# This tag requires that the tag SEARCHENGINE is set to YES. 1556cabdff1aSopenharmony_ci 1557cabdff1aSopenharmony_ciEXTERNAL_SEARCH_ID = 1558cabdff1aSopenharmony_ci 1559cabdff1aSopenharmony_ci# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen 1560cabdff1aSopenharmony_ci# projects other than the one defined by this configuration file, but that are 1561cabdff1aSopenharmony_ci# all added to the same external search index. Each project needs to have a 1562cabdff1aSopenharmony_ci# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of 1563cabdff1aSopenharmony_ci# to a relative location where the documentation can be found. The format is: 1564cabdff1aSopenharmony_ci# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... 1565cabdff1aSopenharmony_ci# This tag requires that the tag SEARCHENGINE is set to YES. 1566cabdff1aSopenharmony_ci 1567cabdff1aSopenharmony_ciEXTRA_SEARCH_MAPPINGS = 1568cabdff1aSopenharmony_ci 1569cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1570cabdff1aSopenharmony_ci# Configuration options related to the LaTeX output 1571cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1572cabdff1aSopenharmony_ci 1573cabdff1aSopenharmony_ci# If the GENERATE_LATEX tag is set to YES doxygen will generate LaTeX output. 1574cabdff1aSopenharmony_ci# The default value is: YES. 1575cabdff1aSopenharmony_ci 1576cabdff1aSopenharmony_ciGENERATE_LATEX = NO 1577cabdff1aSopenharmony_ci 1578cabdff1aSopenharmony_ci# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a 1579cabdff1aSopenharmony_ci# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1580cabdff1aSopenharmony_ci# it. 1581cabdff1aSopenharmony_ci# The default directory is: latex. 1582cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1583cabdff1aSopenharmony_ci 1584cabdff1aSopenharmony_ciLATEX_OUTPUT = latex 1585cabdff1aSopenharmony_ci 1586cabdff1aSopenharmony_ci# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 1587cabdff1aSopenharmony_ci# invoked. 1588cabdff1aSopenharmony_ci# 1589cabdff1aSopenharmony_ci# Note that when enabling USE_PDFLATEX this option is only used for generating 1590cabdff1aSopenharmony_ci# bitmaps for formulas in the HTML output, but not in the Makefile that is 1591cabdff1aSopenharmony_ci# written to the output directory. 1592cabdff1aSopenharmony_ci# The default file is: latex. 1593cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1594cabdff1aSopenharmony_ci 1595cabdff1aSopenharmony_ciLATEX_CMD_NAME = latex 1596cabdff1aSopenharmony_ci 1597cabdff1aSopenharmony_ci# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate 1598cabdff1aSopenharmony_ci# index for LaTeX. 1599cabdff1aSopenharmony_ci# The default file is: makeindex. 1600cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1601cabdff1aSopenharmony_ci 1602cabdff1aSopenharmony_ciMAKEINDEX_CMD_NAME = makeindex 1603cabdff1aSopenharmony_ci 1604cabdff1aSopenharmony_ci# If the COMPACT_LATEX tag is set to YES doxygen generates more compact LaTeX 1605cabdff1aSopenharmony_ci# documents. This may be useful for small projects and may help to save some 1606cabdff1aSopenharmony_ci# trees in general. 1607cabdff1aSopenharmony_ci# The default value is: NO. 1608cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1609cabdff1aSopenharmony_ci 1610cabdff1aSopenharmony_ciCOMPACT_LATEX = NO 1611cabdff1aSopenharmony_ci 1612cabdff1aSopenharmony_ci# The PAPER_TYPE tag can be used to set the paper type that is used by the 1613cabdff1aSopenharmony_ci# printer. 1614cabdff1aSopenharmony_ci# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x 1615cabdff1aSopenharmony_ci# 14 inches) and executive (7.25 x 10.5 inches). 1616cabdff1aSopenharmony_ci# The default value is: a4. 1617cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1618cabdff1aSopenharmony_ci 1619cabdff1aSopenharmony_ciPAPER_TYPE = a4 1620cabdff1aSopenharmony_ci 1621cabdff1aSopenharmony_ci# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names 1622cabdff1aSopenharmony_ci# that should be included in the LaTeX output. To get the times font for 1623cabdff1aSopenharmony_ci# instance you can specify 1624cabdff1aSopenharmony_ci# EXTRA_PACKAGES=times 1625cabdff1aSopenharmony_ci# If left blank no extra packages will be included. 1626cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1627cabdff1aSopenharmony_ci 1628cabdff1aSopenharmony_ciEXTRA_PACKAGES = 1629cabdff1aSopenharmony_ci 1630cabdff1aSopenharmony_ci# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the 1631cabdff1aSopenharmony_ci# generated LaTeX document. The header should contain everything until the first 1632cabdff1aSopenharmony_ci# chapter. If it is left blank doxygen will generate a standard header. See 1633cabdff1aSopenharmony_ci# section "Doxygen usage" for information on how to let doxygen write the 1634cabdff1aSopenharmony_ci# default header to a separate file. 1635cabdff1aSopenharmony_ci# 1636cabdff1aSopenharmony_ci# Note: Only use a user-defined header if you know what you are doing! The 1637cabdff1aSopenharmony_ci# following commands have a special meaning inside the header: $title, 1638cabdff1aSopenharmony_ci# $datetime, $date, $doxygenversion, $projectname, $projectnumber, 1639cabdff1aSopenharmony_ci# $projectbrief, $projectlogo. Doxygen will replace $title with the empy string, 1640cabdff1aSopenharmony_ci# for the replacement values of the other commands the user is referred to 1641cabdff1aSopenharmony_ci# HTML_HEADER. 1642cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1643cabdff1aSopenharmony_ci 1644cabdff1aSopenharmony_ciLATEX_HEADER = 1645cabdff1aSopenharmony_ci 1646cabdff1aSopenharmony_ci# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the 1647cabdff1aSopenharmony_ci# generated LaTeX document. The footer should contain everything after the last 1648cabdff1aSopenharmony_ci# chapter. If it is left blank doxygen will generate a standard footer. See 1649cabdff1aSopenharmony_ci# LATEX_HEADER for more information on how to generate a default footer and what 1650cabdff1aSopenharmony_ci# special commands can be used inside the footer. 1651cabdff1aSopenharmony_ci# 1652cabdff1aSopenharmony_ci# Note: Only use a user-defined footer if you know what you are doing! 1653cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1654cabdff1aSopenharmony_ci 1655cabdff1aSopenharmony_ciLATEX_FOOTER = 1656cabdff1aSopenharmony_ci 1657cabdff1aSopenharmony_ci# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or 1658cabdff1aSopenharmony_ci# other source files which should be copied to the LATEX_OUTPUT output 1659cabdff1aSopenharmony_ci# directory. Note that the files will be copied as-is; there are no commands or 1660cabdff1aSopenharmony_ci# markers available. 1661cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1662cabdff1aSopenharmony_ci 1663cabdff1aSopenharmony_ciLATEX_EXTRA_FILES = 1664cabdff1aSopenharmony_ci 1665cabdff1aSopenharmony_ci# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is 1666cabdff1aSopenharmony_ci# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will 1667cabdff1aSopenharmony_ci# contain links (just like the HTML output) instead of page references. This 1668cabdff1aSopenharmony_ci# makes the output suitable for online browsing using a PDF viewer. 1669cabdff1aSopenharmony_ci# The default value is: YES. 1670cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1671cabdff1aSopenharmony_ci 1672cabdff1aSopenharmony_ciPDF_HYPERLINKS = YES 1673cabdff1aSopenharmony_ci 1674cabdff1aSopenharmony_ci# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate 1675cabdff1aSopenharmony_ci# the PDF file directly from the LaTeX files. Set this option to YES to get a 1676cabdff1aSopenharmony_ci# higher quality PDF documentation. 1677cabdff1aSopenharmony_ci# The default value is: YES. 1678cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1679cabdff1aSopenharmony_ci 1680cabdff1aSopenharmony_ciUSE_PDFLATEX = YES 1681cabdff1aSopenharmony_ci 1682cabdff1aSopenharmony_ci# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode 1683cabdff1aSopenharmony_ci# command to the generated LaTeX files. This will instruct LaTeX to keep running 1684cabdff1aSopenharmony_ci# if errors occur, instead of asking the user for help. This option is also used 1685cabdff1aSopenharmony_ci# when generating formulas in HTML. 1686cabdff1aSopenharmony_ci# The default value is: NO. 1687cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1688cabdff1aSopenharmony_ci 1689cabdff1aSopenharmony_ciLATEX_BATCHMODE = NO 1690cabdff1aSopenharmony_ci 1691cabdff1aSopenharmony_ci# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the 1692cabdff1aSopenharmony_ci# index chapters (such as File Index, Compound Index, etc.) in the output. 1693cabdff1aSopenharmony_ci# The default value is: NO. 1694cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1695cabdff1aSopenharmony_ci 1696cabdff1aSopenharmony_ciLATEX_HIDE_INDICES = NO 1697cabdff1aSopenharmony_ci 1698cabdff1aSopenharmony_ci# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source 1699cabdff1aSopenharmony_ci# code with syntax highlighting in the LaTeX output. 1700cabdff1aSopenharmony_ci# 1701cabdff1aSopenharmony_ci# Note that which sources are shown also depends on other settings such as 1702cabdff1aSopenharmony_ci# SOURCE_BROWSER. 1703cabdff1aSopenharmony_ci# The default value is: NO. 1704cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1705cabdff1aSopenharmony_ci 1706cabdff1aSopenharmony_ciLATEX_SOURCE_CODE = NO 1707cabdff1aSopenharmony_ci 1708cabdff1aSopenharmony_ci# The LATEX_BIB_STYLE tag can be used to specify the style to use for the 1709cabdff1aSopenharmony_ci# bibliography, e.g. plainnat, or ieeetr. See 1710cabdff1aSopenharmony_ci# http://en.wikipedia.org/wiki/BibTeX and \cite for more info. 1711cabdff1aSopenharmony_ci# The default value is: plain. 1712cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES. 1713cabdff1aSopenharmony_ci 1714cabdff1aSopenharmony_ciLATEX_BIB_STYLE = plain 1715cabdff1aSopenharmony_ci 1716cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1717cabdff1aSopenharmony_ci# Configuration options related to the RTF output 1718cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1719cabdff1aSopenharmony_ci 1720cabdff1aSopenharmony_ci# If the GENERATE_RTF tag is set to YES doxygen will generate RTF output. The 1721cabdff1aSopenharmony_ci# RTF output is optimized for Word 97 and may not look too pretty with other RTF 1722cabdff1aSopenharmony_ci# readers/editors. 1723cabdff1aSopenharmony_ci# The default value is: NO. 1724cabdff1aSopenharmony_ci 1725cabdff1aSopenharmony_ciGENERATE_RTF = NO 1726cabdff1aSopenharmony_ci 1727cabdff1aSopenharmony_ci# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a 1728cabdff1aSopenharmony_ci# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1729cabdff1aSopenharmony_ci# it. 1730cabdff1aSopenharmony_ci# The default directory is: rtf. 1731cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_RTF is set to YES. 1732cabdff1aSopenharmony_ci 1733cabdff1aSopenharmony_ciRTF_OUTPUT = rtf 1734cabdff1aSopenharmony_ci 1735cabdff1aSopenharmony_ci# If the COMPACT_RTF tag is set to YES doxygen generates more compact RTF 1736cabdff1aSopenharmony_ci# documents. This may be useful for small projects and may help to save some 1737cabdff1aSopenharmony_ci# trees in general. 1738cabdff1aSopenharmony_ci# The default value is: NO. 1739cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_RTF is set to YES. 1740cabdff1aSopenharmony_ci 1741cabdff1aSopenharmony_ciCOMPACT_RTF = NO 1742cabdff1aSopenharmony_ci 1743cabdff1aSopenharmony_ci# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will 1744cabdff1aSopenharmony_ci# contain hyperlink fields. The RTF file will contain links (just like the HTML 1745cabdff1aSopenharmony_ci# output) instead of page references. This makes the output suitable for online 1746cabdff1aSopenharmony_ci# browsing using Word or some other Word compatible readers that support those 1747cabdff1aSopenharmony_ci# fields. 1748cabdff1aSopenharmony_ci# 1749cabdff1aSopenharmony_ci# Note: WordPad (write) and others do not support links. 1750cabdff1aSopenharmony_ci# The default value is: NO. 1751cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_RTF is set to YES. 1752cabdff1aSopenharmony_ci 1753cabdff1aSopenharmony_ciRTF_HYPERLINKS = NO 1754cabdff1aSopenharmony_ci 1755cabdff1aSopenharmony_ci# Load stylesheet definitions from file. Syntax is similar to doxygen's config 1756cabdff1aSopenharmony_ci# file, i.e. a series of assignments. You only have to provide replacements, 1757cabdff1aSopenharmony_ci# missing definitions are set to their default value. 1758cabdff1aSopenharmony_ci# 1759cabdff1aSopenharmony_ci# See also section "Doxygen usage" for information on how to generate the 1760cabdff1aSopenharmony_ci# default style sheet that doxygen normally uses. 1761cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_RTF is set to YES. 1762cabdff1aSopenharmony_ci 1763cabdff1aSopenharmony_ciRTF_STYLESHEET_FILE = 1764cabdff1aSopenharmony_ci 1765cabdff1aSopenharmony_ci# Set optional variables used in the generation of an RTF document. Syntax is 1766cabdff1aSopenharmony_ci# similar to doxygen's config file. A template extensions file can be generated 1767cabdff1aSopenharmony_ci# using doxygen -e rtf extensionFile. 1768cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_RTF is set to YES. 1769cabdff1aSopenharmony_ci 1770cabdff1aSopenharmony_ciRTF_EXTENSIONS_FILE = 1771cabdff1aSopenharmony_ci 1772cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1773cabdff1aSopenharmony_ci# Configuration options related to the man page output 1774cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1775cabdff1aSopenharmony_ci 1776cabdff1aSopenharmony_ci# If the GENERATE_MAN tag is set to YES doxygen will generate man pages for 1777cabdff1aSopenharmony_ci# classes and files. 1778cabdff1aSopenharmony_ci# The default value is: NO. 1779cabdff1aSopenharmony_ci 1780cabdff1aSopenharmony_ciGENERATE_MAN = NO 1781cabdff1aSopenharmony_ci 1782cabdff1aSopenharmony_ci# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a 1783cabdff1aSopenharmony_ci# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1784cabdff1aSopenharmony_ci# it. A directory man3 will be created inside the directory specified by 1785cabdff1aSopenharmony_ci# MAN_OUTPUT. 1786cabdff1aSopenharmony_ci# The default directory is: man. 1787cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_MAN is set to YES. 1788cabdff1aSopenharmony_ci 1789cabdff1aSopenharmony_ciMAN_OUTPUT = man 1790cabdff1aSopenharmony_ci 1791cabdff1aSopenharmony_ci# The MAN_EXTENSION tag determines the extension that is added to the generated 1792cabdff1aSopenharmony_ci# man pages. In case the manual section does not start with a number, the number 1793cabdff1aSopenharmony_ci# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is 1794cabdff1aSopenharmony_ci# optional. 1795cabdff1aSopenharmony_ci# The default value is: .3. 1796cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_MAN is set to YES. 1797cabdff1aSopenharmony_ci 1798cabdff1aSopenharmony_ciMAN_EXTENSION = .3 1799cabdff1aSopenharmony_ci 1800cabdff1aSopenharmony_ci# The MAN_SUBDIR tag determines the name of the directory created within 1801cabdff1aSopenharmony_ci# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by 1802cabdff1aSopenharmony_ci# MAN_EXTENSION with the initial . removed. 1803cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_MAN is set to YES. 1804cabdff1aSopenharmony_ci 1805cabdff1aSopenharmony_ciMAN_SUBDIR = 1806cabdff1aSopenharmony_ci 1807cabdff1aSopenharmony_ci# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it 1808cabdff1aSopenharmony_ci# will generate one additional man file for each entity documented in the real 1809cabdff1aSopenharmony_ci# man page(s). These additional files only source the real man page, but without 1810cabdff1aSopenharmony_ci# them the man command would be unable to find the correct page. 1811cabdff1aSopenharmony_ci# The default value is: NO. 1812cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_MAN is set to YES. 1813cabdff1aSopenharmony_ci 1814cabdff1aSopenharmony_ciMAN_LINKS = NO 1815cabdff1aSopenharmony_ci 1816cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1817cabdff1aSopenharmony_ci# Configuration options related to the XML output 1818cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1819cabdff1aSopenharmony_ci 1820cabdff1aSopenharmony_ci# If the GENERATE_XML tag is set to YES doxygen will generate an XML file that 1821cabdff1aSopenharmony_ci# captures the structure of the code including all documentation. 1822cabdff1aSopenharmony_ci# The default value is: NO. 1823cabdff1aSopenharmony_ci 1824cabdff1aSopenharmony_ciGENERATE_XML = NO 1825cabdff1aSopenharmony_ci 1826cabdff1aSopenharmony_ci# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a 1827cabdff1aSopenharmony_ci# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1828cabdff1aSopenharmony_ci# it. 1829cabdff1aSopenharmony_ci# The default directory is: xml. 1830cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_XML is set to YES. 1831cabdff1aSopenharmony_ci 1832cabdff1aSopenharmony_ciXML_OUTPUT = xml 1833cabdff1aSopenharmony_ci 1834cabdff1aSopenharmony_ci# If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program 1835cabdff1aSopenharmony_ci# listings (including syntax highlighting and cross-referencing information) to 1836cabdff1aSopenharmony_ci# the XML output. Note that enabling this will significantly increase the size 1837cabdff1aSopenharmony_ci# of the XML output. 1838cabdff1aSopenharmony_ci# The default value is: YES. 1839cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_XML is set to YES. 1840cabdff1aSopenharmony_ci 1841cabdff1aSopenharmony_ciXML_PROGRAMLISTING = YES 1842cabdff1aSopenharmony_ci 1843cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1844cabdff1aSopenharmony_ci# Configuration options related to the DOCBOOK output 1845cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1846cabdff1aSopenharmony_ci 1847cabdff1aSopenharmony_ci# If the GENERATE_DOCBOOK tag is set to YES doxygen will generate Docbook files 1848cabdff1aSopenharmony_ci# that can be used to generate PDF. 1849cabdff1aSopenharmony_ci# The default value is: NO. 1850cabdff1aSopenharmony_ci 1851cabdff1aSopenharmony_ciGENERATE_DOCBOOK = NO 1852cabdff1aSopenharmony_ci 1853cabdff1aSopenharmony_ci# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. 1854cabdff1aSopenharmony_ci# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in 1855cabdff1aSopenharmony_ci# front of it. 1856cabdff1aSopenharmony_ci# The default directory is: docbook. 1857cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_DOCBOOK is set to YES. 1858cabdff1aSopenharmony_ci 1859cabdff1aSopenharmony_ciDOCBOOK_OUTPUT = docbook 1860cabdff1aSopenharmony_ci 1861cabdff1aSopenharmony_ci# If the DOCBOOK_PROGRAMLISTING tag is set to YES doxygen will include the 1862cabdff1aSopenharmony_ci# program listings (including syntax highlighting and cross-referencing 1863cabdff1aSopenharmony_ci# information) to the DOCBOOK output. Note that enabling this will significantly 1864cabdff1aSopenharmony_ci# increase the size of the DOCBOOK output. 1865cabdff1aSopenharmony_ci# The default value is: NO. 1866cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_DOCBOOK is set to YES. 1867cabdff1aSopenharmony_ci 1868cabdff1aSopenharmony_ciDOCBOOK_PROGRAMLISTING = NO 1869cabdff1aSopenharmony_ci 1870cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1871cabdff1aSopenharmony_ci# Configuration options for the AutoGen Definitions output 1872cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1873cabdff1aSopenharmony_ci 1874cabdff1aSopenharmony_ci# If the GENERATE_AUTOGEN_DEF tag is set to YES doxygen will generate an AutoGen 1875cabdff1aSopenharmony_ci# Definitions (see http://autogen.sf.net) file that captures the structure of 1876cabdff1aSopenharmony_ci# the code including all documentation. Note that this feature is still 1877cabdff1aSopenharmony_ci# experimental and incomplete at the moment. 1878cabdff1aSopenharmony_ci# The default value is: NO. 1879cabdff1aSopenharmony_ci 1880cabdff1aSopenharmony_ciGENERATE_AUTOGEN_DEF = NO 1881cabdff1aSopenharmony_ci 1882cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1883cabdff1aSopenharmony_ci# Configuration options related to the Perl module output 1884cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1885cabdff1aSopenharmony_ci 1886cabdff1aSopenharmony_ci# If the GENERATE_PERLMOD tag is set to YES doxygen will generate a Perl module 1887cabdff1aSopenharmony_ci# file that captures the structure of the code including all documentation. 1888cabdff1aSopenharmony_ci# 1889cabdff1aSopenharmony_ci# Note that this feature is still experimental and incomplete at the moment. 1890cabdff1aSopenharmony_ci# The default value is: NO. 1891cabdff1aSopenharmony_ci 1892cabdff1aSopenharmony_ciGENERATE_PERLMOD = NO 1893cabdff1aSopenharmony_ci 1894cabdff1aSopenharmony_ci# If the PERLMOD_LATEX tag is set to YES doxygen will generate the necessary 1895cabdff1aSopenharmony_ci# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI 1896cabdff1aSopenharmony_ci# output from the Perl module output. 1897cabdff1aSopenharmony_ci# The default value is: NO. 1898cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_PERLMOD is set to YES. 1899cabdff1aSopenharmony_ci 1900cabdff1aSopenharmony_ciPERLMOD_LATEX = NO 1901cabdff1aSopenharmony_ci 1902cabdff1aSopenharmony_ci# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be nicely 1903cabdff1aSopenharmony_ci# formatted so it can be parsed by a human reader. This is useful if you want to 1904cabdff1aSopenharmony_ci# understand what is going on. On the other hand, if this tag is set to NO the 1905cabdff1aSopenharmony_ci# size of the Perl module output will be much smaller and Perl will parse it 1906cabdff1aSopenharmony_ci# just the same. 1907cabdff1aSopenharmony_ci# The default value is: YES. 1908cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_PERLMOD is set to YES. 1909cabdff1aSopenharmony_ci 1910cabdff1aSopenharmony_ciPERLMOD_PRETTY = YES 1911cabdff1aSopenharmony_ci 1912cabdff1aSopenharmony_ci# The names of the make variables in the generated doxyrules.make file are 1913cabdff1aSopenharmony_ci# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful 1914cabdff1aSopenharmony_ci# so different doxyrules.make files included by the same Makefile don't 1915cabdff1aSopenharmony_ci# overwrite each other's variables. 1916cabdff1aSopenharmony_ci# This tag requires that the tag GENERATE_PERLMOD is set to YES. 1917cabdff1aSopenharmony_ci 1918cabdff1aSopenharmony_ciPERLMOD_MAKEVAR_PREFIX = 1919cabdff1aSopenharmony_ci 1920cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1921cabdff1aSopenharmony_ci# Configuration options related to the preprocessor 1922cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 1923cabdff1aSopenharmony_ci 1924cabdff1aSopenharmony_ci# If the ENABLE_PREPROCESSING tag is set to YES doxygen will evaluate all 1925cabdff1aSopenharmony_ci# C-preprocessor directives found in the sources and include files. 1926cabdff1aSopenharmony_ci# The default value is: YES. 1927cabdff1aSopenharmony_ci 1928cabdff1aSopenharmony_ciENABLE_PREPROCESSING = YES 1929cabdff1aSopenharmony_ci 1930cabdff1aSopenharmony_ci# If the MACRO_EXPANSION tag is set to YES doxygen will expand all macro names 1931cabdff1aSopenharmony_ci# in the source code. If set to NO only conditional compilation will be 1932cabdff1aSopenharmony_ci# performed. Macro expansion can be done in a controlled way by setting 1933cabdff1aSopenharmony_ci# EXPAND_ONLY_PREDEF to YES. 1934cabdff1aSopenharmony_ci# The default value is: NO. 1935cabdff1aSopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1936cabdff1aSopenharmony_ci 1937cabdff1aSopenharmony_ciMACRO_EXPANSION = YES 1938cabdff1aSopenharmony_ci 1939cabdff1aSopenharmony_ci# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then 1940cabdff1aSopenharmony_ci# the macro expansion is limited to the macros specified with the PREDEFINED and 1941cabdff1aSopenharmony_ci# EXPAND_AS_DEFINED tags. 1942cabdff1aSopenharmony_ci# The default value is: NO. 1943cabdff1aSopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1944cabdff1aSopenharmony_ci 1945cabdff1aSopenharmony_ciEXPAND_ONLY_PREDEF = YES 1946cabdff1aSopenharmony_ci 1947cabdff1aSopenharmony_ci# If the SEARCH_INCLUDES tag is set to YES the includes files in the 1948cabdff1aSopenharmony_ci# INCLUDE_PATH will be searched if a #include is found. 1949cabdff1aSopenharmony_ci# The default value is: YES. 1950cabdff1aSopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1951cabdff1aSopenharmony_ci 1952cabdff1aSopenharmony_ciSEARCH_INCLUDES = YES 1953cabdff1aSopenharmony_ci 1954cabdff1aSopenharmony_ci# The INCLUDE_PATH tag can be used to specify one or more directories that 1955cabdff1aSopenharmony_ci# contain include files that are not input files but should be processed by the 1956cabdff1aSopenharmony_ci# preprocessor. 1957cabdff1aSopenharmony_ci# This tag requires that the tag SEARCH_INCLUDES is set to YES. 1958cabdff1aSopenharmony_ci 1959cabdff1aSopenharmony_ciINCLUDE_PATH = 1960cabdff1aSopenharmony_ci 1961cabdff1aSopenharmony_ci# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 1962cabdff1aSopenharmony_ci# patterns (like *.h and *.hpp) to filter out the header-files in the 1963cabdff1aSopenharmony_ci# directories. If left blank, the patterns specified with FILE_PATTERNS will be 1964cabdff1aSopenharmony_ci# used. 1965cabdff1aSopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1966cabdff1aSopenharmony_ci 1967cabdff1aSopenharmony_ciINCLUDE_FILE_PATTERNS = 1968cabdff1aSopenharmony_ci 1969cabdff1aSopenharmony_ci# The PREDEFINED tag can be used to specify one or more macro names that are 1970cabdff1aSopenharmony_ci# defined before the preprocessor is started (similar to the -D option of e.g. 1971cabdff1aSopenharmony_ci# gcc). The argument of the tag is a list of macros of the form: name or 1972cabdff1aSopenharmony_ci# name=definition (no spaces). If the definition and the "=" are omitted, "=1" 1973cabdff1aSopenharmony_ci# is assumed. To prevent a macro definition from being undefined via #undef or 1974cabdff1aSopenharmony_ci# recursively expanded use the := operator instead of the = operator. 1975cabdff1aSopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1976cabdff1aSopenharmony_ci 1977cabdff1aSopenharmony_ciPREDEFINED = __attribute__(x)= \ 1978cabdff1aSopenharmony_ci "DECLARE_ALIGNED(n,t,v)=t v" \ 1979cabdff1aSopenharmony_ci offsetof(x,y)=0x42 \ 1980cabdff1aSopenharmony_ci av_alloc_size(...)= \ 1981cabdff1aSopenharmony_ci AV_GCC_VERSION_AT_LEAST(x,y)=1 \ 1982cabdff1aSopenharmony_ci AV_GCC_VERSION_AT_MOST(x,y)=0 \ 1983cabdff1aSopenharmony_ci __GNUC__ 1984cabdff1aSopenharmony_ci 1985cabdff1aSopenharmony_ci# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this 1986cabdff1aSopenharmony_ci# tag can be used to specify a list of macro names that should be expanded. The 1987cabdff1aSopenharmony_ci# macro definition that is found in the sources will be used. Use the PREDEFINED 1988cabdff1aSopenharmony_ci# tag if you want to use a different macro definition that overrules the 1989cabdff1aSopenharmony_ci# definition found in the source code. 1990cabdff1aSopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1991cabdff1aSopenharmony_ci 1992cabdff1aSopenharmony_ciEXPAND_AS_DEFINED = 1993cabdff1aSopenharmony_ci 1994cabdff1aSopenharmony_ci# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will 1995cabdff1aSopenharmony_ci# remove all references to function-like macros that are alone on a line, have 1996cabdff1aSopenharmony_ci# an all uppercase name, and do not end with a semicolon. Such function macros 1997cabdff1aSopenharmony_ci# are typically used for boiler-plate code, and will confuse the parser if not 1998cabdff1aSopenharmony_ci# removed. 1999cabdff1aSopenharmony_ci# The default value is: YES. 2000cabdff1aSopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2001cabdff1aSopenharmony_ci 2002cabdff1aSopenharmony_ciSKIP_FUNCTION_MACROS = YES 2003cabdff1aSopenharmony_ci 2004cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 2005cabdff1aSopenharmony_ci# Configuration options related to external references 2006cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 2007cabdff1aSopenharmony_ci 2008cabdff1aSopenharmony_ci# The TAGFILES tag can be used to specify one or more tag files. For each tag 2009cabdff1aSopenharmony_ci# file the location of the external documentation should be added. The format of 2010cabdff1aSopenharmony_ci# a tag file without this location is as follows: 2011cabdff1aSopenharmony_ci# TAGFILES = file1 file2 ... 2012cabdff1aSopenharmony_ci# Adding location for the tag files is done as follows: 2013cabdff1aSopenharmony_ci# TAGFILES = file1=loc1 "file2 = loc2" ... 2014cabdff1aSopenharmony_ci# where loc1 and loc2 can be relative or absolute paths or URLs. See the 2015cabdff1aSopenharmony_ci# section "Linking to external documentation" for more information about the use 2016cabdff1aSopenharmony_ci# of tag files. 2017cabdff1aSopenharmony_ci# Note: Each tag file must have a unique name (where the name does NOT include 2018cabdff1aSopenharmony_ci# the path). If a tag file is not located in the directory in which doxygen is 2019cabdff1aSopenharmony_ci# run, you must also specify the path to the tagfile here. 2020cabdff1aSopenharmony_ci 2021cabdff1aSopenharmony_ciTAGFILES = 2022cabdff1aSopenharmony_ci 2023cabdff1aSopenharmony_ci# When a file name is specified after GENERATE_TAGFILE, doxygen will create a 2024cabdff1aSopenharmony_ci# tag file that is based on the input files it reads. See section "Linking to 2025cabdff1aSopenharmony_ci# external documentation" for more information about the usage of tag files. 2026cabdff1aSopenharmony_ci 2027cabdff1aSopenharmony_ciGENERATE_TAGFILE = 2028cabdff1aSopenharmony_ci 2029cabdff1aSopenharmony_ci# If the ALLEXTERNALS tag is set to YES all external class will be listed in the 2030cabdff1aSopenharmony_ci# class index. If set to NO only the inherited external classes will be listed. 2031cabdff1aSopenharmony_ci# The default value is: NO. 2032cabdff1aSopenharmony_ci 2033cabdff1aSopenharmony_ciALLEXTERNALS = NO 2034cabdff1aSopenharmony_ci 2035cabdff1aSopenharmony_ci# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed in 2036cabdff1aSopenharmony_ci# the modules index. If set to NO, only the current project's groups will be 2037cabdff1aSopenharmony_ci# listed. 2038cabdff1aSopenharmony_ci# The default value is: YES. 2039cabdff1aSopenharmony_ci 2040cabdff1aSopenharmony_ciEXTERNAL_GROUPS = YES 2041cabdff1aSopenharmony_ci 2042cabdff1aSopenharmony_ci# If the EXTERNAL_PAGES tag is set to YES all external pages will be listed in 2043cabdff1aSopenharmony_ci# the related pages index. If set to NO, only the current project's pages will 2044cabdff1aSopenharmony_ci# be listed. 2045cabdff1aSopenharmony_ci# The default value is: YES. 2046cabdff1aSopenharmony_ci 2047cabdff1aSopenharmony_ciEXTERNAL_PAGES = YES 2048cabdff1aSopenharmony_ci 2049cabdff1aSopenharmony_ci# The PERL_PATH should be the absolute path and name of the perl script 2050cabdff1aSopenharmony_ci# interpreter (i.e. the result of 'which perl'). 2051cabdff1aSopenharmony_ci# The default file (with absolute path) is: /usr/bin/perl. 2052cabdff1aSopenharmony_ci 2053cabdff1aSopenharmony_ciPERL_PATH = /usr/bin/perl 2054cabdff1aSopenharmony_ci 2055cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 2056cabdff1aSopenharmony_ci# Configuration options related to the dot tool 2057cabdff1aSopenharmony_ci#--------------------------------------------------------------------------- 2058cabdff1aSopenharmony_ci 2059cabdff1aSopenharmony_ci# If the CLASS_DIAGRAMS tag is set to YES doxygen will generate a class diagram 2060cabdff1aSopenharmony_ci# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to 2061cabdff1aSopenharmony_ci# NO turns the diagrams off. Note that this option also works with HAVE_DOT 2062cabdff1aSopenharmony_ci# disabled, but it is recommended to install and use dot, since it yields more 2063cabdff1aSopenharmony_ci# powerful graphs. 2064cabdff1aSopenharmony_ci# The default value is: YES. 2065cabdff1aSopenharmony_ci 2066cabdff1aSopenharmony_ciCLASS_DIAGRAMS = YES 2067cabdff1aSopenharmony_ci 2068cabdff1aSopenharmony_ci# You can define message sequence charts within doxygen comments using the \msc 2069cabdff1aSopenharmony_ci# command. Doxygen will then run the mscgen tool (see: 2070cabdff1aSopenharmony_ci# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the 2071cabdff1aSopenharmony_ci# documentation. The MSCGEN_PATH tag allows you to specify the directory where 2072cabdff1aSopenharmony_ci# the mscgen tool resides. If left empty the tool is assumed to be found in the 2073cabdff1aSopenharmony_ci# default search path. 2074cabdff1aSopenharmony_ci 2075cabdff1aSopenharmony_ciMSCGEN_PATH = 2076cabdff1aSopenharmony_ci 2077cabdff1aSopenharmony_ci# You can include diagrams made with dia in doxygen documentation. Doxygen will 2078cabdff1aSopenharmony_ci# then run dia to produce the diagram and insert it in the documentation. The 2079cabdff1aSopenharmony_ci# DIA_PATH tag allows you to specify the directory where the dia binary resides. 2080cabdff1aSopenharmony_ci# If left empty dia is assumed to be found in the default search path. 2081cabdff1aSopenharmony_ci 2082cabdff1aSopenharmony_ciDIA_PATH = 2083cabdff1aSopenharmony_ci 2084cabdff1aSopenharmony_ci# If set to YES, the inheritance and collaboration graphs will hide inheritance 2085cabdff1aSopenharmony_ci# and usage relations if the target is undocumented or is not a class. 2086cabdff1aSopenharmony_ci# The default value is: YES. 2087cabdff1aSopenharmony_ci 2088cabdff1aSopenharmony_ciHIDE_UNDOC_RELATIONS = YES 2089cabdff1aSopenharmony_ci 2090cabdff1aSopenharmony_ci# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 2091cabdff1aSopenharmony_ci# available from the path. This tool is part of Graphviz (see: 2092cabdff1aSopenharmony_ci# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent 2093cabdff1aSopenharmony_ci# Bell Labs. The other options in this section have no effect if this option is 2094cabdff1aSopenharmony_ci# set to NO 2095cabdff1aSopenharmony_ci# The default value is: YES. 2096cabdff1aSopenharmony_ci 2097cabdff1aSopenharmony_ciHAVE_DOT = NO 2098cabdff1aSopenharmony_ci 2099cabdff1aSopenharmony_ci# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed 2100cabdff1aSopenharmony_ci# to run in parallel. When set to 0 doxygen will base this on the number of 2101cabdff1aSopenharmony_ci# processors available in the system. You can set it explicitly to a value 2102cabdff1aSopenharmony_ci# larger than 0 to get control over the balance between CPU load and processing 2103cabdff1aSopenharmony_ci# speed. 2104cabdff1aSopenharmony_ci# Minimum value: 0, maximum value: 32, default value: 0. 2105cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2106cabdff1aSopenharmony_ci 2107cabdff1aSopenharmony_ciDOT_NUM_THREADS = 0 2108cabdff1aSopenharmony_ci 2109cabdff1aSopenharmony_ci# When you want a differently looking font in the dot files that doxygen 2110cabdff1aSopenharmony_ci# generates you can specify the font name using DOT_FONTNAME. You need to make 2111cabdff1aSopenharmony_ci# sure dot is able to find the font, which can be done by putting it in a 2112cabdff1aSopenharmony_ci# standard location or by setting the DOTFONTPATH environment variable or by 2113cabdff1aSopenharmony_ci# setting DOT_FONTPATH to the directory containing the font. 2114cabdff1aSopenharmony_ci# The default value is: Helvetica. 2115cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2116cabdff1aSopenharmony_ci 2117cabdff1aSopenharmony_ciDOT_FONTNAME = Helvetica 2118cabdff1aSopenharmony_ci 2119cabdff1aSopenharmony_ci# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of 2120cabdff1aSopenharmony_ci# dot graphs. 2121cabdff1aSopenharmony_ci# Minimum value: 4, maximum value: 24, default value: 10. 2122cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2123cabdff1aSopenharmony_ci 2124cabdff1aSopenharmony_ciDOT_FONTSIZE = 10 2125cabdff1aSopenharmony_ci 2126cabdff1aSopenharmony_ci# By default doxygen will tell dot to use the default font as specified with 2127cabdff1aSopenharmony_ci# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set 2128cabdff1aSopenharmony_ci# the path where dot can find it using this tag. 2129cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2130cabdff1aSopenharmony_ci 2131cabdff1aSopenharmony_ciDOT_FONTPATH = 2132cabdff1aSopenharmony_ci 2133cabdff1aSopenharmony_ci# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for 2134cabdff1aSopenharmony_ci# each documented class showing the direct and indirect inheritance relations. 2135cabdff1aSopenharmony_ci# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. 2136cabdff1aSopenharmony_ci# The default value is: YES. 2137cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2138cabdff1aSopenharmony_ci 2139cabdff1aSopenharmony_ciCLASS_GRAPH = YES 2140cabdff1aSopenharmony_ci 2141cabdff1aSopenharmony_ci# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a 2142cabdff1aSopenharmony_ci# graph for each documented class showing the direct and indirect implementation 2143cabdff1aSopenharmony_ci# dependencies (inheritance, containment, and class references variables) of the 2144cabdff1aSopenharmony_ci# class with other documented classes. 2145cabdff1aSopenharmony_ci# The default value is: YES. 2146cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2147cabdff1aSopenharmony_ci 2148cabdff1aSopenharmony_ciCOLLABORATION_GRAPH = YES 2149cabdff1aSopenharmony_ci 2150cabdff1aSopenharmony_ci# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for 2151cabdff1aSopenharmony_ci# groups, showing the direct groups dependencies. 2152cabdff1aSopenharmony_ci# The default value is: YES. 2153cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2154cabdff1aSopenharmony_ci 2155cabdff1aSopenharmony_ciGROUP_GRAPHS = YES 2156cabdff1aSopenharmony_ci 2157cabdff1aSopenharmony_ci# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 2158cabdff1aSopenharmony_ci# collaboration diagrams in a style similar to the OMG's Unified Modeling 2159cabdff1aSopenharmony_ci# Language. 2160cabdff1aSopenharmony_ci# The default value is: NO. 2161cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2162cabdff1aSopenharmony_ci 2163cabdff1aSopenharmony_ciUML_LOOK = NO 2164cabdff1aSopenharmony_ci 2165cabdff1aSopenharmony_ci# If the UML_LOOK tag is enabled, the fields and methods are shown inside the 2166cabdff1aSopenharmony_ci# class node. If there are many fields or methods and many nodes the graph may 2167cabdff1aSopenharmony_ci# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the 2168cabdff1aSopenharmony_ci# number of items for each type to make the size more manageable. Set this to 0 2169cabdff1aSopenharmony_ci# for no limit. Note that the threshold may be exceeded by 50% before the limit 2170cabdff1aSopenharmony_ci# is enforced. So when you set the threshold to 10, up to 15 fields may appear, 2171cabdff1aSopenharmony_ci# but if the number exceeds 15, the total amount of fields shown is limited to 2172cabdff1aSopenharmony_ci# 10. 2173cabdff1aSopenharmony_ci# Minimum value: 0, maximum value: 100, default value: 10. 2174cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2175cabdff1aSopenharmony_ci 2176cabdff1aSopenharmony_ciUML_LIMIT_NUM_FIELDS = 10 2177cabdff1aSopenharmony_ci 2178cabdff1aSopenharmony_ci# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and 2179cabdff1aSopenharmony_ci# collaboration graphs will show the relations between templates and their 2180cabdff1aSopenharmony_ci# instances. 2181cabdff1aSopenharmony_ci# The default value is: NO. 2182cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2183cabdff1aSopenharmony_ci 2184cabdff1aSopenharmony_ciTEMPLATE_RELATIONS = NO 2185cabdff1aSopenharmony_ci 2186cabdff1aSopenharmony_ci# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to 2187cabdff1aSopenharmony_ci# YES then doxygen will generate a graph for each documented file showing the 2188cabdff1aSopenharmony_ci# direct and indirect include dependencies of the file with other documented 2189cabdff1aSopenharmony_ci# files. 2190cabdff1aSopenharmony_ci# The default value is: YES. 2191cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2192cabdff1aSopenharmony_ci 2193cabdff1aSopenharmony_ciINCLUDE_GRAPH = YES 2194cabdff1aSopenharmony_ci 2195cabdff1aSopenharmony_ci# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are 2196cabdff1aSopenharmony_ci# set to YES then doxygen will generate a graph for each documented file showing 2197cabdff1aSopenharmony_ci# the direct and indirect include dependencies of the file with other documented 2198cabdff1aSopenharmony_ci# files. 2199cabdff1aSopenharmony_ci# The default value is: YES. 2200cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2201cabdff1aSopenharmony_ci 2202cabdff1aSopenharmony_ciINCLUDED_BY_GRAPH = YES 2203cabdff1aSopenharmony_ci 2204cabdff1aSopenharmony_ci# If the CALL_GRAPH tag is set to YES then doxygen will generate a call 2205cabdff1aSopenharmony_ci# dependency graph for every global function or class method. 2206cabdff1aSopenharmony_ci# 2207cabdff1aSopenharmony_ci# Note that enabling this option will significantly increase the time of a run. 2208cabdff1aSopenharmony_ci# So in most cases it will be better to enable call graphs for selected 2209cabdff1aSopenharmony_ci# functions only using the \callgraph command. 2210cabdff1aSopenharmony_ci# The default value is: NO. 2211cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2212cabdff1aSopenharmony_ci 2213cabdff1aSopenharmony_ciCALL_GRAPH = NO 2214cabdff1aSopenharmony_ci 2215cabdff1aSopenharmony_ci# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller 2216cabdff1aSopenharmony_ci# dependency graph for every global function or class method. 2217cabdff1aSopenharmony_ci# 2218cabdff1aSopenharmony_ci# Note that enabling this option will significantly increase the time of a run. 2219cabdff1aSopenharmony_ci# So in most cases it will be better to enable caller graphs for selected 2220cabdff1aSopenharmony_ci# functions only using the \callergraph command. 2221cabdff1aSopenharmony_ci# The default value is: NO. 2222cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2223cabdff1aSopenharmony_ci 2224cabdff1aSopenharmony_ciCALLER_GRAPH = NO 2225cabdff1aSopenharmony_ci 2226cabdff1aSopenharmony_ci# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical 2227cabdff1aSopenharmony_ci# hierarchy of all classes instead of a textual one. 2228cabdff1aSopenharmony_ci# The default value is: YES. 2229cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2230cabdff1aSopenharmony_ci 2231cabdff1aSopenharmony_ciGRAPHICAL_HIERARCHY = YES 2232cabdff1aSopenharmony_ci 2233cabdff1aSopenharmony_ci# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the 2234cabdff1aSopenharmony_ci# dependencies a directory has on other directories in a graphical way. The 2235cabdff1aSopenharmony_ci# dependency relations are determined by the #include relations between the 2236cabdff1aSopenharmony_ci# files in the directories. 2237cabdff1aSopenharmony_ci# The default value is: YES. 2238cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2239cabdff1aSopenharmony_ci 2240cabdff1aSopenharmony_ciDIRECTORY_GRAPH = YES 2241cabdff1aSopenharmony_ci 2242cabdff1aSopenharmony_ci# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 2243cabdff1aSopenharmony_ci# generated by dot. 2244cabdff1aSopenharmony_ci# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order 2245cabdff1aSopenharmony_ci# to make the SVG files visible in IE 9+ (other browsers do not have this 2246cabdff1aSopenharmony_ci# requirement). 2247cabdff1aSopenharmony_ci# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, 2248cabdff1aSopenharmony_ci# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, 2249cabdff1aSopenharmony_ci# gif:cairo:gd, gif:gd, gif:gd:gd and svg. 2250cabdff1aSopenharmony_ci# The default value is: png. 2251cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2252cabdff1aSopenharmony_ci 2253cabdff1aSopenharmony_ciDOT_IMAGE_FORMAT = png 2254cabdff1aSopenharmony_ci 2255cabdff1aSopenharmony_ci# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to 2256cabdff1aSopenharmony_ci# enable generation of interactive SVG images that allow zooming and panning. 2257cabdff1aSopenharmony_ci# 2258cabdff1aSopenharmony_ci# Note that this requires a modern browser other than Internet Explorer. Tested 2259cabdff1aSopenharmony_ci# and working are Firefox, Chrome, Safari, and Opera. 2260cabdff1aSopenharmony_ci# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make 2261cabdff1aSopenharmony_ci# the SVG files visible. Older versions of IE do not have SVG support. 2262cabdff1aSopenharmony_ci# The default value is: NO. 2263cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2264cabdff1aSopenharmony_ci 2265cabdff1aSopenharmony_ciINTERACTIVE_SVG = NO 2266cabdff1aSopenharmony_ci 2267cabdff1aSopenharmony_ci# The DOT_PATH tag can be used to specify the path where the dot tool can be 2268cabdff1aSopenharmony_ci# found. If left blank, it is assumed the dot tool can be found in the path. 2269cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2270cabdff1aSopenharmony_ci 2271cabdff1aSopenharmony_ciDOT_PATH = 2272cabdff1aSopenharmony_ci 2273cabdff1aSopenharmony_ci# The DOTFILE_DIRS tag can be used to specify one or more directories that 2274cabdff1aSopenharmony_ci# contain dot files that are included in the documentation (see the \dotfile 2275cabdff1aSopenharmony_ci# command). 2276cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2277cabdff1aSopenharmony_ci 2278cabdff1aSopenharmony_ciDOTFILE_DIRS = 2279cabdff1aSopenharmony_ci 2280cabdff1aSopenharmony_ci# The MSCFILE_DIRS tag can be used to specify one or more directories that 2281cabdff1aSopenharmony_ci# contain msc files that are included in the documentation (see the \mscfile 2282cabdff1aSopenharmony_ci# command). 2283cabdff1aSopenharmony_ci 2284cabdff1aSopenharmony_ciMSCFILE_DIRS = 2285cabdff1aSopenharmony_ci 2286cabdff1aSopenharmony_ci# The DIAFILE_DIRS tag can be used to specify one or more directories that 2287cabdff1aSopenharmony_ci# contain dia files that are included in the documentation (see the \diafile 2288cabdff1aSopenharmony_ci# command). 2289cabdff1aSopenharmony_ci 2290cabdff1aSopenharmony_ciDIAFILE_DIRS = 2291cabdff1aSopenharmony_ci 2292cabdff1aSopenharmony_ci# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the 2293cabdff1aSopenharmony_ci# path where java can find the plantuml.jar file. If left blank, it is assumed 2294cabdff1aSopenharmony_ci# PlantUML is not used or called during a preprocessing step. Doxygen will 2295cabdff1aSopenharmony_ci# generate a warning when it encounters a \startuml command in this case and 2296cabdff1aSopenharmony_ci# will not generate output for the diagram. 2297cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2298cabdff1aSopenharmony_ci 2299cabdff1aSopenharmony_ciPLANTUML_JAR_PATH = 2300cabdff1aSopenharmony_ci 2301cabdff1aSopenharmony_ci# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes 2302cabdff1aSopenharmony_ci# that will be shown in the graph. If the number of nodes in a graph becomes 2303cabdff1aSopenharmony_ci# larger than this value, doxygen will truncate the graph, which is visualized 2304cabdff1aSopenharmony_ci# by representing a node as a red box. Note that doxygen if the number of direct 2305cabdff1aSopenharmony_ci# children of the root node in a graph is already larger than 2306cabdff1aSopenharmony_ci# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that 2307cabdff1aSopenharmony_ci# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 2308cabdff1aSopenharmony_ci# Minimum value: 0, maximum value: 10000, default value: 50. 2309cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2310cabdff1aSopenharmony_ci 2311cabdff1aSopenharmony_ciDOT_GRAPH_MAX_NODES = 50 2312cabdff1aSopenharmony_ci 2313cabdff1aSopenharmony_ci# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs 2314cabdff1aSopenharmony_ci# generated by dot. A depth value of 3 means that only nodes reachable from the 2315cabdff1aSopenharmony_ci# root by following a path via at most 3 edges will be shown. Nodes that lay 2316cabdff1aSopenharmony_ci# further from the root node will be omitted. Note that setting this option to 1 2317cabdff1aSopenharmony_ci# or 2 may greatly reduce the computation time needed for large code bases. Also 2318cabdff1aSopenharmony_ci# note that the size of a graph can be further restricted by 2319cabdff1aSopenharmony_ci# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 2320cabdff1aSopenharmony_ci# Minimum value: 0, maximum value: 1000, default value: 0. 2321cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2322cabdff1aSopenharmony_ci 2323cabdff1aSopenharmony_ciMAX_DOT_GRAPH_DEPTH = 0 2324cabdff1aSopenharmony_ci 2325cabdff1aSopenharmony_ci# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 2326cabdff1aSopenharmony_ci# background. This is disabled by default, because dot on Windows does not seem 2327cabdff1aSopenharmony_ci# to support this out of the box. 2328cabdff1aSopenharmony_ci# 2329cabdff1aSopenharmony_ci# Warning: Depending on the platform used, enabling this option may lead to 2330cabdff1aSopenharmony_ci# badly anti-aliased labels on the edges of a graph (i.e. they become hard to 2331cabdff1aSopenharmony_ci# read). 2332cabdff1aSopenharmony_ci# The default value is: NO. 2333cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2334cabdff1aSopenharmony_ci 2335cabdff1aSopenharmony_ciDOT_TRANSPARENT = NO 2336cabdff1aSopenharmony_ci 2337cabdff1aSopenharmony_ci# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 2338cabdff1aSopenharmony_ci# files in one run (i.e. multiple -o and -T options on the command line). This 2339cabdff1aSopenharmony_ci# makes dot run faster, but since only newer versions of dot (>1.8.10) support 2340cabdff1aSopenharmony_ci# this, this feature is disabled by default. 2341cabdff1aSopenharmony_ci# The default value is: NO. 2342cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2343cabdff1aSopenharmony_ci 2344cabdff1aSopenharmony_ciDOT_MULTI_TARGETS = NO 2345cabdff1aSopenharmony_ci 2346cabdff1aSopenharmony_ci# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page 2347cabdff1aSopenharmony_ci# explaining the meaning of the various boxes and arrows in the dot generated 2348cabdff1aSopenharmony_ci# graphs. 2349cabdff1aSopenharmony_ci# The default value is: YES. 2350cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2351cabdff1aSopenharmony_ci 2352cabdff1aSopenharmony_ciGENERATE_LEGEND = YES 2353cabdff1aSopenharmony_ci 2354cabdff1aSopenharmony_ci# If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot 2355cabdff1aSopenharmony_ci# files that are used to generate the various graphs. 2356cabdff1aSopenharmony_ci# The default value is: YES. 2357cabdff1aSopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES. 2358cabdff1aSopenharmony_ci 2359cabdff1aSopenharmony_ciDOT_CLEANUP = YES 2360