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