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