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