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