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