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