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