xref: /TaskScheduler/Scheduler/Doxygen/Doxyfile (revision 2f083884)
147d53e4dSSergey Makeev# Doxyfile 1.8.9.1
247d53e4dSSergey Makeev
347d53e4dSSergey Makeev# This file describes the settings to be used by the documentation system
447d53e4dSSergey Makeev# doxygen (www.doxygen.org) for a project.
547d53e4dSSergey Makeev#
647d53e4dSSergey Makeev# All text after a double hash (##) is considered a comment and is placed in
747d53e4dSSergey Makeev# front of the TAG it is preceding.
847d53e4dSSergey Makeev#
947d53e4dSSergey Makeev# All text after a single hash (#) is considered a comment and will be ignored.
1047d53e4dSSergey Makeev# The format is:
1147d53e4dSSergey Makeev# TAG = value [value, ...]
1247d53e4dSSergey Makeev# For lists, items can also be appended using:
1347d53e4dSSergey Makeev# TAG += value [value, ...]
1447d53e4dSSergey Makeev# Values that contain spaces should be placed between quotes (\" \").
1547d53e4dSSergey Makeev
1647d53e4dSSergey Makeev#---------------------------------------------------------------------------
1747d53e4dSSergey Makeev# Project related configuration options
1847d53e4dSSergey Makeev#---------------------------------------------------------------------------
1947d53e4dSSergey Makeev
2047d53e4dSSergey Makeev# This tag specifies the encoding used for all characters in the config file
2147d53e4dSSergey Makeev# that follow. The default is UTF-8 which is also the encoding used for all text
2247d53e4dSSergey Makeev# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
2347d53e4dSSergey Makeev# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv
2447d53e4dSSergey Makeev# for the list of possible encodings.
2547d53e4dSSergey Makeev# The default value is: UTF-8.
2647d53e4dSSergey Makeev
2747d53e4dSSergey MakeevDOXYFILE_ENCODING      = UTF-8
2847d53e4dSSergey Makeev
2947d53e4dSSergey Makeev# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
3047d53e4dSSergey Makeev# double-quotes, unless you are using Doxywizard) that should identify the
3147d53e4dSSergey Makeev# project for which the documentation is generated. This name is used in the
3247d53e4dSSergey Makeev# title of most generated pages and in a few other places.
3347d53e4dSSergey Makeev# The default value is: My Project.
3447d53e4dSSergey Makeev
3547d53e4dSSergey MakeevPROJECT_NAME           = "Multithreading Scheduler"
3647d53e4dSSergey Makeev
3747d53e4dSSergey Makeev# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
3847d53e4dSSergey Makeev# could be handy for archiving the generated documentation or if some version
3947d53e4dSSergey Makeev# control system is used.
4047d53e4dSSergey Makeev
4147d53e4dSSergey MakeevPROJECT_NUMBER         =
4247d53e4dSSergey Makeev
4347d53e4dSSergey Makeev# Using the PROJECT_BRIEF tag one can provide an optional one line description
4447d53e4dSSergey Makeev# for a project that appears at the top of each page and should give viewer a
4547d53e4dSSergey Makeev# quick idea about the purpose of the project. Keep the description short.
4647d53e4dSSergey Makeev
4747d53e4dSSergey MakeevPROJECT_BRIEF          =
4847d53e4dSSergey Makeev
4947d53e4dSSergey Makeev# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
5047d53e4dSSergey Makeev# in the documentation. The maximum height of the logo should not exceed 55
5147d53e4dSSergey Makeev# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
5247d53e4dSSergey Makeev# the logo to the output directory.
5347d53e4dSSergey Makeev
5447d53e4dSSergey MakeevPROJECT_LOGO           =
5547d53e4dSSergey Makeev
5647d53e4dSSergey Makeev# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
5747d53e4dSSergey Makeev# into which the generated documentation will be written. If a relative path is
5847d53e4dSSergey Makeev# entered, it will be relative to the location where doxygen was started. If
5947d53e4dSSergey Makeev# left blank the current directory will be used.
6047d53e4dSSergey Makeev
6147d53e4dSSergey MakeevOUTPUT_DIRECTORY       = ../Docs
6247d53e4dSSergey Makeev
6347d53e4dSSergey Makeev# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
6447d53e4dSSergey Makeev# directories (in 2 levels) under the output directory of each output format and
6547d53e4dSSergey Makeev# will distribute the generated files over these directories. Enabling this
6647d53e4dSSergey Makeev# option can be useful when feeding doxygen a huge amount of source files, where
6747d53e4dSSergey Makeev# putting all generated files in the same directory would otherwise causes
6847d53e4dSSergey Makeev# performance problems for the file system.
6947d53e4dSSergey Makeev# The default value is: NO.
7047d53e4dSSergey Makeev
7147d53e4dSSergey MakeevCREATE_SUBDIRS         = NO
7247d53e4dSSergey Makeev
7347d53e4dSSergey Makeev# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
7447d53e4dSSergey Makeev# characters to appear in the names of generated files. If set to NO, non-ASCII
7547d53e4dSSergey Makeev# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
7647d53e4dSSergey Makeev# U+3044.
7747d53e4dSSergey Makeev# The default value is: NO.
7847d53e4dSSergey Makeev
7947d53e4dSSergey MakeevALLOW_UNICODE_NAMES    = NO
8047d53e4dSSergey Makeev
8147d53e4dSSergey Makeev# The OUTPUT_LANGUAGE tag is used to specify the language in which all
8247d53e4dSSergey Makeev# documentation generated by doxygen is written. Doxygen will use this
8347d53e4dSSergey Makeev# information to generate all constant output in the proper language.
8447d53e4dSSergey Makeev# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,
8547d53e4dSSergey Makeev# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
8647d53e4dSSergey Makeev# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,
8747d53e4dSSergey Makeev# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),
8847d53e4dSSergey Makeev# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,
8947d53e4dSSergey Makeev# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,
9047d53e4dSSergey Makeev# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,
9147d53e4dSSergey Makeev# Ukrainian and Vietnamese.
9247d53e4dSSergey Makeev# The default value is: English.
9347d53e4dSSergey Makeev
9447d53e4dSSergey MakeevOUTPUT_LANGUAGE        = English
9547d53e4dSSergey Makeev
9647d53e4dSSergey Makeev# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
9747d53e4dSSergey Makeev# descriptions after the members that are listed in the file and class
9847d53e4dSSergey Makeev# documentation (similar to Javadoc). Set to NO to disable this.
9947d53e4dSSergey Makeev# The default value is: YES.
10047d53e4dSSergey Makeev
10147d53e4dSSergey MakeevBRIEF_MEMBER_DESC      = YES
10247d53e4dSSergey Makeev
10347d53e4dSSergey Makeev# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
10447d53e4dSSergey Makeev# description of a member or function before the detailed description
10547d53e4dSSergey Makeev#
10647d53e4dSSergey Makeev# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
10747d53e4dSSergey Makeev# brief descriptions will be completely suppressed.
10847d53e4dSSergey Makeev# The default value is: YES.
10947d53e4dSSergey Makeev
11047d53e4dSSergey MakeevREPEAT_BRIEF           = YES
11147d53e4dSSergey Makeev
11247d53e4dSSergey Makeev# This tag implements a quasi-intelligent brief description abbreviator that is
11347d53e4dSSergey Makeev# used to form the text in various listings. Each string in this list, if found
11447d53e4dSSergey Makeev# as the leading text of the brief description, will be stripped from the text
11547d53e4dSSergey Makeev# and the result, after processing the whole list, is used as the annotated
11647d53e4dSSergey Makeev# text. Otherwise, the brief description is used as-is. If left blank, the
11747d53e4dSSergey Makeev# following values are used ($name is automatically replaced with the name of
11847d53e4dSSergey Makeev# the entity):The $name class, The $name widget, The $name file, is, provides,
11947d53e4dSSergey Makeev# specifies, contains, represents, a, an and the.
12047d53e4dSSergey Makeev
12147d53e4dSSergey MakeevABBREVIATE_BRIEF       = "The $name class" \
12247d53e4dSSergey Makeev                         "The $name widget" \
12347d53e4dSSergey Makeev                         "The $name file" \
12447d53e4dSSergey Makeev                         is \
12547d53e4dSSergey Makeev                         provides \
12647d53e4dSSergey Makeev                         specifies \
12747d53e4dSSergey Makeev                         contains \
12847d53e4dSSergey Makeev                         represents \
12947d53e4dSSergey Makeev                         a \
13047d53e4dSSergey Makeev                         an \
13147d53e4dSSergey Makeev                         the
13247d53e4dSSergey Makeev
13347d53e4dSSergey Makeev# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
13447d53e4dSSergey Makeev# doxygen will generate a detailed section even if there is only a brief
13547d53e4dSSergey Makeev# description.
13647d53e4dSSergey Makeev# The default value is: NO.
13747d53e4dSSergey Makeev
13847d53e4dSSergey MakeevALWAYS_DETAILED_SEC    = NO
13947d53e4dSSergey Makeev
14047d53e4dSSergey Makeev# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
14147d53e4dSSergey Makeev# inherited members of a class in the documentation of that class as if those
14247d53e4dSSergey Makeev# members were ordinary class members. Constructors, destructors and assignment
14347d53e4dSSergey Makeev# operators of the base classes will not be shown.
14447d53e4dSSergey Makeev# The default value is: NO.
14547d53e4dSSergey Makeev
14647d53e4dSSergey MakeevINLINE_INHERITED_MEMB  = NO
14747d53e4dSSergey Makeev
14847d53e4dSSergey Makeev# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
14947d53e4dSSergey Makeev# before files name in the file list and in the header files. If set to NO the
15047d53e4dSSergey Makeev# shortest path that makes the file name unique will be used
15147d53e4dSSergey Makeev# The default value is: YES.
15247d53e4dSSergey Makeev
15347d53e4dSSergey MakeevFULL_PATH_NAMES        = YES
15447d53e4dSSergey Makeev
15547d53e4dSSergey Makeev# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
15647d53e4dSSergey Makeev# Stripping is only done if one of the specified strings matches the left-hand
15747d53e4dSSergey Makeev# part of the path. The tag can be used to show relative paths in the file list.
15847d53e4dSSergey Makeev# If left blank the directory from which doxygen is run is used as the path to
15947d53e4dSSergey Makeev# strip.
16047d53e4dSSergey Makeev#
16147d53e4dSSergey Makeev# Note that you can specify absolute paths here, but also relative paths, which
16247d53e4dSSergey Makeev# will be relative from the directory where doxygen is started.
16347d53e4dSSergey Makeev# This tag requires that the tag FULL_PATH_NAMES is set to YES.
16447d53e4dSSergey Makeev
16547d53e4dSSergey MakeevSTRIP_FROM_PATH        =
16647d53e4dSSergey Makeev
16747d53e4dSSergey Makeev# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
16847d53e4dSSergey Makeev# path mentioned in the documentation of a class, which tells the reader which
16947d53e4dSSergey Makeev# header file to include in order to use a class. If left blank only the name of
17047d53e4dSSergey Makeev# the header file containing the class definition is used. Otherwise one should
17147d53e4dSSergey Makeev# specify the list of include paths that are normally passed to the compiler
17247d53e4dSSergey Makeev# using the -I flag.
17347d53e4dSSergey Makeev
17447d53e4dSSergey MakeevSTRIP_FROM_INC_PATH    =
17547d53e4dSSergey Makeev
17647d53e4dSSergey Makeev# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
17747d53e4dSSergey Makeev# less readable) file names. This can be useful is your file systems doesn't
17847d53e4dSSergey Makeev# support long names like on DOS, Mac, or CD-ROM.
17947d53e4dSSergey Makeev# The default value is: NO.
18047d53e4dSSergey Makeev
18147d53e4dSSergey MakeevSHORT_NAMES            = NO
18247d53e4dSSergey Makeev
18347d53e4dSSergey Makeev# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
18447d53e4dSSergey Makeev# first line (until the first dot) of a Javadoc-style comment as the brief
18547d53e4dSSergey Makeev# description. If set to NO, the Javadoc-style will behave just like regular Qt-
18647d53e4dSSergey Makeev# style comments (thus requiring an explicit @brief command for a brief
18747d53e4dSSergey Makeev# description.)
18847d53e4dSSergey Makeev# The default value is: NO.
18947d53e4dSSergey Makeev
19047d53e4dSSergey MakeevJAVADOC_AUTOBRIEF      = NO
19147d53e4dSSergey Makeev
19247d53e4dSSergey Makeev# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
19347d53e4dSSergey Makeev# line (until the first dot) of a Qt-style comment as the brief description. If
19447d53e4dSSergey Makeev# set to NO, the Qt-style will behave just like regular Qt-style comments (thus
19547d53e4dSSergey Makeev# requiring an explicit \brief command for a brief description.)
19647d53e4dSSergey Makeev# The default value is: NO.
19747d53e4dSSergey Makeev
19847d53e4dSSergey MakeevQT_AUTOBRIEF           = NO
19947d53e4dSSergey Makeev
20047d53e4dSSergey Makeev# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
20147d53e4dSSergey Makeev# multi-line C++ special comment block (i.e. a block of //! or /// comments) as
20247d53e4dSSergey Makeev# a brief description. This used to be the default behavior. The new default is
20347d53e4dSSergey Makeev# to treat a multi-line C++ comment block as a detailed description. Set this
20447d53e4dSSergey Makeev# tag to YES if you prefer the old behavior instead.
20547d53e4dSSergey Makeev#
20647d53e4dSSergey Makeev# Note that setting this tag to YES also means that rational rose comments are
20747d53e4dSSergey Makeev# not recognized any more.
20847d53e4dSSergey Makeev# The default value is: NO.
20947d53e4dSSergey Makeev
21047d53e4dSSergey MakeevMULTILINE_CPP_IS_BRIEF = NO
21147d53e4dSSergey Makeev
21247d53e4dSSergey Makeev# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
21347d53e4dSSergey Makeev# documentation from any documented member that it re-implements.
21447d53e4dSSergey Makeev# The default value is: YES.
21547d53e4dSSergey Makeev
21647d53e4dSSergey MakeevINHERIT_DOCS           = YES
21747d53e4dSSergey Makeev
21847d53e4dSSergey Makeev# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new
21947d53e4dSSergey Makeev# page for each member. If set to NO, the documentation of a member will be part
22047d53e4dSSergey Makeev# of the file/class/namespace that contains it.
22147d53e4dSSergey Makeev# The default value is: NO.
22247d53e4dSSergey Makeev
22347d53e4dSSergey MakeevSEPARATE_MEMBER_PAGES  = NO
22447d53e4dSSergey Makeev
22547d53e4dSSergey Makeev# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
22647d53e4dSSergey Makeev# uses this value to replace tabs by spaces in code fragments.
22747d53e4dSSergey Makeev# Minimum value: 1, maximum value: 16, default value: 4.
22847d53e4dSSergey Makeev
22947d53e4dSSergey MakeevTAB_SIZE               = 4
23047d53e4dSSergey Makeev
23147d53e4dSSergey Makeev# This tag can be used to specify a number of aliases that act as commands in
23247d53e4dSSergey Makeev# the documentation. An alias has the form:
23347d53e4dSSergey Makeev# name=value
23447d53e4dSSergey Makeev# For example adding
23547d53e4dSSergey Makeev# "sideeffect=@par Side Effects:\n"
23647d53e4dSSergey Makeev# will allow you to put the command \sideeffect (or @sideeffect) in the
23747d53e4dSSergey Makeev# documentation, which will result in a user-defined paragraph with heading
23847d53e4dSSergey Makeev# "Side Effects:". You can put \n's in the value part of an alias to insert
23947d53e4dSSergey Makeev# newlines.
24047d53e4dSSergey Makeev
24147d53e4dSSergey MakeevALIASES                =
24247d53e4dSSergey Makeev
24347d53e4dSSergey Makeev# This tag can be used to specify a number of word-keyword mappings (TCL only).
24447d53e4dSSergey Makeev# A mapping has the form "name=value". For example adding "class=itcl::class"
24547d53e4dSSergey Makeev# will allow you to use the command class in the itcl::class meaning.
24647d53e4dSSergey Makeev
24747d53e4dSSergey MakeevTCL_SUBST              =
24847d53e4dSSergey Makeev
24947d53e4dSSergey Makeev# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
25047d53e4dSSergey Makeev# only. Doxygen will then generate output that is more tailored for C. For
25147d53e4dSSergey Makeev# instance, some of the names that are used will be different. The list of all
25247d53e4dSSergey Makeev# members will be omitted, etc.
25347d53e4dSSergey Makeev# The default value is: NO.
25447d53e4dSSergey Makeev
25547d53e4dSSergey MakeevOPTIMIZE_OUTPUT_FOR_C  = NO
25647d53e4dSSergey Makeev
25747d53e4dSSergey Makeev# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
25847d53e4dSSergey Makeev# Python sources only. Doxygen will then generate output that is more tailored
25947d53e4dSSergey Makeev# for that language. For instance, namespaces will be presented as packages,
26047d53e4dSSergey Makeev# qualified scopes will look different, etc.
26147d53e4dSSergey Makeev# The default value is: NO.
26247d53e4dSSergey Makeev
26347d53e4dSSergey MakeevOPTIMIZE_OUTPUT_JAVA   = NO
26447d53e4dSSergey Makeev
26547d53e4dSSergey Makeev# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
26647d53e4dSSergey Makeev# sources. Doxygen will then generate output that is tailored for Fortran.
26747d53e4dSSergey Makeev# The default value is: NO.
26847d53e4dSSergey Makeev
26947d53e4dSSergey MakeevOPTIMIZE_FOR_FORTRAN   = NO
27047d53e4dSSergey Makeev
27147d53e4dSSergey Makeev# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
27247d53e4dSSergey Makeev# sources. Doxygen will then generate output that is tailored for VHDL.
27347d53e4dSSergey Makeev# The default value is: NO.
27447d53e4dSSergey Makeev
27547d53e4dSSergey MakeevOPTIMIZE_OUTPUT_VHDL   = NO
27647d53e4dSSergey Makeev
27747d53e4dSSergey Makeev# Doxygen selects the parser to use depending on the extension of the files it
27847d53e4dSSergey Makeev# parses. With this tag you can assign which parser to use for a given
27947d53e4dSSergey Makeev# extension. Doxygen has a built-in mapping, but you can override or extend it
28047d53e4dSSergey Makeev# using this tag. The format is ext=language, where ext is a file extension, and
28147d53e4dSSergey Makeev# language is one of the parsers supported by doxygen: IDL, Java, Javascript,
28247d53e4dSSergey Makeev# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran:
28347d53e4dSSergey Makeev# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran:
28447d53e4dSSergey Makeev# Fortran. In the later case the parser tries to guess whether the code is fixed
28547d53e4dSSergey Makeev# or free formatted code, this is the default for Fortran type files), VHDL. For
28647d53e4dSSergey Makeev# instance to make doxygen treat .inc files as Fortran files (default is PHP),
28747d53e4dSSergey Makeev# and .f files as C (default is Fortran), use: inc=Fortran f=C.
28847d53e4dSSergey Makeev#
28947d53e4dSSergey Makeev# Note: For files without extension you can use no_extension as a placeholder.
29047d53e4dSSergey Makeev#
29147d53e4dSSergey Makeev# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
29247d53e4dSSergey Makeev# the files are not read by doxygen.
29347d53e4dSSergey Makeev
29447d53e4dSSergey MakeevEXTENSION_MAPPING      =
29547d53e4dSSergey Makeev
29647d53e4dSSergey Makeev# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
29747d53e4dSSergey Makeev# according to the Markdown format, which allows for more readable
29847d53e4dSSergey Makeev# documentation. See http://daringfireball.net/projects/markdown/ for details.
29947d53e4dSSergey Makeev# The output of markdown processing is further processed by doxygen, so you can
30047d53e4dSSergey Makeev# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
30147d53e4dSSergey Makeev# case of backward compatibilities issues.
30247d53e4dSSergey Makeev# The default value is: YES.
30347d53e4dSSergey Makeev
30447d53e4dSSergey MakeevMARKDOWN_SUPPORT       = YES
30547d53e4dSSergey Makeev
30647d53e4dSSergey Makeev# When enabled doxygen tries to link words that correspond to documented
30747d53e4dSSergey Makeev# classes, or namespaces to their corresponding documentation. Such a link can
30847d53e4dSSergey Makeev# be prevented in individual cases by putting a % sign in front of the word or
30947d53e4dSSergey Makeev# globally by setting AUTOLINK_SUPPORT to NO.
31047d53e4dSSergey Makeev# The default value is: YES.
31147d53e4dSSergey Makeev
31247d53e4dSSergey MakeevAUTOLINK_SUPPORT       = YES
31347d53e4dSSergey Makeev
31447d53e4dSSergey Makeev# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
31547d53e4dSSergey Makeev# to include (a tag file for) the STL sources as input, then you should set this
31647d53e4dSSergey Makeev# tag to YES in order to let doxygen match functions declarations and
31747d53e4dSSergey Makeev# definitions whose arguments contain STL classes (e.g. func(std::string);
31847d53e4dSSergey Makeev# versus func(std::string) {}). This also make the inheritance and collaboration
31947d53e4dSSergey Makeev# diagrams that involve STL classes more complete and accurate.
32047d53e4dSSergey Makeev# The default value is: NO.
32147d53e4dSSergey Makeev
32247d53e4dSSergey MakeevBUILTIN_STL_SUPPORT    = NO
32347d53e4dSSergey Makeev
32447d53e4dSSergey Makeev# If you use Microsoft's C++/CLI language, you should set this option to YES to
32547d53e4dSSergey Makeev# enable parsing support.
32647d53e4dSSergey Makeev# The default value is: NO.
32747d53e4dSSergey Makeev
32847d53e4dSSergey MakeevCPP_CLI_SUPPORT        = NO
32947d53e4dSSergey Makeev
33047d53e4dSSergey Makeev# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
33147d53e4dSSergey Makeev# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen
33247d53e4dSSergey Makeev# will parse them like normal C++ but will assume all classes use public instead
33347d53e4dSSergey Makeev# of private inheritance when no explicit protection keyword is present.
33447d53e4dSSergey Makeev# The default value is: NO.
33547d53e4dSSergey Makeev
33647d53e4dSSergey MakeevSIP_SUPPORT            = NO
33747d53e4dSSergey Makeev
33847d53e4dSSergey Makeev# For Microsoft's IDL there are propget and propput attributes to indicate
33947d53e4dSSergey Makeev# getter and setter methods for a property. Setting this option to YES will make
34047d53e4dSSergey Makeev# doxygen to replace the get and set methods by a property in the documentation.
34147d53e4dSSergey Makeev# This will only work if the methods are indeed getting or setting a simple
34247d53e4dSSergey Makeev# type. If this is not the case, or you want to show the methods anyway, you
34347d53e4dSSergey Makeev# should set this option to NO.
34447d53e4dSSergey Makeev# The default value is: YES.
34547d53e4dSSergey Makeev
34647d53e4dSSergey MakeevIDL_PROPERTY_SUPPORT   = YES
34747d53e4dSSergey Makeev
34847d53e4dSSergey Makeev# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
34947d53e4dSSergey Makeev# tag is set to YES then doxygen will reuse the documentation of the first
35047d53e4dSSergey Makeev# member in the group (if any) for the other members of the group. By default
35147d53e4dSSergey Makeev# all members of a group must be documented explicitly.
35247d53e4dSSergey Makeev# The default value is: NO.
35347d53e4dSSergey Makeev
35447d53e4dSSergey MakeevDISTRIBUTE_GROUP_DOC   = NO
35547d53e4dSSergey Makeev
35647d53e4dSSergey Makeev# Set the SUBGROUPING tag to YES to allow class member groups of the same type
35747d53e4dSSergey Makeev# (for instance a group of public functions) to be put as a subgroup of that
35847d53e4dSSergey Makeev# type (e.g. under the Public Functions section). Set it to NO to prevent
35947d53e4dSSergey Makeev# subgrouping. Alternatively, this can be done per class using the
36047d53e4dSSergey Makeev# \nosubgrouping command.
36147d53e4dSSergey Makeev# The default value is: YES.
36247d53e4dSSergey Makeev
36347d53e4dSSergey MakeevSUBGROUPING            = YES
36447d53e4dSSergey Makeev
36547d53e4dSSergey Makeev# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
36647d53e4dSSergey Makeev# are shown inside the group in which they are included (e.g. using \ingroup)
36747d53e4dSSergey Makeev# instead of on a separate page (for HTML and Man pages) or section (for LaTeX
36847d53e4dSSergey Makeev# and RTF).
36947d53e4dSSergey Makeev#
37047d53e4dSSergey Makeev# Note that this feature does not work in combination with
37147d53e4dSSergey Makeev# SEPARATE_MEMBER_PAGES.
37247d53e4dSSergey Makeev# The default value is: NO.
37347d53e4dSSergey Makeev
37447d53e4dSSergey MakeevINLINE_GROUPED_CLASSES = NO
37547d53e4dSSergey Makeev
37647d53e4dSSergey Makeev# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
37747d53e4dSSergey Makeev# with only public data fields or simple typedef fields will be shown inline in
37847d53e4dSSergey Makeev# the documentation of the scope in which they are defined (i.e. file,
37947d53e4dSSergey Makeev# namespace, or group documentation), provided this scope is documented. If set
38047d53e4dSSergey Makeev# to NO, structs, classes, and unions are shown on a separate page (for HTML and
38147d53e4dSSergey Makeev# Man pages) or section (for LaTeX and RTF).
38247d53e4dSSergey Makeev# The default value is: NO.
38347d53e4dSSergey Makeev
38447d53e4dSSergey MakeevINLINE_SIMPLE_STRUCTS  = NO
38547d53e4dSSergey Makeev
38647d53e4dSSergey Makeev# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
38747d53e4dSSergey Makeev# enum is documented as struct, union, or enum with the name of the typedef. So
38847d53e4dSSergey Makeev# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
38947d53e4dSSergey Makeev# with name TypeT. When disabled the typedef will appear as a member of a file,
39047d53e4dSSergey Makeev# namespace, or class. And the struct will be named TypeS. This can typically be
39147d53e4dSSergey Makeev# useful for C code in case the coding convention dictates that all compound
39247d53e4dSSergey Makeev# types are typedef'ed and only the typedef is referenced, never the tag name.
39347d53e4dSSergey Makeev# The default value is: NO.
39447d53e4dSSergey Makeev
39547d53e4dSSergey MakeevTYPEDEF_HIDES_STRUCT   = NO
39647d53e4dSSergey Makeev
39747d53e4dSSergey Makeev# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
39847d53e4dSSergey Makeev# cache is used to resolve symbols given their name and scope. Since this can be
39947d53e4dSSergey Makeev# an expensive process and often the same symbol appears multiple times in the
40047d53e4dSSergey Makeev# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
40147d53e4dSSergey Makeev# doxygen will become slower. If the cache is too large, memory is wasted. The
40247d53e4dSSergey Makeev# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
40347d53e4dSSergey Makeev# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
40447d53e4dSSergey Makeev# symbols. At the end of a run doxygen will report the cache usage and suggest
40547d53e4dSSergey Makeev# the optimal cache size from a speed point of view.
40647d53e4dSSergey Makeev# Minimum value: 0, maximum value: 9, default value: 0.
40747d53e4dSSergey Makeev
40847d53e4dSSergey MakeevLOOKUP_CACHE_SIZE      = 0
40947d53e4dSSergey Makeev
41047d53e4dSSergey Makeev#---------------------------------------------------------------------------
41147d53e4dSSergey Makeev# Build related configuration options
41247d53e4dSSergey Makeev#---------------------------------------------------------------------------
41347d53e4dSSergey Makeev
41447d53e4dSSergey Makeev# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in
41547d53e4dSSergey Makeev# documentation are documented, even if no documentation was available. Private
41647d53e4dSSergey Makeev# class members and static file members will be hidden unless the
41747d53e4dSSergey Makeev# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
41847d53e4dSSergey Makeev# Note: This will also disable the warnings about undocumented members that are
41947d53e4dSSergey Makeev# normally produced when WARNINGS is set to YES.
42047d53e4dSSergey Makeev# The default value is: NO.
42147d53e4dSSergey Makeev
42247d53e4dSSergey MakeevEXTRACT_ALL            = NO
42347d53e4dSSergey Makeev
42447d53e4dSSergey Makeev# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
42547d53e4dSSergey Makeev# be included in the documentation.
42647d53e4dSSergey Makeev# The default value is: NO.
42747d53e4dSSergey Makeev
42847d53e4dSSergey MakeevEXTRACT_PRIVATE        = NO
42947d53e4dSSergey Makeev
43047d53e4dSSergey Makeev# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
43147d53e4dSSergey Makeev# scope will be included in the documentation.
43247d53e4dSSergey Makeev# The default value is: NO.
43347d53e4dSSergey Makeev
43447d53e4dSSergey MakeevEXTRACT_PACKAGE        = NO
43547d53e4dSSergey Makeev
43647d53e4dSSergey Makeev# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be
43747d53e4dSSergey Makeev# included in the documentation.
43847d53e4dSSergey Makeev# The default value is: NO.
43947d53e4dSSergey Makeev
44047d53e4dSSergey MakeevEXTRACT_STATIC         = NO
44147d53e4dSSergey Makeev
44247d53e4dSSergey Makeev# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
44347d53e4dSSergey Makeev# locally in source files will be included in the documentation. If set to NO,
44447d53e4dSSergey Makeev# only classes defined in header files are included. Does not have any effect
44547d53e4dSSergey Makeev# for Java sources.
44647d53e4dSSergey Makeev# The default value is: YES.
44747d53e4dSSergey Makeev
44847d53e4dSSergey MakeevEXTRACT_LOCAL_CLASSES  = YES
44947d53e4dSSergey Makeev
45047d53e4dSSergey Makeev# This flag is only useful for Objective-C code. If set to YES, local methods,
45147d53e4dSSergey Makeev# which are defined in the implementation section but not in the interface are
45247d53e4dSSergey Makeev# included in the documentation. If set to NO, only methods in the interface are
45347d53e4dSSergey Makeev# included.
45447d53e4dSSergey Makeev# The default value is: NO.
45547d53e4dSSergey Makeev
45647d53e4dSSergey MakeevEXTRACT_LOCAL_METHODS  = NO
45747d53e4dSSergey Makeev
45847d53e4dSSergey Makeev# If this flag is set to YES, the members of anonymous namespaces will be
45947d53e4dSSergey Makeev# extracted and appear in the documentation as a namespace called
46047d53e4dSSergey Makeev# 'anonymous_namespace{file}', where file will be replaced with the base name of
46147d53e4dSSergey Makeev# the file that contains the anonymous namespace. By default anonymous namespace
46247d53e4dSSergey Makeev# are hidden.
46347d53e4dSSergey Makeev# The default value is: NO.
46447d53e4dSSergey Makeev
46547d53e4dSSergey MakeevEXTRACT_ANON_NSPACES   = NO
46647d53e4dSSergey Makeev
46747d53e4dSSergey Makeev# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
46847d53e4dSSergey Makeev# undocumented members inside documented classes or files. If set to NO these
46947d53e4dSSergey Makeev# members will be included in the various overviews, but no documentation
47047d53e4dSSergey Makeev# section is generated. This option has no effect if EXTRACT_ALL is enabled.
47147d53e4dSSergey Makeev# The default value is: NO.
47247d53e4dSSergey Makeev
47347d53e4dSSergey MakeevHIDE_UNDOC_MEMBERS     = NO
47447d53e4dSSergey Makeev
47547d53e4dSSergey Makeev# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
47647d53e4dSSergey Makeev# undocumented classes that are normally visible in the class hierarchy. If set
47747d53e4dSSergey Makeev# to NO, these classes will be included in the various overviews. This option
47847d53e4dSSergey Makeev# has no effect if EXTRACT_ALL is enabled.
47947d53e4dSSergey Makeev# The default value is: NO.
48047d53e4dSSergey Makeev
48147d53e4dSSergey MakeevHIDE_UNDOC_CLASSES     = NO
48247d53e4dSSergey Makeev
48347d53e4dSSergey Makeev# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
48447d53e4dSSergey Makeev# (class|struct|union) declarations. If set to NO, these declarations will be
48547d53e4dSSergey Makeev# included in the documentation.
48647d53e4dSSergey Makeev# The default value is: NO.
48747d53e4dSSergey Makeev
48847d53e4dSSergey MakeevHIDE_FRIEND_COMPOUNDS  = NO
48947d53e4dSSergey Makeev
49047d53e4dSSergey Makeev# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
49147d53e4dSSergey Makeev# documentation blocks found inside the body of a function. If set to NO, these
49247d53e4dSSergey Makeev# blocks will be appended to the function's detailed documentation block.
49347d53e4dSSergey Makeev# The default value is: NO.
49447d53e4dSSergey Makeev
49547d53e4dSSergey MakeevHIDE_IN_BODY_DOCS      = NO
49647d53e4dSSergey Makeev
49747d53e4dSSergey Makeev# The INTERNAL_DOCS tag determines if documentation that is typed after a
49847d53e4dSSergey Makeev# \internal command is included. If the tag is set to NO then the documentation
49947d53e4dSSergey Makeev# will be excluded. Set it to YES to include the internal documentation.
50047d53e4dSSergey Makeev# The default value is: NO.
50147d53e4dSSergey Makeev
50247d53e4dSSergey MakeevINTERNAL_DOCS          = NO
50347d53e4dSSergey Makeev
50447d53e4dSSergey Makeev# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
50547d53e4dSSergey Makeev# names in lower-case letters. If set to YES, upper-case letters are also
50647d53e4dSSergey Makeev# allowed. This is useful if you have classes or files whose names only differ
50747d53e4dSSergey Makeev# in case and if your file system supports case sensitive file names. Windows
50847d53e4dSSergey Makeev# and Mac users are advised to set this option to NO.
50947d53e4dSSergey Makeev# The default value is: system dependent.
51047d53e4dSSergey Makeev
51147d53e4dSSergey MakeevCASE_SENSE_NAMES       = NO
51247d53e4dSSergey Makeev
51347d53e4dSSergey Makeev# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
51447d53e4dSSergey Makeev# their full class and namespace scopes in the documentation. If set to YES, the
51547d53e4dSSergey Makeev# scope will be hidden.
51647d53e4dSSergey Makeev# The default value is: NO.
51747d53e4dSSergey Makeev
51847d53e4dSSergey MakeevHIDE_SCOPE_NAMES       = NO
51947d53e4dSSergey Makeev
52047d53e4dSSergey Makeev# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will
52147d53e4dSSergey Makeev# append additional text to a page's title, such as Class Reference. If set to
52247d53e4dSSergey Makeev# YES the compound reference will be hidden.
52347d53e4dSSergey Makeev# The default value is: NO.
52447d53e4dSSergey Makeev
52547d53e4dSSergey MakeevHIDE_COMPOUND_REFERENCE= NO
52647d53e4dSSergey Makeev
52747d53e4dSSergey Makeev# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
52847d53e4dSSergey Makeev# the files that are included by a file in the documentation of that file.
52947d53e4dSSergey Makeev# The default value is: YES.
53047d53e4dSSergey Makeev
53147d53e4dSSergey MakeevSHOW_INCLUDE_FILES     = YES
53247d53e4dSSergey Makeev
53347d53e4dSSergey Makeev# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
53447d53e4dSSergey Makeev# grouped member an include statement to the documentation, telling the reader
53547d53e4dSSergey Makeev# which file to include in order to use the member.
53647d53e4dSSergey Makeev# The default value is: NO.
53747d53e4dSSergey Makeev
53847d53e4dSSergey MakeevSHOW_GROUPED_MEMB_INC  = NO
53947d53e4dSSergey Makeev
54047d53e4dSSergey Makeev# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
54147d53e4dSSergey Makeev# files with double quotes in the documentation rather than with sharp brackets.
54247d53e4dSSergey Makeev# The default value is: NO.
54347d53e4dSSergey Makeev
54447d53e4dSSergey MakeevFORCE_LOCAL_INCLUDES   = NO
54547d53e4dSSergey Makeev
54647d53e4dSSergey Makeev# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
54747d53e4dSSergey Makeev# documentation for inline members.
54847d53e4dSSergey Makeev# The default value is: YES.
54947d53e4dSSergey Makeev
55047d53e4dSSergey MakeevINLINE_INFO            = YES
55147d53e4dSSergey Makeev
55247d53e4dSSergey Makeev# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
55347d53e4dSSergey Makeev# (detailed) documentation of file and class members alphabetically by member
55447d53e4dSSergey Makeev# name. If set to NO, the members will appear in declaration order.
55547d53e4dSSergey Makeev# The default value is: YES.
55647d53e4dSSergey Makeev
55747d53e4dSSergey MakeevSORT_MEMBER_DOCS       = YES
55847d53e4dSSergey Makeev
55947d53e4dSSergey Makeev# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
56047d53e4dSSergey Makeev# descriptions of file, namespace and class members alphabetically by member
56147d53e4dSSergey Makeev# name. If set to NO, the members will appear in declaration order. Note that
56247d53e4dSSergey Makeev# this will also influence the order of the classes in the class list.
56347d53e4dSSergey Makeev# The default value is: NO.
56447d53e4dSSergey Makeev
56547d53e4dSSergey MakeevSORT_BRIEF_DOCS        = NO
56647d53e4dSSergey Makeev
56747d53e4dSSergey Makeev# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
56847d53e4dSSergey Makeev# (brief and detailed) documentation of class members so that constructors and
56947d53e4dSSergey Makeev# destructors are listed first. If set to NO the constructors will appear in the
57047d53e4dSSergey Makeev# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
57147d53e4dSSergey Makeev# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
57247d53e4dSSergey Makeev# member documentation.
57347d53e4dSSergey Makeev# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
57447d53e4dSSergey Makeev# detailed member documentation.
57547d53e4dSSergey Makeev# The default value is: NO.
57647d53e4dSSergey Makeev
57747d53e4dSSergey MakeevSORT_MEMBERS_CTORS_1ST = NO
57847d53e4dSSergey Makeev
57947d53e4dSSergey Makeev# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
58047d53e4dSSergey Makeev# of group names into alphabetical order. If set to NO the group names will
58147d53e4dSSergey Makeev# appear in their defined order.
58247d53e4dSSergey Makeev# The default value is: NO.
58347d53e4dSSergey Makeev
58447d53e4dSSergey MakeevSORT_GROUP_NAMES       = NO
58547d53e4dSSergey Makeev
58647d53e4dSSergey Makeev# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
58747d53e4dSSergey Makeev# fully-qualified names, including namespaces. If set to NO, the class list will
58847d53e4dSSergey Makeev# be sorted only by class name, not including the namespace part.
58947d53e4dSSergey Makeev# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
59047d53e4dSSergey Makeev# Note: This option applies only to the class list, not to the alphabetical
59147d53e4dSSergey Makeev# list.
59247d53e4dSSergey Makeev# The default value is: NO.
59347d53e4dSSergey Makeev
59447d53e4dSSergey MakeevSORT_BY_SCOPE_NAME     = NO
59547d53e4dSSergey Makeev
59647d53e4dSSergey Makeev# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
59747d53e4dSSergey Makeev# type resolution of all parameters of a function it will reject a match between
59847d53e4dSSergey Makeev# the prototype and the implementation of a member function even if there is
59947d53e4dSSergey Makeev# only one candidate or it is obvious which candidate to choose by doing a
60047d53e4dSSergey Makeev# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
60147d53e4dSSergey Makeev# accept a match between prototype and implementation in such cases.
60247d53e4dSSergey Makeev# The default value is: NO.
60347d53e4dSSergey Makeev
60447d53e4dSSergey MakeevSTRICT_PROTO_MATCHING  = NO
60547d53e4dSSergey Makeev
60647d53e4dSSergey Makeev# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo
60747d53e4dSSergey Makeev# list. This list is created by putting \todo commands in the documentation.
60847d53e4dSSergey Makeev# The default value is: YES.
60947d53e4dSSergey Makeev
61047d53e4dSSergey MakeevGENERATE_TODOLIST      = YES
61147d53e4dSSergey Makeev
61247d53e4dSSergey Makeev# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test
61347d53e4dSSergey Makeev# list. This list is created by putting \test commands in the documentation.
61447d53e4dSSergey Makeev# The default value is: YES.
61547d53e4dSSergey Makeev
61647d53e4dSSergey MakeevGENERATE_TESTLIST      = YES
61747d53e4dSSergey Makeev
61847d53e4dSSergey Makeev# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
61947d53e4dSSergey Makeev# list. This list is created by putting \bug commands in the documentation.
62047d53e4dSSergey Makeev# The default value is: YES.
62147d53e4dSSergey Makeev
62247d53e4dSSergey MakeevGENERATE_BUGLIST       = YES
62347d53e4dSSergey Makeev
62447d53e4dSSergey Makeev# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
62547d53e4dSSergey Makeev# the deprecated list. This list is created by putting \deprecated commands in
62647d53e4dSSergey Makeev# the documentation.
62747d53e4dSSergey Makeev# The default value is: YES.
62847d53e4dSSergey Makeev
62947d53e4dSSergey MakeevGENERATE_DEPRECATEDLIST= YES
63047d53e4dSSergey Makeev
63147d53e4dSSergey Makeev# The ENABLED_SECTIONS tag can be used to enable conditional documentation
63247d53e4dSSergey Makeev# sections, marked by \if <section_label> ... \endif and \cond <section_label>
63347d53e4dSSergey Makeev# ... \endcond blocks.
63447d53e4dSSergey Makeev
63547d53e4dSSergey MakeevENABLED_SECTIONS       =
63647d53e4dSSergey Makeev
63747d53e4dSSergey Makeev# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
63847d53e4dSSergey Makeev# initial value of a variable or macro / define can have for it to appear in the
63947d53e4dSSergey Makeev# documentation. If the initializer consists of more lines than specified here
64047d53e4dSSergey Makeev# it will be hidden. Use a value of 0 to hide initializers completely. The
64147d53e4dSSergey Makeev# appearance of the value of individual variables and macros / defines can be
64247d53e4dSSergey Makeev# controlled using \showinitializer or \hideinitializer command in the
64347d53e4dSSergey Makeev# documentation regardless of this setting.
64447d53e4dSSergey Makeev# Minimum value: 0, maximum value: 10000, default value: 30.
64547d53e4dSSergey Makeev
64647d53e4dSSergey MakeevMAX_INITIALIZER_LINES  = 30
64747d53e4dSSergey Makeev
64847d53e4dSSergey Makeev# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
64947d53e4dSSergey Makeev# the bottom of the documentation of classes and structs. If set to YES, the
65047d53e4dSSergey Makeev# list will mention the files that were used to generate the documentation.
65147d53e4dSSergey Makeev# The default value is: YES.
65247d53e4dSSergey Makeev
65347d53e4dSSergey MakeevSHOW_USED_FILES        = YES
65447d53e4dSSergey Makeev
65547d53e4dSSergey Makeev# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
65647d53e4dSSergey Makeev# will remove the Files entry from the Quick Index and from the Folder Tree View
65747d53e4dSSergey Makeev# (if specified).
65847d53e4dSSergey Makeev# The default value is: YES.
65947d53e4dSSergey Makeev
66047d53e4dSSergey MakeevSHOW_FILES             = YES
66147d53e4dSSergey Makeev
66247d53e4dSSergey Makeev# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
66347d53e4dSSergey Makeev# page. This will remove the Namespaces entry from the Quick Index and from the
66447d53e4dSSergey Makeev# Folder Tree View (if specified).
66547d53e4dSSergey Makeev# The default value is: YES.
66647d53e4dSSergey Makeev
66747d53e4dSSergey MakeevSHOW_NAMESPACES        = YES
66847d53e4dSSergey Makeev
66947d53e4dSSergey Makeev# The FILE_VERSION_FILTER tag can be used to specify a program or script that
67047d53e4dSSergey Makeev# doxygen should invoke to get the current version for each file (typically from
67147d53e4dSSergey Makeev# the version control system). Doxygen will invoke the program by executing (via
67247d53e4dSSergey Makeev# popen()) the command command input-file, where command is the value of the
67347d53e4dSSergey Makeev# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
67447d53e4dSSergey Makeev# by doxygen. Whatever the program writes to standard output is used as the file
67547d53e4dSSergey Makeev# version. For an example see the documentation.
67647d53e4dSSergey Makeev
67747d53e4dSSergey MakeevFILE_VERSION_FILTER    =
67847d53e4dSSergey Makeev
67947d53e4dSSergey Makeev# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
68047d53e4dSSergey Makeev# by doxygen. The layout file controls the global structure of the generated
68147d53e4dSSergey Makeev# output files in an output format independent way. To create the layout file
68247d53e4dSSergey Makeev# that represents doxygen's defaults, run doxygen with the -l option. You can
68347d53e4dSSergey Makeev# optionally specify a file name after the option, if omitted DoxygenLayout.xml
68447d53e4dSSergey Makeev# will be used as the name of the layout file.
68547d53e4dSSergey Makeev#
68647d53e4dSSergey Makeev# Note that if you run doxygen from a directory containing a file called
68747d53e4dSSergey Makeev# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
68847d53e4dSSergey Makeev# tag is left empty.
68947d53e4dSSergey Makeev
69047d53e4dSSergey MakeevLAYOUT_FILE            =
69147d53e4dSSergey Makeev
69247d53e4dSSergey Makeev# The CITE_BIB_FILES tag can be used to specify one or more bib files containing
69347d53e4dSSergey Makeev# the reference definitions. This must be a list of .bib files. The .bib
69447d53e4dSSergey Makeev# extension is automatically appended if omitted. This requires the bibtex tool
69547d53e4dSSergey Makeev# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info.
69647d53e4dSSergey Makeev# For LaTeX the style of the bibliography can be controlled using
69747d53e4dSSergey Makeev# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
69847d53e4dSSergey Makeev# search path. See also \cite for info how to create references.
69947d53e4dSSergey Makeev
70047d53e4dSSergey MakeevCITE_BIB_FILES         =
70147d53e4dSSergey Makeev
70247d53e4dSSergey Makeev#---------------------------------------------------------------------------
70347d53e4dSSergey Makeev# Configuration options related to warning and progress messages
70447d53e4dSSergey Makeev#---------------------------------------------------------------------------
70547d53e4dSSergey Makeev
70647d53e4dSSergey Makeev# The QUIET tag can be used to turn on/off the messages that are generated to
70747d53e4dSSergey Makeev# standard output by doxygen. If QUIET is set to YES this implies that the
70847d53e4dSSergey Makeev# messages are off.
70947d53e4dSSergey Makeev# The default value is: NO.
71047d53e4dSSergey Makeev
71147d53e4dSSergey MakeevQUIET                  = NO
71247d53e4dSSergey Makeev
71347d53e4dSSergey Makeev# The WARNINGS tag can be used to turn on/off the warning messages that are
71447d53e4dSSergey Makeev# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
71547d53e4dSSergey Makeev# this implies that the warnings are on.
71647d53e4dSSergey Makeev#
71747d53e4dSSergey Makeev# Tip: Turn warnings on while writing the documentation.
71847d53e4dSSergey Makeev# The default value is: YES.
71947d53e4dSSergey Makeev
72047d53e4dSSergey MakeevWARNINGS               = YES
72147d53e4dSSergey Makeev
72247d53e4dSSergey Makeev# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate
72347d53e4dSSergey Makeev# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
72447d53e4dSSergey Makeev# will automatically be disabled.
72547d53e4dSSergey Makeev# The default value is: YES.
72647d53e4dSSergey Makeev
72747d53e4dSSergey MakeevWARN_IF_UNDOCUMENTED   = YES
72847d53e4dSSergey Makeev
72947d53e4dSSergey Makeev# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
73047d53e4dSSergey Makeev# potential errors in the documentation, such as not documenting some parameters
73147d53e4dSSergey Makeev# in a documented function, or documenting parameters that don't exist or using
73247d53e4dSSergey Makeev# markup commands wrongly.
73347d53e4dSSergey Makeev# The default value is: YES.
73447d53e4dSSergey Makeev
73547d53e4dSSergey MakeevWARN_IF_DOC_ERROR      = YES
73647d53e4dSSergey Makeev
73747d53e4dSSergey Makeev# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
73847d53e4dSSergey Makeev# are documented, but have no documentation for their parameters or return
73947d53e4dSSergey Makeev# value. If set to NO, doxygen will only warn about wrong or incomplete
74047d53e4dSSergey Makeev# parameter documentation, but not about the absence of documentation.
74147d53e4dSSergey Makeev# The default value is: NO.
74247d53e4dSSergey Makeev
74347d53e4dSSergey MakeevWARN_NO_PARAMDOC       = NO
74447d53e4dSSergey Makeev
74547d53e4dSSergey Makeev# The WARN_FORMAT tag determines the format of the warning messages that doxygen
74647d53e4dSSergey Makeev# can produce. The string should contain the $file, $line, and $text tags, which
74747d53e4dSSergey Makeev# will be replaced by the file and line number from which the warning originated
74847d53e4dSSergey Makeev# and the warning text. Optionally the format may contain $version, which will
74947d53e4dSSergey Makeev# be replaced by the version of the file (if it could be obtained via
75047d53e4dSSergey Makeev# FILE_VERSION_FILTER)
75147d53e4dSSergey Makeev# The default value is: $file:$line: $text.
75247d53e4dSSergey Makeev
75347d53e4dSSergey MakeevWARN_FORMAT            = "$file:$line: $text"
75447d53e4dSSergey Makeev
75547d53e4dSSergey Makeev# The WARN_LOGFILE tag can be used to specify a file to which warning and error
75647d53e4dSSergey Makeev# messages should be written. If left blank the output is written to standard
75747d53e4dSSergey Makeev# error (stderr).
75847d53e4dSSergey Makeev
75947d53e4dSSergey MakeevWARN_LOGFILE           =
76047d53e4dSSergey Makeev
76147d53e4dSSergey Makeev#---------------------------------------------------------------------------
76247d53e4dSSergey Makeev# Configuration options related to the input files
76347d53e4dSSergey Makeev#---------------------------------------------------------------------------
76447d53e4dSSergey Makeev
76547d53e4dSSergey Makeev# The INPUT tag is used to specify the files and/or directories that contain
76647d53e4dSSergey Makeev# documented source files. You may enter file names like myfile.cpp or
76747d53e4dSSergey Makeev# directories like /usr/src/myproject. Separate the files or directories with
76847d53e4dSSergey Makeev# spaces.
76947d53e4dSSergey Makeev# Note: If this tag is empty the current directory is searched.
77047d53e4dSSergey Makeev
77147d53e4dSSergey MakeevINPUT                  = ../Include
77247d53e4dSSergey Makeev
77347d53e4dSSergey Makeev# This tag can be used to specify the character encoding of the source files
77447d53e4dSSergey Makeev# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
77547d53e4dSSergey Makeev# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
77647d53e4dSSergey Makeev# documentation (see: http://www.gnu.org/software/libiconv) for the list of
77747d53e4dSSergey Makeev# possible encodings.
77847d53e4dSSergey Makeev# The default value is: UTF-8.
77947d53e4dSSergey Makeev
78047d53e4dSSergey MakeevINPUT_ENCODING         = UTF-8
78147d53e4dSSergey Makeev
78247d53e4dSSergey Makeev# If the value of the INPUT tag contains directories, you can use the
78347d53e4dSSergey Makeev# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
78447d53e4dSSergey Makeev# *.h) to filter out the source-files in the directories. If left blank the
78547d53e4dSSergey Makeev# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii,
78647d53e4dSSergey Makeev# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp,
78747d53e4dSSergey Makeev# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown,
78847d53e4dSSergey Makeev# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf,
78947d53e4dSSergey Makeev# *.qsf, *.as and *.js.
79047d53e4dSSergey Makeev
79147d53e4dSSergey MakeevFILE_PATTERNS          = *.c \
79247d53e4dSSergey Makeev                         *.cc \
79347d53e4dSSergey Makeev                         *.cxx \
79447d53e4dSSergey Makeev                         *.cpp \
79547d53e4dSSergey Makeev                         *.c++ \
79647d53e4dSSergey Makeev                         *.java \
79747d53e4dSSergey Makeev                         *.ii \
79847d53e4dSSergey Makeev                         *.ixx \
79947d53e4dSSergey Makeev                         *.ipp \
80047d53e4dSSergey Makeev                         *.i++ \
80147d53e4dSSergey Makeev                         *.inl \
80247d53e4dSSergey Makeev                         *.idl \
80347d53e4dSSergey Makeev                         *.ddl \
80447d53e4dSSergey Makeev                         *.odl \
80547d53e4dSSergey Makeev                         *.h \
80647d53e4dSSergey Makeev                         *.hh \
80747d53e4dSSergey Makeev                         *.hxx \
80847d53e4dSSergey Makeev                         *.hpp \
80947d53e4dSSergey Makeev                         *.h++ \
81047d53e4dSSergey Makeev                         *.cs \
81147d53e4dSSergey Makeev                         *.d \
81247d53e4dSSergey Makeev                         *.php \
81347d53e4dSSergey Makeev                         *.php4 \
81447d53e4dSSergey Makeev                         *.php5 \
81547d53e4dSSergey Makeev                         *.phtml \
81647d53e4dSSergey Makeev                         *.inc \
81747d53e4dSSergey Makeev                         *.m \
81847d53e4dSSergey Makeev                         *.markdown \
81947d53e4dSSergey Makeev                         *.md \
82047d53e4dSSergey Makeev                         *.mm \
82147d53e4dSSergey Makeev                         *.dox \
82247d53e4dSSergey Makeev                         *.py \
82347d53e4dSSergey Makeev                         *.f90 \
82447d53e4dSSergey Makeev                         *.f \
82547d53e4dSSergey Makeev                         *.for \
82647d53e4dSSergey Makeev                         *.tcl \
82747d53e4dSSergey Makeev                         *.vhd \
82847d53e4dSSergey Makeev                         *.vhdl \
82947d53e4dSSergey Makeev                         *.ucf \
83047d53e4dSSergey Makeev                         *.qsf \
83147d53e4dSSergey Makeev                         *.as \
83247d53e4dSSergey Makeev                         *.js
83347d53e4dSSergey Makeev
83447d53e4dSSergey Makeev# The RECURSIVE tag can be used to specify whether or not subdirectories should
83547d53e4dSSergey Makeev# be searched for input files as well.
83647d53e4dSSergey Makeev# The default value is: NO.
83747d53e4dSSergey Makeev
83847d53e4dSSergey MakeevRECURSIVE              = YES
83947d53e4dSSergey Makeev
84047d53e4dSSergey Makeev# The EXCLUDE tag can be used to specify files and/or directories that should be
84147d53e4dSSergey Makeev# excluded from the INPUT source files. This way you can easily exclude a
84247d53e4dSSergey Makeev# subdirectory from a directory tree whose root is specified with the INPUT tag.
84347d53e4dSSergey Makeev#
84447d53e4dSSergey Makeev# Note that relative paths are relative to the directory from which doxygen is
84547d53e4dSSergey Makeev# run.
84647d53e4dSSergey Makeev
84747d53e4dSSergey MakeevEXCLUDE                =
84847d53e4dSSergey Makeev
84947d53e4dSSergey Makeev# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
85047d53e4dSSergey Makeev# directories that are symbolic links (a Unix file system feature) are excluded
85147d53e4dSSergey Makeev# from the input.
85247d53e4dSSergey Makeev# The default value is: NO.
85347d53e4dSSergey Makeev
85447d53e4dSSergey MakeevEXCLUDE_SYMLINKS       = NO
85547d53e4dSSergey Makeev
85647d53e4dSSergey Makeev# If the value of the INPUT tag contains directories, you can use the
85747d53e4dSSergey Makeev# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
85847d53e4dSSergey Makeev# certain files from those directories.
85947d53e4dSSergey Makeev#
86047d53e4dSSergey Makeev# Note that the wildcards are matched against the file with absolute path, so to
86147d53e4dSSergey Makeev# exclude all test directories for example use the pattern */test/*
86247d53e4dSSergey Makeev
86347d53e4dSSergey MakeevEXCLUDE_PATTERNS       =
86447d53e4dSSergey Makeev
86547d53e4dSSergey Makeev# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
86647d53e4dSSergey Makeev# (namespaces, classes, functions, etc.) that should be excluded from the
86747d53e4dSSergey Makeev# output. The symbol name can be a fully qualified name, a word, or if the
86847d53e4dSSergey Makeev# wildcard * is used, a substring. Examples: ANamespace, AClass,
86947d53e4dSSergey Makeev# AClass::ANamespace, ANamespace::*Test
87047d53e4dSSergey Makeev#
87147d53e4dSSergey Makeev# Note that the wildcards are matched against the file with absolute path, so to
87247d53e4dSSergey Makeev# exclude all test directories use the pattern */test/*
87347d53e4dSSergey Makeev
87447d53e4dSSergey MakeevEXCLUDE_SYMBOLS        =
87547d53e4dSSergey Makeev
87647d53e4dSSergey Makeev# The EXAMPLE_PATH tag can be used to specify one or more files or directories
87747d53e4dSSergey Makeev# that contain example code fragments that are included (see the \include
87847d53e4dSSergey Makeev# command).
87947d53e4dSSergey Makeev
88047d53e4dSSergey MakeevEXAMPLE_PATH           =
88147d53e4dSSergey Makeev
88247d53e4dSSergey Makeev# If the value of the EXAMPLE_PATH tag contains directories, you can use the
88347d53e4dSSergey Makeev# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
88447d53e4dSSergey Makeev# *.h) to filter out the source-files in the directories. If left blank all
88547d53e4dSSergey Makeev# files are included.
88647d53e4dSSergey Makeev
88747d53e4dSSergey MakeevEXAMPLE_PATTERNS       = *
88847d53e4dSSergey Makeev
88947d53e4dSSergey Makeev# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
89047d53e4dSSergey Makeev# searched for input files to be used with the \include or \dontinclude commands
89147d53e4dSSergey Makeev# irrespective of the value of the RECURSIVE tag.
89247d53e4dSSergey Makeev# The default value is: NO.
89347d53e4dSSergey Makeev
89447d53e4dSSergey MakeevEXAMPLE_RECURSIVE      = NO
89547d53e4dSSergey Makeev
89647d53e4dSSergey Makeev# The IMAGE_PATH tag can be used to specify one or more files or directories
89747d53e4dSSergey Makeev# that contain images that are to be included in the documentation (see the
89847d53e4dSSergey Makeev# \image command).
89947d53e4dSSergey Makeev
90047d53e4dSSergey MakeevIMAGE_PATH             =
90147d53e4dSSergey Makeev
90247d53e4dSSergey Makeev# The INPUT_FILTER tag can be used to specify a program that doxygen should
90347d53e4dSSergey Makeev# invoke to filter for each input file. Doxygen will invoke the filter program
90447d53e4dSSergey Makeev# by executing (via popen()) the command:
90547d53e4dSSergey Makeev#
90647d53e4dSSergey Makeev# <filter> <input-file>
90747d53e4dSSergey Makeev#
90847d53e4dSSergey Makeev# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
90947d53e4dSSergey Makeev# name of an input file. Doxygen will then use the output that the filter
91047d53e4dSSergey Makeev# program writes to standard output. If FILTER_PATTERNS is specified, this tag
91147d53e4dSSergey Makeev# will be ignored.
91247d53e4dSSergey Makeev#
91347d53e4dSSergey Makeev# Note that the filter must not add or remove lines; it is applied before the
91447d53e4dSSergey Makeev# code is scanned, but not when the output code is generated. If lines are added
91547d53e4dSSergey Makeev# or removed, the anchors will not be placed correctly.
91647d53e4dSSergey Makeev
91747d53e4dSSergey MakeevINPUT_FILTER           =
91847d53e4dSSergey Makeev
91947d53e4dSSergey Makeev# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
92047d53e4dSSergey Makeev# basis. Doxygen will compare the file name with each pattern and apply the
92147d53e4dSSergey Makeev# filter if there is a match. The filters are a list of the form: pattern=filter
92247d53e4dSSergey Makeev# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
92347d53e4dSSergey Makeev# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
92447d53e4dSSergey Makeev# patterns match the file name, INPUT_FILTER is applied.
92547d53e4dSSergey Makeev
92647d53e4dSSergey MakeevFILTER_PATTERNS        =
92747d53e4dSSergey Makeev
92847d53e4dSSergey Makeev# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
92947d53e4dSSergey Makeev# INPUT_FILTER) will also be used to filter the input files that are used for
93047d53e4dSSergey Makeev# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
93147d53e4dSSergey Makeev# The default value is: NO.
93247d53e4dSSergey Makeev
93347d53e4dSSergey MakeevFILTER_SOURCE_FILES    = NO
93447d53e4dSSergey Makeev
93547d53e4dSSergey Makeev# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
93647d53e4dSSergey Makeev# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
93747d53e4dSSergey Makeev# it is also possible to disable source filtering for a specific pattern using
93847d53e4dSSergey Makeev# *.ext= (so without naming a filter).
93947d53e4dSSergey Makeev# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
94047d53e4dSSergey Makeev
94147d53e4dSSergey MakeevFILTER_SOURCE_PATTERNS =
94247d53e4dSSergey Makeev
94347d53e4dSSergey Makeev# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
94447d53e4dSSergey Makeev# is part of the input, its contents will be placed on the main page
94547d53e4dSSergey Makeev# (index.html). This can be useful if you have a project on for instance GitHub
94647d53e4dSSergey Makeev# and want to reuse the introduction page also for the doxygen output.
94747d53e4dSSergey Makeev
94847d53e4dSSergey MakeevUSE_MDFILE_AS_MAINPAGE =
94947d53e4dSSergey Makeev
95047d53e4dSSergey Makeev#---------------------------------------------------------------------------
95147d53e4dSSergey Makeev# Configuration options related to source browsing
95247d53e4dSSergey Makeev#---------------------------------------------------------------------------
95347d53e4dSSergey Makeev
95447d53e4dSSergey Makeev# If the SOURCE_BROWSER tag is set to YES then a list of source files will be
95547d53e4dSSergey Makeev# generated. Documented entities will be cross-referenced with these sources.
95647d53e4dSSergey Makeev#
95747d53e4dSSergey Makeev# Note: To get rid of all source code in the generated output, make sure that
95847d53e4dSSergey Makeev# also VERBATIM_HEADERS is set to NO.
95947d53e4dSSergey Makeev# The default value is: NO.
96047d53e4dSSergey Makeev
96147d53e4dSSergey MakeevSOURCE_BROWSER         = NO
96247d53e4dSSergey Makeev
96347d53e4dSSergey Makeev# Setting the INLINE_SOURCES tag to YES will include the body of functions,
96447d53e4dSSergey Makeev# classes and enums directly into the documentation.
96547d53e4dSSergey Makeev# The default value is: NO.
96647d53e4dSSergey Makeev
96747d53e4dSSergey MakeevINLINE_SOURCES         = NO
96847d53e4dSSergey Makeev
96947d53e4dSSergey Makeev# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
97047d53e4dSSergey Makeev# special comment blocks from generated source code fragments. Normal C, C++ and
97147d53e4dSSergey Makeev# Fortran comments will always remain visible.
97247d53e4dSSergey Makeev# The default value is: YES.
97347d53e4dSSergey Makeev
97447d53e4dSSergey MakeevSTRIP_CODE_COMMENTS    = YES
97547d53e4dSSergey Makeev
97647d53e4dSSergey Makeev# If the REFERENCED_BY_RELATION tag is set to YES then for each documented
97747d53e4dSSergey Makeev# function all documented functions referencing it will be listed.
97847d53e4dSSergey Makeev# The default value is: NO.
97947d53e4dSSergey Makeev
98047d53e4dSSergey MakeevREFERENCED_BY_RELATION = NO
98147d53e4dSSergey Makeev
98247d53e4dSSergey Makeev# If the REFERENCES_RELATION tag is set to YES then for each documented function
98347d53e4dSSergey Makeev# all documented entities called/used by that function will be listed.
98447d53e4dSSergey Makeev# The default value is: NO.
98547d53e4dSSergey Makeev
98647d53e4dSSergey MakeevREFERENCES_RELATION    = NO
98747d53e4dSSergey Makeev
98847d53e4dSSergey Makeev# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
98947d53e4dSSergey Makeev# to YES then the hyperlinks from functions in REFERENCES_RELATION and
99047d53e4dSSergey Makeev# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
99147d53e4dSSergey Makeev# link to the documentation.
99247d53e4dSSergey Makeev# The default value is: YES.
99347d53e4dSSergey Makeev
99447d53e4dSSergey MakeevREFERENCES_LINK_SOURCE = YES
99547d53e4dSSergey Makeev
99647d53e4dSSergey Makeev# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
99747d53e4dSSergey Makeev# source code will show a tooltip with additional information such as prototype,
99847d53e4dSSergey Makeev# brief description and links to the definition and documentation. Since this
99947d53e4dSSergey Makeev# will make the HTML file larger and loading of large files a bit slower, you
100047d53e4dSSergey Makeev# can opt to disable this feature.
100147d53e4dSSergey Makeev# The default value is: YES.
100247d53e4dSSergey Makeev# This tag requires that the tag SOURCE_BROWSER is set to YES.
100347d53e4dSSergey Makeev
100447d53e4dSSergey MakeevSOURCE_TOOLTIPS        = YES
100547d53e4dSSergey Makeev
100647d53e4dSSergey Makeev# If the USE_HTAGS tag is set to YES then the references to source code will
100747d53e4dSSergey Makeev# point to the HTML generated by the htags(1) tool instead of doxygen built-in
100847d53e4dSSergey Makeev# source browser. The htags tool is part of GNU's global source tagging system
100947d53e4dSSergey Makeev# (see http://www.gnu.org/software/global/global.html). You will need version
101047d53e4dSSergey Makeev# 4.8.6 or higher.
101147d53e4dSSergey Makeev#
101247d53e4dSSergey Makeev# To use it do the following:
101347d53e4dSSergey Makeev# - Install the latest version of global
101447d53e4dSSergey Makeev# - Enable SOURCE_BROWSER and USE_HTAGS in the config file
101547d53e4dSSergey Makeev# - Make sure the INPUT points to the root of the source tree
101647d53e4dSSergey Makeev# - Run doxygen as normal
101747d53e4dSSergey Makeev#
101847d53e4dSSergey Makeev# Doxygen will invoke htags (and that will in turn invoke gtags), so these
101947d53e4dSSergey Makeev# tools must be available from the command line (i.e. in the search path).
102047d53e4dSSergey Makeev#
102147d53e4dSSergey Makeev# The result: instead of the source browser generated by doxygen, the links to
102247d53e4dSSergey Makeev# source code will now point to the output of htags.
102347d53e4dSSergey Makeev# The default value is: NO.
102447d53e4dSSergey Makeev# This tag requires that the tag SOURCE_BROWSER is set to YES.
102547d53e4dSSergey Makeev
102647d53e4dSSergey MakeevUSE_HTAGS              = NO
102747d53e4dSSergey Makeev
102847d53e4dSSergey Makeev# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
102947d53e4dSSergey Makeev# verbatim copy of the header file for each class for which an include is
103047d53e4dSSergey Makeev# specified. Set to NO to disable this.
103147d53e4dSSergey Makeev# See also: Section \class.
103247d53e4dSSergey Makeev# The default value is: YES.
103347d53e4dSSergey Makeev
103447d53e4dSSergey MakeevVERBATIM_HEADERS       = YES
103547d53e4dSSergey Makeev
103647d53e4dSSergey Makeev# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the
103747d53e4dSSergey Makeev# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the
103847d53e4dSSergey Makeev# cost of reduced performance. This can be particularly helpful with template
103947d53e4dSSergey Makeev# rich C++ code for which doxygen's built-in parser lacks the necessary type
104047d53e4dSSergey Makeev# information.
104147d53e4dSSergey Makeev# Note: The availability of this option depends on whether or not doxygen was
104247d53e4dSSergey Makeev# compiled with the --with-libclang option.
104347d53e4dSSergey Makeev# The default value is: NO.
104447d53e4dSSergey Makeev
104547d53e4dSSergey MakeevCLANG_ASSISTED_PARSING = NO
104647d53e4dSSergey Makeev
104747d53e4dSSergey Makeev# If clang assisted parsing is enabled you can provide the compiler with command
104847d53e4dSSergey Makeev# line options that you would normally use when invoking the compiler. Note that
104947d53e4dSSergey Makeev# the include paths will already be set by doxygen for the files and directories
105047d53e4dSSergey Makeev# specified with INPUT and INCLUDE_PATH.
105147d53e4dSSergey Makeev# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.
105247d53e4dSSergey Makeev
105347d53e4dSSergey MakeevCLANG_OPTIONS          =
105447d53e4dSSergey Makeev
105547d53e4dSSergey Makeev#---------------------------------------------------------------------------
105647d53e4dSSergey Makeev# Configuration options related to the alphabetical class index
105747d53e4dSSergey Makeev#---------------------------------------------------------------------------
105847d53e4dSSergey Makeev
105947d53e4dSSergey Makeev# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
106047d53e4dSSergey Makeev# compounds will be generated. Enable this if the project contains a lot of
106147d53e4dSSergey Makeev# classes, structs, unions or interfaces.
106247d53e4dSSergey Makeev# The default value is: YES.
106347d53e4dSSergey Makeev
106447d53e4dSSergey MakeevALPHABETICAL_INDEX     = YES
106547d53e4dSSergey Makeev
106647d53e4dSSergey Makeev# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
106747d53e4dSSergey Makeev# which the alphabetical index list will be split.
106847d53e4dSSergey Makeev# Minimum value: 1, maximum value: 20, default value: 5.
106947d53e4dSSergey Makeev# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
107047d53e4dSSergey Makeev
107147d53e4dSSergey MakeevCOLS_IN_ALPHA_INDEX    = 5
107247d53e4dSSergey Makeev
107347d53e4dSSergey Makeev# In case all classes in a project start with a common prefix, all classes will
107447d53e4dSSergey Makeev# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
107547d53e4dSSergey Makeev# can be used to specify a prefix (or a list of prefixes) that should be ignored
107647d53e4dSSergey Makeev# while generating the index headers.
107747d53e4dSSergey Makeev# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
107847d53e4dSSergey Makeev
107947d53e4dSSergey MakeevIGNORE_PREFIX          =
108047d53e4dSSergey Makeev
108147d53e4dSSergey Makeev#---------------------------------------------------------------------------
108247d53e4dSSergey Makeev# Configuration options related to the HTML output
108347d53e4dSSergey Makeev#---------------------------------------------------------------------------
108447d53e4dSSergey Makeev
108547d53e4dSSergey Makeev# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
108647d53e4dSSergey Makeev# The default value is: YES.
108747d53e4dSSergey Makeev
108847d53e4dSSergey MakeevGENERATE_HTML          = YES
108947d53e4dSSergey Makeev
109047d53e4dSSergey Makeev# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
109147d53e4dSSergey Makeev# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
109247d53e4dSSergey Makeev# it.
109347d53e4dSSergey Makeev# The default directory is: html.
109447d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
109547d53e4dSSergey Makeev
109647d53e4dSSergey MakeevHTML_OUTPUT            = html
109747d53e4dSSergey Makeev
109847d53e4dSSergey Makeev# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
109947d53e4dSSergey Makeev# generated HTML page (for example: .htm, .php, .asp).
110047d53e4dSSergey Makeev# The default value is: .html.
110147d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
110247d53e4dSSergey Makeev
110347d53e4dSSergey MakeevHTML_FILE_EXTENSION    = .html
110447d53e4dSSergey Makeev
110547d53e4dSSergey Makeev# The HTML_HEADER tag can be used to specify a user-defined HTML header file for
110647d53e4dSSergey Makeev# each generated HTML page. If the tag is left blank doxygen will generate a
110747d53e4dSSergey Makeev# standard header.
110847d53e4dSSergey Makeev#
110947d53e4dSSergey Makeev# To get valid HTML the header file that includes any scripts and style sheets
111047d53e4dSSergey Makeev# that doxygen needs, which is dependent on the configuration options used (e.g.
111147d53e4dSSergey Makeev# the setting GENERATE_TREEVIEW). It is highly recommended to start with a
111247d53e4dSSergey Makeev# default header using
111347d53e4dSSergey Makeev# doxygen -w html new_header.html new_footer.html new_stylesheet.css
111447d53e4dSSergey Makeev# YourConfigFile
111547d53e4dSSergey Makeev# and then modify the file new_header.html. See also section "Doxygen usage"
111647d53e4dSSergey Makeev# for information on how to generate the default header that doxygen normally
111747d53e4dSSergey Makeev# uses.
111847d53e4dSSergey Makeev# Note: The header is subject to change so you typically have to regenerate the
111947d53e4dSSergey Makeev# default header when upgrading to a newer version of doxygen. For a description
112047d53e4dSSergey Makeev# of the possible markers and block names see the documentation.
112147d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
112247d53e4dSSergey Makeev
112347d53e4dSSergey MakeevHTML_HEADER            =
112447d53e4dSSergey Makeev
112547d53e4dSSergey Makeev# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
112647d53e4dSSergey Makeev# generated HTML page. If the tag is left blank doxygen will generate a standard
112747d53e4dSSergey Makeev# footer. See HTML_HEADER for more information on how to generate a default
112847d53e4dSSergey Makeev# footer and what special commands can be used inside the footer. See also
112947d53e4dSSergey Makeev# section "Doxygen usage" for information on how to generate the default footer
113047d53e4dSSergey Makeev# that doxygen normally uses.
113147d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
113247d53e4dSSergey Makeev
113347d53e4dSSergey MakeevHTML_FOOTER            =
113447d53e4dSSergey Makeev
113547d53e4dSSergey Makeev# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
113647d53e4dSSergey Makeev# sheet that is used by each HTML page. It can be used to fine-tune the look of
113747d53e4dSSergey Makeev# the HTML output. If left blank doxygen will generate a default style sheet.
113847d53e4dSSergey Makeev# See also section "Doxygen usage" for information on how to generate the style
113947d53e4dSSergey Makeev# sheet that doxygen normally uses.
114047d53e4dSSergey Makeev# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
114147d53e4dSSergey Makeev# it is more robust and this tag (HTML_STYLESHEET) will in the future become
114247d53e4dSSergey Makeev# obsolete.
114347d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
114447d53e4dSSergey Makeev
114547d53e4dSSergey MakeevHTML_STYLESHEET        =
114647d53e4dSSergey Makeev
114747d53e4dSSergey Makeev# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
114847d53e4dSSergey Makeev# cascading style sheets that are included after the standard style sheets
114947d53e4dSSergey Makeev# created by doxygen. Using this option one can overrule certain style aspects.
115047d53e4dSSergey Makeev# This is preferred over using HTML_STYLESHEET since it does not replace the
115147d53e4dSSergey Makeev# standard style sheet and is therefore more robust against future updates.
115247d53e4dSSergey Makeev# Doxygen will copy the style sheet files to the output directory.
115347d53e4dSSergey Makeev# Note: The order of the extra style sheet files is of importance (e.g. the last
115447d53e4dSSergey Makeev# style sheet in the list overrules the setting of the previous ones in the
115547d53e4dSSergey Makeev# list). For an example see the documentation.
115647d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
115747d53e4dSSergey Makeev
1158*eac85ea6SSergey MakeevHTML_EXTRA_STYLESHEET  = style.css
115947d53e4dSSergey Makeev
116047d53e4dSSergey Makeev# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
116147d53e4dSSergey Makeev# other source files which should be copied to the HTML output directory. Note
116247d53e4dSSergey Makeev# that these files will be copied to the base HTML output directory. Use the
116347d53e4dSSergey Makeev# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
116447d53e4dSSergey Makeev# files. In the HTML_STYLESHEET file, use the file name only. Also note that the
116547d53e4dSSergey Makeev# files will be copied as-is; there are no commands or markers available.
116647d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
116747d53e4dSSergey Makeev
116847d53e4dSSergey MakeevHTML_EXTRA_FILES       =
116947d53e4dSSergey Makeev
117047d53e4dSSergey Makeev# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
117147d53e4dSSergey Makeev# will adjust the colors in the style sheet and background images according to
117247d53e4dSSergey Makeev# this color. Hue is specified as an angle on a colorwheel, see
117347d53e4dSSergey Makeev# http://en.wikipedia.org/wiki/Hue for more information. For instance the value
117447d53e4dSSergey Makeev# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
117547d53e4dSSergey Makeev# purple, and 360 is red again.
117647d53e4dSSergey Makeev# Minimum value: 0, maximum value: 359, default value: 220.
117747d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
117847d53e4dSSergey Makeev
117947d53e4dSSergey MakeevHTML_COLORSTYLE_HUE    = 220
118047d53e4dSSergey Makeev
118147d53e4dSSergey Makeev# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
118247d53e4dSSergey Makeev# in the HTML output. For a value of 0 the output will use grayscales only. A
118347d53e4dSSergey Makeev# value of 255 will produce the most vivid colors.
118447d53e4dSSergey Makeev# Minimum value: 0, maximum value: 255, default value: 100.
118547d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
118647d53e4dSSergey Makeev
118747d53e4dSSergey MakeevHTML_COLORSTYLE_SAT    = 100
118847d53e4dSSergey Makeev
118947d53e4dSSergey Makeev# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
119047d53e4dSSergey Makeev# luminance component of the colors in the HTML output. Values below 100
119147d53e4dSSergey Makeev# gradually make the output lighter, whereas values above 100 make the output
119247d53e4dSSergey Makeev# darker. The value divided by 100 is the actual gamma applied, so 80 represents
119347d53e4dSSergey Makeev# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
119447d53e4dSSergey Makeev# change the gamma.
119547d53e4dSSergey Makeev# Minimum value: 40, maximum value: 240, default value: 80.
119647d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
119747d53e4dSSergey Makeev
119847d53e4dSSergey MakeevHTML_COLORSTYLE_GAMMA  = 80
119947d53e4dSSergey Makeev
120047d53e4dSSergey Makeev# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
120147d53e4dSSergey Makeev# page will contain the date and time when the page was generated. Setting this
120247d53e4dSSergey Makeev# to NO can help when comparing the output of multiple runs.
120347d53e4dSSergey Makeev# The default value is: YES.
120447d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
120547d53e4dSSergey Makeev
120647d53e4dSSergey MakeevHTML_TIMESTAMP         = YES
120747d53e4dSSergey Makeev
120847d53e4dSSergey Makeev# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
120947d53e4dSSergey Makeev# documentation will contain sections that can be hidden and shown after the
121047d53e4dSSergey Makeev# page has loaded.
121147d53e4dSSergey Makeev# The default value is: NO.
121247d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
121347d53e4dSSergey Makeev
121447d53e4dSSergey MakeevHTML_DYNAMIC_SECTIONS  = NO
121547d53e4dSSergey Makeev
121647d53e4dSSergey Makeev# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
121747d53e4dSSergey Makeev# shown in the various tree structured indices initially; the user can expand
121847d53e4dSSergey Makeev# and collapse entries dynamically later on. Doxygen will expand the tree to
121947d53e4dSSergey Makeev# such a level that at most the specified number of entries are visible (unless
122047d53e4dSSergey Makeev# a fully collapsed tree already exceeds this amount). So setting the number of
122147d53e4dSSergey Makeev# entries 1 will produce a full collapsed tree by default. 0 is a special value
122247d53e4dSSergey Makeev# representing an infinite number of entries and will result in a full expanded
122347d53e4dSSergey Makeev# tree by default.
122447d53e4dSSergey Makeev# Minimum value: 0, maximum value: 9999, default value: 100.
122547d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
122647d53e4dSSergey Makeev
122747d53e4dSSergey MakeevHTML_INDEX_NUM_ENTRIES = 100
122847d53e4dSSergey Makeev
122947d53e4dSSergey Makeev# If the GENERATE_DOCSET tag is set to YES, additional index files will be
123047d53e4dSSergey Makeev# generated that can be used as input for Apple's Xcode 3 integrated development
123147d53e4dSSergey Makeev# environment (see: http://developer.apple.com/tools/xcode/), introduced with
123247d53e4dSSergey Makeev# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a
123347d53e4dSSergey Makeev# Makefile in the HTML output directory. Running make will produce the docset in
123447d53e4dSSergey Makeev# that directory and running make install will install the docset in
123547d53e4dSSergey Makeev# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
123647d53e4dSSergey Makeev# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
123747d53e4dSSergey Makeev# for more information.
123847d53e4dSSergey Makeev# The default value is: NO.
123947d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
124047d53e4dSSergey Makeev
124147d53e4dSSergey MakeevGENERATE_DOCSET        = NO
124247d53e4dSSergey Makeev
124347d53e4dSSergey Makeev# This tag determines the name of the docset feed. A documentation feed provides
124447d53e4dSSergey Makeev# an umbrella under which multiple documentation sets from a single provider
124547d53e4dSSergey Makeev# (such as a company or product suite) can be grouped.
124647d53e4dSSergey Makeev# The default value is: Doxygen generated docs.
124747d53e4dSSergey Makeev# This tag requires that the tag GENERATE_DOCSET is set to YES.
124847d53e4dSSergey Makeev
124947d53e4dSSergey MakeevDOCSET_FEEDNAME        = "Doxygen generated docs"
125047d53e4dSSergey Makeev
125147d53e4dSSergey Makeev# This tag specifies a string that should uniquely identify the documentation
125247d53e4dSSergey Makeev# set bundle. This should be a reverse domain-name style string, e.g.
125347d53e4dSSergey Makeev# com.mycompany.MyDocSet. Doxygen will append .docset to the name.
125447d53e4dSSergey Makeev# The default value is: org.doxygen.Project.
125547d53e4dSSergey Makeev# This tag requires that the tag GENERATE_DOCSET is set to YES.
125647d53e4dSSergey Makeev
125747d53e4dSSergey MakeevDOCSET_BUNDLE_ID       = org.doxygen.Project
125847d53e4dSSergey Makeev
125947d53e4dSSergey Makeev# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
126047d53e4dSSergey Makeev# the documentation publisher. This should be a reverse domain-name style
126147d53e4dSSergey Makeev# string, e.g. com.mycompany.MyDocSet.documentation.
126247d53e4dSSergey Makeev# The default value is: org.doxygen.Publisher.
126347d53e4dSSergey Makeev# This tag requires that the tag GENERATE_DOCSET is set to YES.
126447d53e4dSSergey Makeev
126547d53e4dSSergey MakeevDOCSET_PUBLISHER_ID    = org.doxygen.Publisher
126647d53e4dSSergey Makeev
126747d53e4dSSergey Makeev# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
126847d53e4dSSergey Makeev# The default value is: Publisher.
126947d53e4dSSergey Makeev# This tag requires that the tag GENERATE_DOCSET is set to YES.
127047d53e4dSSergey Makeev
127147d53e4dSSergey MakeevDOCSET_PUBLISHER_NAME  = Publisher
127247d53e4dSSergey Makeev
127347d53e4dSSergey Makeev# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
127447d53e4dSSergey Makeev# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
127547d53e4dSSergey Makeev# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
127647d53e4dSSergey Makeev# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on
127747d53e4dSSergey Makeev# Windows.
127847d53e4dSSergey Makeev#
127947d53e4dSSergey Makeev# The HTML Help Workshop contains a compiler that can convert all HTML output
128047d53e4dSSergey Makeev# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
128147d53e4dSSergey Makeev# files are now used as the Windows 98 help format, and will replace the old
128247d53e4dSSergey Makeev# Windows help format (.hlp) on all Windows platforms in the future. Compressed
128347d53e4dSSergey Makeev# HTML files also contain an index, a table of contents, and you can search for
128447d53e4dSSergey Makeev# words in the documentation. The HTML workshop also contains a viewer for
128547d53e4dSSergey Makeev# compressed HTML files.
128647d53e4dSSergey Makeev# The default value is: NO.
128747d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
128847d53e4dSSergey Makeev
128947d53e4dSSergey MakeevGENERATE_HTMLHELP      = NO
129047d53e4dSSergey Makeev
129147d53e4dSSergey Makeev# The CHM_FILE tag can be used to specify the file name of the resulting .chm
129247d53e4dSSergey Makeev# file. You can add a path in front of the file if the result should not be
129347d53e4dSSergey Makeev# written to the html output directory.
129447d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
129547d53e4dSSergey Makeev
129647d53e4dSSergey MakeevCHM_FILE               =
129747d53e4dSSergey Makeev
129847d53e4dSSergey Makeev# The HHC_LOCATION tag can be used to specify the location (absolute path
129947d53e4dSSergey Makeev# including file name) of the HTML help compiler (hhc.exe). If non-empty,
130047d53e4dSSergey Makeev# doxygen will try to run the HTML help compiler on the generated index.hhp.
130147d53e4dSSergey Makeev# The file has to be specified with full path.
130247d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
130347d53e4dSSergey Makeev
130447d53e4dSSergey MakeevHHC_LOCATION           =
130547d53e4dSSergey Makeev
130647d53e4dSSergey Makeev# The GENERATE_CHI flag controls if a separate .chi index file is generated
130747d53e4dSSergey Makeev# (YES) or that it should be included in the master .chm file (NO).
130847d53e4dSSergey Makeev# The default value is: NO.
130947d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
131047d53e4dSSergey Makeev
131147d53e4dSSergey MakeevGENERATE_CHI           = NO
131247d53e4dSSergey Makeev
131347d53e4dSSergey Makeev# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)
131447d53e4dSSergey Makeev# and project file content.
131547d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
131647d53e4dSSergey Makeev
131747d53e4dSSergey MakeevCHM_INDEX_ENCODING     =
131847d53e4dSSergey Makeev
131947d53e4dSSergey Makeev# The BINARY_TOC flag controls whether a binary table of contents is generated
132047d53e4dSSergey Makeev# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it
132147d53e4dSSergey Makeev# enables the Previous and Next buttons.
132247d53e4dSSergey Makeev# The default value is: NO.
132347d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
132447d53e4dSSergey Makeev
132547d53e4dSSergey MakeevBINARY_TOC             = NO
132647d53e4dSSergey Makeev
132747d53e4dSSergey Makeev# The TOC_EXPAND flag can be set to YES to add extra items for group members to
132847d53e4dSSergey Makeev# the table of contents of the HTML help documentation and to the tree view.
132947d53e4dSSergey Makeev# The default value is: NO.
133047d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
133147d53e4dSSergey Makeev
133247d53e4dSSergey MakeevTOC_EXPAND             = NO
133347d53e4dSSergey Makeev
133447d53e4dSSergey Makeev# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
133547d53e4dSSergey Makeev# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
133647d53e4dSSergey Makeev# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
133747d53e4dSSergey Makeev# (.qch) of the generated HTML documentation.
133847d53e4dSSergey Makeev# The default value is: NO.
133947d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
134047d53e4dSSergey Makeev
134147d53e4dSSergey MakeevGENERATE_QHP           = NO
134247d53e4dSSergey Makeev
134347d53e4dSSergey Makeev# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
134447d53e4dSSergey Makeev# the file name of the resulting .qch file. The path specified is relative to
134547d53e4dSSergey Makeev# the HTML output folder.
134647d53e4dSSergey Makeev# This tag requires that the tag GENERATE_QHP is set to YES.
134747d53e4dSSergey Makeev
134847d53e4dSSergey MakeevQCH_FILE               =
134947d53e4dSSergey Makeev
135047d53e4dSSergey Makeev# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
135147d53e4dSSergey Makeev# Project output. For more information please see Qt Help Project / Namespace
135247d53e4dSSergey Makeev# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace).
135347d53e4dSSergey Makeev# The default value is: org.doxygen.Project.
135447d53e4dSSergey Makeev# This tag requires that the tag GENERATE_QHP is set to YES.
135547d53e4dSSergey Makeev
135647d53e4dSSergey MakeevQHP_NAMESPACE          = org.doxygen.Project
135747d53e4dSSergey Makeev
135847d53e4dSSergey Makeev# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
135947d53e4dSSergey Makeev# Help Project output. For more information please see Qt Help Project / Virtual
136047d53e4dSSergey Makeev# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual-
136147d53e4dSSergey Makeev# folders).
136247d53e4dSSergey Makeev# The default value is: doc.
136347d53e4dSSergey Makeev# This tag requires that the tag GENERATE_QHP is set to YES.
136447d53e4dSSergey Makeev
136547d53e4dSSergey MakeevQHP_VIRTUAL_FOLDER     = doc
136647d53e4dSSergey Makeev
136747d53e4dSSergey Makeev# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
136847d53e4dSSergey Makeev# filter to add. For more information please see Qt Help Project / Custom
136947d53e4dSSergey Makeev# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
137047d53e4dSSergey Makeev# filters).
137147d53e4dSSergey Makeev# This tag requires that the tag GENERATE_QHP is set to YES.
137247d53e4dSSergey Makeev
137347d53e4dSSergey MakeevQHP_CUST_FILTER_NAME   =
137447d53e4dSSergey Makeev
137547d53e4dSSergey Makeev# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
137647d53e4dSSergey Makeev# custom filter to add. For more information please see Qt Help Project / Custom
137747d53e4dSSergey Makeev# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
137847d53e4dSSergey Makeev# filters).
137947d53e4dSSergey Makeev# This tag requires that the tag GENERATE_QHP is set to YES.
138047d53e4dSSergey Makeev
138147d53e4dSSergey MakeevQHP_CUST_FILTER_ATTRS  =
138247d53e4dSSergey Makeev
138347d53e4dSSergey Makeev# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
138447d53e4dSSergey Makeev# project's filter section matches. Qt Help Project / Filter Attributes (see:
138547d53e4dSSergey Makeev# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes).
138647d53e4dSSergey Makeev# This tag requires that the tag GENERATE_QHP is set to YES.
138747d53e4dSSergey Makeev
138847d53e4dSSergey MakeevQHP_SECT_FILTER_ATTRS  =
138947d53e4dSSergey Makeev
139047d53e4dSSergey Makeev# The QHG_LOCATION tag can be used to specify the location of Qt's
139147d53e4dSSergey Makeev# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
139247d53e4dSSergey Makeev# generated .qhp file.
139347d53e4dSSergey Makeev# This tag requires that the tag GENERATE_QHP is set to YES.
139447d53e4dSSergey Makeev
139547d53e4dSSergey MakeevQHG_LOCATION           =
139647d53e4dSSergey Makeev
139747d53e4dSSergey Makeev# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
139847d53e4dSSergey Makeev# generated, together with the HTML files, they form an Eclipse help plugin. To
139947d53e4dSSergey Makeev# install this plugin and make it available under the help contents menu in
140047d53e4dSSergey Makeev# Eclipse, the contents of the directory containing the HTML and XML files needs
140147d53e4dSSergey Makeev# to be copied into the plugins directory of eclipse. The name of the directory
140247d53e4dSSergey Makeev# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
140347d53e4dSSergey Makeev# After copying Eclipse needs to be restarted before the help appears.
140447d53e4dSSergey Makeev# The default value is: NO.
140547d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
140647d53e4dSSergey Makeev
140747d53e4dSSergey MakeevGENERATE_ECLIPSEHELP   = NO
140847d53e4dSSergey Makeev
140947d53e4dSSergey Makeev# A unique identifier for the Eclipse help plugin. When installing the plugin
141047d53e4dSSergey Makeev# the directory name containing the HTML and XML files should also have this
141147d53e4dSSergey Makeev# name. Each documentation set should have its own identifier.
141247d53e4dSSergey Makeev# The default value is: org.doxygen.Project.
141347d53e4dSSergey Makeev# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
141447d53e4dSSergey Makeev
141547d53e4dSSergey MakeevECLIPSE_DOC_ID         = org.doxygen.Project
141647d53e4dSSergey Makeev
141747d53e4dSSergey Makeev# If you want full control over the layout of the generated HTML pages it might
141847d53e4dSSergey Makeev# be necessary to disable the index and replace it with your own. The
141947d53e4dSSergey Makeev# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
142047d53e4dSSergey Makeev# of each HTML page. A value of NO enables the index and the value YES disables
142147d53e4dSSergey Makeev# it. Since the tabs in the index contain the same information as the navigation
142247d53e4dSSergey Makeev# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
142347d53e4dSSergey Makeev# The default value is: NO.
142447d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
142547d53e4dSSergey Makeev
142647d53e4dSSergey MakeevDISABLE_INDEX          = NO
142747d53e4dSSergey Makeev
142847d53e4dSSergey Makeev# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
142947d53e4dSSergey Makeev# structure should be generated to display hierarchical information. If the tag
143047d53e4dSSergey Makeev# value is set to YES, a side panel will be generated containing a tree-like
143147d53e4dSSergey Makeev# index structure (just like the one that is generated for HTML Help). For this
143247d53e4dSSergey Makeev# to work a browser that supports JavaScript, DHTML, CSS and frames is required
143347d53e4dSSergey Makeev# (i.e. any modern browser). Windows users are probably better off using the
143447d53e4dSSergey Makeev# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can
143547d53e4dSSergey Makeev# further fine-tune the look of the index. As an example, the default style
143647d53e4dSSergey Makeev# sheet generated by doxygen has an example that shows how to put an image at
143747d53e4dSSergey Makeev# the root of the tree instead of the PROJECT_NAME. Since the tree basically has
143847d53e4dSSergey Makeev# the same information as the tab index, you could consider setting
143947d53e4dSSergey Makeev# DISABLE_INDEX to YES when enabling this option.
144047d53e4dSSergey Makeev# The default value is: NO.
144147d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
144247d53e4dSSergey Makeev
144347d53e4dSSergey MakeevGENERATE_TREEVIEW      = NO
144447d53e4dSSergey Makeev
144547d53e4dSSergey Makeev# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
144647d53e4dSSergey Makeev# doxygen will group on one line in the generated HTML documentation.
144747d53e4dSSergey Makeev#
144847d53e4dSSergey Makeev# Note that a value of 0 will completely suppress the enum values from appearing
144947d53e4dSSergey Makeev# in the overview section.
145047d53e4dSSergey Makeev# Minimum value: 0, maximum value: 20, default value: 4.
145147d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
145247d53e4dSSergey Makeev
145347d53e4dSSergey MakeevENUM_VALUES_PER_LINE   = 4
145447d53e4dSSergey Makeev
145547d53e4dSSergey Makeev# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
145647d53e4dSSergey Makeev# to set the initial width (in pixels) of the frame in which the tree is shown.
145747d53e4dSSergey Makeev# Minimum value: 0, maximum value: 1500, default value: 250.
145847d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
145947d53e4dSSergey Makeev
146047d53e4dSSergey MakeevTREEVIEW_WIDTH         = 250
146147d53e4dSSergey Makeev
146247d53e4dSSergey Makeev# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to
146347d53e4dSSergey Makeev# external symbols imported via tag files in a separate window.
146447d53e4dSSergey Makeev# The default value is: NO.
146547d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
146647d53e4dSSergey Makeev
146747d53e4dSSergey MakeevEXT_LINKS_IN_WINDOW    = NO
146847d53e4dSSergey Makeev
146947d53e4dSSergey Makeev# Use this tag to change the font size of LaTeX formulas included as images in
147047d53e4dSSergey Makeev# the HTML documentation. When you change the font size after a successful
147147d53e4dSSergey Makeev# doxygen run you need to manually remove any form_*.png images from the HTML
147247d53e4dSSergey Makeev# output directory to force them to be regenerated.
147347d53e4dSSergey Makeev# Minimum value: 8, maximum value: 50, default value: 10.
147447d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
147547d53e4dSSergey Makeev
147647d53e4dSSergey MakeevFORMULA_FONTSIZE       = 10
147747d53e4dSSergey Makeev
147847d53e4dSSergey Makeev# Use the FORMULA_TRANPARENT tag to determine whether or not the images
147947d53e4dSSergey Makeev# generated for formulas are transparent PNGs. Transparent PNGs are not
148047d53e4dSSergey Makeev# supported properly for IE 6.0, but are supported on all modern browsers.
148147d53e4dSSergey Makeev#
148247d53e4dSSergey Makeev# Note that when changing this option you need to delete any form_*.png files in
148347d53e4dSSergey Makeev# the HTML output directory before the changes have effect.
148447d53e4dSSergey Makeev# The default value is: YES.
148547d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
148647d53e4dSSergey Makeev
148747d53e4dSSergey MakeevFORMULA_TRANSPARENT    = YES
148847d53e4dSSergey Makeev
148947d53e4dSSergey Makeev# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
149047d53e4dSSergey Makeev# http://www.mathjax.org) which uses client side Javascript for the rendering
149147d53e4dSSergey Makeev# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
149247d53e4dSSergey Makeev# installed or if you want to formulas look prettier in the HTML output. When
149347d53e4dSSergey Makeev# enabled you may also need to install MathJax separately and configure the path
149447d53e4dSSergey Makeev# to it using the MATHJAX_RELPATH option.
149547d53e4dSSergey Makeev# The default value is: NO.
149647d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
149747d53e4dSSergey Makeev
149847d53e4dSSergey MakeevUSE_MATHJAX            = NO
149947d53e4dSSergey Makeev
150047d53e4dSSergey Makeev# When MathJax is enabled you can set the default output format to be used for
150147d53e4dSSergey Makeev# the MathJax output. See the MathJax site (see:
150247d53e4dSSergey Makeev# http://docs.mathjax.org/en/latest/output.html) for more details.
150347d53e4dSSergey Makeev# Possible values are: HTML-CSS (which is slower, but has the best
150447d53e4dSSergey Makeev# compatibility), NativeMML (i.e. MathML) and SVG.
150547d53e4dSSergey Makeev# The default value is: HTML-CSS.
150647d53e4dSSergey Makeev# This tag requires that the tag USE_MATHJAX is set to YES.
150747d53e4dSSergey Makeev
150847d53e4dSSergey MakeevMATHJAX_FORMAT         = HTML-CSS
150947d53e4dSSergey Makeev
151047d53e4dSSergey Makeev# When MathJax is enabled you need to specify the location relative to the HTML
151147d53e4dSSergey Makeev# output directory using the MATHJAX_RELPATH option. The destination directory
151247d53e4dSSergey Makeev# should contain the MathJax.js script. For instance, if the mathjax directory
151347d53e4dSSergey Makeev# is located at the same level as the HTML output directory, then
151447d53e4dSSergey Makeev# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
151547d53e4dSSergey Makeev# Content Delivery Network so you can quickly see the result without installing
151647d53e4dSSergey Makeev# MathJax. However, it is strongly recommended to install a local copy of
151747d53e4dSSergey Makeev# MathJax from http://www.mathjax.org before deployment.
151847d53e4dSSergey Makeev# The default value is: http://cdn.mathjax.org/mathjax/latest.
151947d53e4dSSergey Makeev# This tag requires that the tag USE_MATHJAX is set to YES.
152047d53e4dSSergey Makeev
152147d53e4dSSergey MakeevMATHJAX_RELPATH        = http://cdn.mathjax.org/mathjax/latest
152247d53e4dSSergey Makeev
152347d53e4dSSergey Makeev# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
152447d53e4dSSergey Makeev# extension names that should be enabled during MathJax rendering. For example
152547d53e4dSSergey Makeev# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
152647d53e4dSSergey Makeev# This tag requires that the tag USE_MATHJAX is set to YES.
152747d53e4dSSergey Makeev
152847d53e4dSSergey MakeevMATHJAX_EXTENSIONS     =
152947d53e4dSSergey Makeev
153047d53e4dSSergey Makeev# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
153147d53e4dSSergey Makeev# of code that will be used on startup of the MathJax code. See the MathJax site
153247d53e4dSSergey Makeev# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an
153347d53e4dSSergey Makeev# example see the documentation.
153447d53e4dSSergey Makeev# This tag requires that the tag USE_MATHJAX is set to YES.
153547d53e4dSSergey Makeev
153647d53e4dSSergey MakeevMATHJAX_CODEFILE       =
153747d53e4dSSergey Makeev
153847d53e4dSSergey Makeev# When the SEARCHENGINE tag is enabled doxygen will generate a search box for
153947d53e4dSSergey Makeev# the HTML output. The underlying search engine uses javascript and DHTML and
154047d53e4dSSergey Makeev# should work on any modern browser. Note that when using HTML help
154147d53e4dSSergey Makeev# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
154247d53e4dSSergey Makeev# there is already a search function so this one should typically be disabled.
154347d53e4dSSergey Makeev# For large projects the javascript based search engine can be slow, then
154447d53e4dSSergey Makeev# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
154547d53e4dSSergey Makeev# search using the keyboard; to jump to the search box use <access key> + S
154647d53e4dSSergey Makeev# (what the <access key> is depends on the OS and browser, but it is typically
154747d53e4dSSergey Makeev# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
154847d53e4dSSergey Makeev# key> to jump into the search results window, the results can be navigated
154947d53e4dSSergey Makeev# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
155047d53e4dSSergey Makeev# the search. The filter options can be selected when the cursor is inside the
155147d53e4dSSergey Makeev# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
155247d53e4dSSergey Makeev# to select a filter and <Enter> or <escape> to activate or cancel the filter
155347d53e4dSSergey Makeev# option.
155447d53e4dSSergey Makeev# The default value is: YES.
155547d53e4dSSergey Makeev# This tag requires that the tag GENERATE_HTML is set to YES.
155647d53e4dSSergey Makeev
155747d53e4dSSergey MakeevSEARCHENGINE           = YES
155847d53e4dSSergey Makeev
155947d53e4dSSergey Makeev# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
156047d53e4dSSergey Makeev# implemented using a web server instead of a web client using Javascript. There
156147d53e4dSSergey Makeev# are two flavors of web server based searching depending on the EXTERNAL_SEARCH
156247d53e4dSSergey Makeev# setting. When disabled, doxygen will generate a PHP script for searching and
156347d53e4dSSergey Makeev# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
156447d53e4dSSergey Makeev# and searching needs to be provided by external tools. See the section
156547d53e4dSSergey Makeev# "External Indexing and Searching" for details.
156647d53e4dSSergey Makeev# The default value is: NO.
156747d53e4dSSergey Makeev# This tag requires that the tag SEARCHENGINE is set to YES.
156847d53e4dSSergey Makeev
156947d53e4dSSergey MakeevSERVER_BASED_SEARCH    = NO
157047d53e4dSSergey Makeev
157147d53e4dSSergey Makeev# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
157247d53e4dSSergey Makeev# script for searching. Instead the search results are written to an XML file
157347d53e4dSSergey Makeev# which needs to be processed by an external indexer. Doxygen will invoke an
157447d53e4dSSergey Makeev# external search engine pointed to by the SEARCHENGINE_URL option to obtain the
157547d53e4dSSergey Makeev# search results.
157647d53e4dSSergey Makeev#
157747d53e4dSSergey Makeev# Doxygen ships with an example indexer (doxyindexer) and search engine
157847d53e4dSSergey Makeev# (doxysearch.cgi) which are based on the open source search engine library
157947d53e4dSSergey Makeev# Xapian (see: http://xapian.org/).
158047d53e4dSSergey Makeev#
158147d53e4dSSergey Makeev# See the section "External Indexing and Searching" for details.
158247d53e4dSSergey Makeev# The default value is: NO.
158347d53e4dSSergey Makeev# This tag requires that the tag SEARCHENGINE is set to YES.
158447d53e4dSSergey Makeev
158547d53e4dSSergey MakeevEXTERNAL_SEARCH        = NO
158647d53e4dSSergey Makeev
158747d53e4dSSergey Makeev# The SEARCHENGINE_URL should point to a search engine hosted by a web server
158847d53e4dSSergey Makeev# which will return the search results when EXTERNAL_SEARCH is enabled.
158947d53e4dSSergey Makeev#
159047d53e4dSSergey Makeev# Doxygen ships with an example indexer (doxyindexer) and search engine
159147d53e4dSSergey Makeev# (doxysearch.cgi) which are based on the open source search engine library
159247d53e4dSSergey Makeev# Xapian (see: http://xapian.org/). See the section "External Indexing and
159347d53e4dSSergey Makeev# Searching" for details.
159447d53e4dSSergey Makeev# This tag requires that the tag SEARCHENGINE is set to YES.
159547d53e4dSSergey Makeev
159647d53e4dSSergey MakeevSEARCHENGINE_URL       =
159747d53e4dSSergey Makeev
159847d53e4dSSergey Makeev# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
159947d53e4dSSergey Makeev# search data is written to a file for indexing by an external tool. With the
160047d53e4dSSergey Makeev# SEARCHDATA_FILE tag the name of this file can be specified.
160147d53e4dSSergey Makeev# The default file is: searchdata.xml.
160247d53e4dSSergey Makeev# This tag requires that the tag SEARCHENGINE is set to YES.
160347d53e4dSSergey Makeev
160447d53e4dSSergey MakeevSEARCHDATA_FILE        = searchdata.xml
160547d53e4dSSergey Makeev
160647d53e4dSSergey Makeev# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
160747d53e4dSSergey Makeev# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
160847d53e4dSSergey Makeev# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
160947d53e4dSSergey Makeev# projects and redirect the results back to the right project.
161047d53e4dSSergey Makeev# This tag requires that the tag SEARCHENGINE is set to YES.
161147d53e4dSSergey Makeev
161247d53e4dSSergey MakeevEXTERNAL_SEARCH_ID     =
161347d53e4dSSergey Makeev
161447d53e4dSSergey Makeev# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
161547d53e4dSSergey Makeev# projects other than the one defined by this configuration file, but that are
161647d53e4dSSergey Makeev# all added to the same external search index. Each project needs to have a
161747d53e4dSSergey Makeev# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
161847d53e4dSSergey Makeev# to a relative location where the documentation can be found. The format is:
161947d53e4dSSergey Makeev# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
162047d53e4dSSergey Makeev# This tag requires that the tag SEARCHENGINE is set to YES.
162147d53e4dSSergey Makeev
162247d53e4dSSergey MakeevEXTRA_SEARCH_MAPPINGS  =
162347d53e4dSSergey Makeev
162447d53e4dSSergey Makeev#---------------------------------------------------------------------------
162547d53e4dSSergey Makeev# Configuration options related to the LaTeX output
162647d53e4dSSergey Makeev#---------------------------------------------------------------------------
162747d53e4dSSergey Makeev
162847d53e4dSSergey Makeev# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
162947d53e4dSSergey Makeev# The default value is: YES.
163047d53e4dSSergey Makeev
163147d53e4dSSergey MakeevGENERATE_LATEX         = NO
163247d53e4dSSergey Makeev
163347d53e4dSSergey Makeev# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
163447d53e4dSSergey Makeev# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
163547d53e4dSSergey Makeev# it.
163647d53e4dSSergey Makeev# The default directory is: latex.
163747d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
163847d53e4dSSergey Makeev
163947d53e4dSSergey MakeevLATEX_OUTPUT           = latex
164047d53e4dSSergey Makeev
164147d53e4dSSergey Makeev# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
164247d53e4dSSergey Makeev# invoked.
164347d53e4dSSergey Makeev#
164447d53e4dSSergey Makeev# Note that when enabling USE_PDFLATEX this option is only used for generating
164547d53e4dSSergey Makeev# bitmaps for formulas in the HTML output, but not in the Makefile that is
164647d53e4dSSergey Makeev# written to the output directory.
164747d53e4dSSergey Makeev# The default file is: latex.
164847d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
164947d53e4dSSergey Makeev
165047d53e4dSSergey MakeevLATEX_CMD_NAME         = latex
165147d53e4dSSergey Makeev
165247d53e4dSSergey Makeev# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
165347d53e4dSSergey Makeev# index for LaTeX.
165447d53e4dSSergey Makeev# The default file is: makeindex.
165547d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
165647d53e4dSSergey Makeev
165747d53e4dSSergey MakeevMAKEINDEX_CMD_NAME     = makeindex
165847d53e4dSSergey Makeev
165947d53e4dSSergey Makeev# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX
166047d53e4dSSergey Makeev# documents. This may be useful for small projects and may help to save some
166147d53e4dSSergey Makeev# trees in general.
166247d53e4dSSergey Makeev# The default value is: NO.
166347d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
166447d53e4dSSergey Makeev
166547d53e4dSSergey MakeevCOMPACT_LATEX          = NO
166647d53e4dSSergey Makeev
166747d53e4dSSergey Makeev# The PAPER_TYPE tag can be used to set the paper type that is used by the
166847d53e4dSSergey Makeev# printer.
166947d53e4dSSergey Makeev# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
167047d53e4dSSergey Makeev# 14 inches) and executive (7.25 x 10.5 inches).
167147d53e4dSSergey Makeev# The default value is: a4.
167247d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
167347d53e4dSSergey Makeev
167447d53e4dSSergey MakeevPAPER_TYPE             = a4
167547d53e4dSSergey Makeev
167647d53e4dSSergey Makeev# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
167747d53e4dSSergey Makeev# that should be included in the LaTeX output. To get the times font for
167847d53e4dSSergey Makeev# instance you can specify
167947d53e4dSSergey Makeev# EXTRA_PACKAGES=times
168047d53e4dSSergey Makeev# If left blank no extra packages will be included.
168147d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
168247d53e4dSSergey Makeev
168347d53e4dSSergey MakeevEXTRA_PACKAGES         =
168447d53e4dSSergey Makeev
168547d53e4dSSergey Makeev# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the
168647d53e4dSSergey Makeev# generated LaTeX document. The header should contain everything until the first
168747d53e4dSSergey Makeev# chapter. If it is left blank doxygen will generate a standard header. See
168847d53e4dSSergey Makeev# section "Doxygen usage" for information on how to let doxygen write the
168947d53e4dSSergey Makeev# default header to a separate file.
169047d53e4dSSergey Makeev#
169147d53e4dSSergey Makeev# Note: Only use a user-defined header if you know what you are doing! The
169247d53e4dSSergey Makeev# following commands have a special meaning inside the header: $title,
169347d53e4dSSergey Makeev# $datetime, $date, $doxygenversion, $projectname, $projectnumber,
169447d53e4dSSergey Makeev# $projectbrief, $projectlogo. Doxygen will replace $title with the empty
169547d53e4dSSergey Makeev# string, for the replacement values of the other commands the user is referred
169647d53e4dSSergey Makeev# to HTML_HEADER.
169747d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
169847d53e4dSSergey Makeev
169947d53e4dSSergey MakeevLATEX_HEADER           =
170047d53e4dSSergey Makeev
170147d53e4dSSergey Makeev# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the
170247d53e4dSSergey Makeev# generated LaTeX document. The footer should contain everything after the last
170347d53e4dSSergey Makeev# chapter. If it is left blank doxygen will generate a standard footer. See
170447d53e4dSSergey Makeev# LATEX_HEADER for more information on how to generate a default footer and what
170547d53e4dSSergey Makeev# special commands can be used inside the footer.
170647d53e4dSSergey Makeev#
170747d53e4dSSergey Makeev# Note: Only use a user-defined footer if you know what you are doing!
170847d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
170947d53e4dSSergey Makeev
171047d53e4dSSergey MakeevLATEX_FOOTER           =
171147d53e4dSSergey Makeev
171247d53e4dSSergey Makeev# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined
171347d53e4dSSergey Makeev# LaTeX style sheets that are included after the standard style sheets created
171447d53e4dSSergey Makeev# by doxygen. Using this option one can overrule certain style aspects. Doxygen
171547d53e4dSSergey Makeev# will copy the style sheet files to the output directory.
171647d53e4dSSergey Makeev# Note: The order of the extra style sheet files is of importance (e.g. the last
171747d53e4dSSergey Makeev# style sheet in the list overrules the setting of the previous ones in the
171847d53e4dSSergey Makeev# list).
171947d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
172047d53e4dSSergey Makeev
172147d53e4dSSergey MakeevLATEX_EXTRA_STYLESHEET =
172247d53e4dSSergey Makeev
172347d53e4dSSergey Makeev# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
172447d53e4dSSergey Makeev# other source files which should be copied to the LATEX_OUTPUT output
172547d53e4dSSergey Makeev# directory. Note that the files will be copied as-is; there are no commands or
172647d53e4dSSergey Makeev# markers available.
172747d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
172847d53e4dSSergey Makeev
172947d53e4dSSergey MakeevLATEX_EXTRA_FILES      =
173047d53e4dSSergey Makeev
173147d53e4dSSergey Makeev# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
173247d53e4dSSergey Makeev# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
173347d53e4dSSergey Makeev# contain links (just like the HTML output) instead of page references. This
173447d53e4dSSergey Makeev# makes the output suitable for online browsing using a PDF viewer.
173547d53e4dSSergey Makeev# The default value is: YES.
173647d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
173747d53e4dSSergey Makeev
173847d53e4dSSergey MakeevPDF_HYPERLINKS         = YES
173947d53e4dSSergey Makeev
174047d53e4dSSergey Makeev# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate
174147d53e4dSSergey Makeev# the PDF file directly from the LaTeX files. Set this option to YES, to get a
174247d53e4dSSergey Makeev# higher quality PDF documentation.
174347d53e4dSSergey Makeev# The default value is: YES.
174447d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
174547d53e4dSSergey Makeev
174647d53e4dSSergey MakeevUSE_PDFLATEX           = YES
174747d53e4dSSergey Makeev
174847d53e4dSSergey Makeev# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
174947d53e4dSSergey Makeev# command to the generated LaTeX files. This will instruct LaTeX to keep running
175047d53e4dSSergey Makeev# if errors occur, instead of asking the user for help. This option is also used
175147d53e4dSSergey Makeev# when generating formulas in HTML.
175247d53e4dSSergey Makeev# The default value is: NO.
175347d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
175447d53e4dSSergey Makeev
175547d53e4dSSergey MakeevLATEX_BATCHMODE        = NO
175647d53e4dSSergey Makeev
175747d53e4dSSergey Makeev# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
175847d53e4dSSergey Makeev# index chapters (such as File Index, Compound Index, etc.) in the output.
175947d53e4dSSergey Makeev# The default value is: NO.
176047d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
176147d53e4dSSergey Makeev
176247d53e4dSSergey MakeevLATEX_HIDE_INDICES     = NO
176347d53e4dSSergey Makeev
176447d53e4dSSergey Makeev# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
176547d53e4dSSergey Makeev# code with syntax highlighting in the LaTeX output.
176647d53e4dSSergey Makeev#
176747d53e4dSSergey Makeev# Note that which sources are shown also depends on other settings such as
176847d53e4dSSergey Makeev# SOURCE_BROWSER.
176947d53e4dSSergey Makeev# The default value is: NO.
177047d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
177147d53e4dSSergey Makeev
177247d53e4dSSergey MakeevLATEX_SOURCE_CODE      = NO
177347d53e4dSSergey Makeev
177447d53e4dSSergey Makeev# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
177547d53e4dSSergey Makeev# bibliography, e.g. plainnat, or ieeetr. See
177647d53e4dSSergey Makeev# http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
177747d53e4dSSergey Makeev# The default value is: plain.
177847d53e4dSSergey Makeev# This tag requires that the tag GENERATE_LATEX is set to YES.
177947d53e4dSSergey Makeev
178047d53e4dSSergey MakeevLATEX_BIB_STYLE        = plain
178147d53e4dSSergey Makeev
178247d53e4dSSergey Makeev#---------------------------------------------------------------------------
178347d53e4dSSergey Makeev# Configuration options related to the RTF output
178447d53e4dSSergey Makeev#---------------------------------------------------------------------------
178547d53e4dSSergey Makeev
178647d53e4dSSergey Makeev# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The
178747d53e4dSSergey Makeev# RTF output is optimized for Word 97 and may not look too pretty with other RTF
178847d53e4dSSergey Makeev# readers/editors.
178947d53e4dSSergey Makeev# The default value is: NO.
179047d53e4dSSergey Makeev
179147d53e4dSSergey MakeevGENERATE_RTF           = NO
179247d53e4dSSergey Makeev
179347d53e4dSSergey Makeev# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
179447d53e4dSSergey Makeev# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
179547d53e4dSSergey Makeev# it.
179647d53e4dSSergey Makeev# The default directory is: rtf.
179747d53e4dSSergey Makeev# This tag requires that the tag GENERATE_RTF is set to YES.
179847d53e4dSSergey Makeev
179947d53e4dSSergey MakeevRTF_OUTPUT             = rtf
180047d53e4dSSergey Makeev
180147d53e4dSSergey Makeev# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF
180247d53e4dSSergey Makeev# documents. This may be useful for small projects and may help to save some
180347d53e4dSSergey Makeev# trees in general.
180447d53e4dSSergey Makeev# The default value is: NO.
180547d53e4dSSergey Makeev# This tag requires that the tag GENERATE_RTF is set to YES.
180647d53e4dSSergey Makeev
180747d53e4dSSergey MakeevCOMPACT_RTF            = NO
180847d53e4dSSergey Makeev
180947d53e4dSSergey Makeev# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
181047d53e4dSSergey Makeev# contain hyperlink fields. The RTF file will contain links (just like the HTML
181147d53e4dSSergey Makeev# output) instead of page references. This makes the output suitable for online
181247d53e4dSSergey Makeev# browsing using Word or some other Word compatible readers that support those
181347d53e4dSSergey Makeev# fields.
181447d53e4dSSergey Makeev#
181547d53e4dSSergey Makeev# Note: WordPad (write) and others do not support links.
181647d53e4dSSergey Makeev# The default value is: NO.
181747d53e4dSSergey Makeev# This tag requires that the tag GENERATE_RTF is set to YES.
181847d53e4dSSergey Makeev
181947d53e4dSSergey MakeevRTF_HYPERLINKS         = NO
182047d53e4dSSergey Makeev
182147d53e4dSSergey Makeev# Load stylesheet definitions from file. Syntax is similar to doxygen's config
182247d53e4dSSergey Makeev# file, i.e. a series of assignments. You only have to provide replacements,
182347d53e4dSSergey Makeev# missing definitions are set to their default value.
182447d53e4dSSergey Makeev#
182547d53e4dSSergey Makeev# See also section "Doxygen usage" for information on how to generate the
182647d53e4dSSergey Makeev# default style sheet that doxygen normally uses.
182747d53e4dSSergey Makeev# This tag requires that the tag GENERATE_RTF is set to YES.
182847d53e4dSSergey Makeev
182947d53e4dSSergey MakeevRTF_STYLESHEET_FILE    =
183047d53e4dSSergey Makeev
183147d53e4dSSergey Makeev# Set optional variables used in the generation of an RTF document. Syntax is
183247d53e4dSSergey Makeev# similar to doxygen's config file. A template extensions file can be generated
183347d53e4dSSergey Makeev# using doxygen -e rtf extensionFile.
183447d53e4dSSergey Makeev# This tag requires that the tag GENERATE_RTF is set to YES.
183547d53e4dSSergey Makeev
183647d53e4dSSergey MakeevRTF_EXTENSIONS_FILE    =
183747d53e4dSSergey Makeev
183847d53e4dSSergey Makeev# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code
183947d53e4dSSergey Makeev# with syntax highlighting in the RTF output.
184047d53e4dSSergey Makeev#
184147d53e4dSSergey Makeev# Note that which sources are shown also depends on other settings such as
184247d53e4dSSergey Makeev# SOURCE_BROWSER.
184347d53e4dSSergey Makeev# The default value is: NO.
184447d53e4dSSergey Makeev# This tag requires that the tag GENERATE_RTF is set to YES.
184547d53e4dSSergey Makeev
184647d53e4dSSergey MakeevRTF_SOURCE_CODE        = NO
184747d53e4dSSergey Makeev
184847d53e4dSSergey Makeev#---------------------------------------------------------------------------
184947d53e4dSSergey Makeev# Configuration options related to the man page output
185047d53e4dSSergey Makeev#---------------------------------------------------------------------------
185147d53e4dSSergey Makeev
185247d53e4dSSergey Makeev# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for
185347d53e4dSSergey Makeev# classes and files.
185447d53e4dSSergey Makeev# The default value is: NO.
185547d53e4dSSergey Makeev
185647d53e4dSSergey MakeevGENERATE_MAN           = NO
185747d53e4dSSergey Makeev
185847d53e4dSSergey Makeev# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
185947d53e4dSSergey Makeev# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
186047d53e4dSSergey Makeev# it. A directory man3 will be created inside the directory specified by
186147d53e4dSSergey Makeev# MAN_OUTPUT.
186247d53e4dSSergey Makeev# The default directory is: man.
186347d53e4dSSergey Makeev# This tag requires that the tag GENERATE_MAN is set to YES.
186447d53e4dSSergey Makeev
186547d53e4dSSergey MakeevMAN_OUTPUT             = man
186647d53e4dSSergey Makeev
186747d53e4dSSergey Makeev# The MAN_EXTENSION tag determines the extension that is added to the generated
186847d53e4dSSergey Makeev# man pages. In case the manual section does not start with a number, the number
186947d53e4dSSergey Makeev# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
187047d53e4dSSergey Makeev# optional.
187147d53e4dSSergey Makeev# The default value is: .3.
187247d53e4dSSergey Makeev# This tag requires that the tag GENERATE_MAN is set to YES.
187347d53e4dSSergey Makeev
187447d53e4dSSergey MakeevMAN_EXTENSION          = .3
187547d53e4dSSergey Makeev
187647d53e4dSSergey Makeev# The MAN_SUBDIR tag determines the name of the directory created within
187747d53e4dSSergey Makeev# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by
187847d53e4dSSergey Makeev# MAN_EXTENSION with the initial . removed.
187947d53e4dSSergey Makeev# This tag requires that the tag GENERATE_MAN is set to YES.
188047d53e4dSSergey Makeev
188147d53e4dSSergey MakeevMAN_SUBDIR             =
188247d53e4dSSergey Makeev
188347d53e4dSSergey Makeev# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
188447d53e4dSSergey Makeev# will generate one additional man file for each entity documented in the real
188547d53e4dSSergey Makeev# man page(s). These additional files only source the real man page, but without
188647d53e4dSSergey Makeev# them the man command would be unable to find the correct page.
188747d53e4dSSergey Makeev# The default value is: NO.
188847d53e4dSSergey Makeev# This tag requires that the tag GENERATE_MAN is set to YES.
188947d53e4dSSergey Makeev
189047d53e4dSSergey MakeevMAN_LINKS              = NO
189147d53e4dSSergey Makeev
189247d53e4dSSergey Makeev#---------------------------------------------------------------------------
189347d53e4dSSergey Makeev# Configuration options related to the XML output
189447d53e4dSSergey Makeev#---------------------------------------------------------------------------
189547d53e4dSSergey Makeev
189647d53e4dSSergey Makeev# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that
189747d53e4dSSergey Makeev# captures the structure of the code including all documentation.
189847d53e4dSSergey Makeev# The default value is: NO.
189947d53e4dSSergey Makeev
190047d53e4dSSergey MakeevGENERATE_XML           = NO
190147d53e4dSSergey Makeev
190247d53e4dSSergey Makeev# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
190347d53e4dSSergey Makeev# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
190447d53e4dSSergey Makeev# it.
190547d53e4dSSergey Makeev# The default directory is: xml.
190647d53e4dSSergey Makeev# This tag requires that the tag GENERATE_XML is set to YES.
190747d53e4dSSergey Makeev
190847d53e4dSSergey MakeevXML_OUTPUT             = xml
190947d53e4dSSergey Makeev
191047d53e4dSSergey Makeev# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program
191147d53e4dSSergey Makeev# listings (including syntax highlighting and cross-referencing information) to
191247d53e4dSSergey Makeev# the XML output. Note that enabling this will significantly increase the size
191347d53e4dSSergey Makeev# of the XML output.
191447d53e4dSSergey Makeev# The default value is: YES.
191547d53e4dSSergey Makeev# This tag requires that the tag GENERATE_XML is set to YES.
191647d53e4dSSergey Makeev
191747d53e4dSSergey MakeevXML_PROGRAMLISTING     = YES
191847d53e4dSSergey Makeev
191947d53e4dSSergey Makeev#---------------------------------------------------------------------------
192047d53e4dSSergey Makeev# Configuration options related to the DOCBOOK output
192147d53e4dSSergey Makeev#---------------------------------------------------------------------------
192247d53e4dSSergey Makeev
192347d53e4dSSergey Makeev# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files
192447d53e4dSSergey Makeev# that can be used to generate PDF.
192547d53e4dSSergey Makeev# The default value is: NO.
192647d53e4dSSergey Makeev
192747d53e4dSSergey MakeevGENERATE_DOCBOOK       = NO
192847d53e4dSSergey Makeev
192947d53e4dSSergey Makeev# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
193047d53e4dSSergey Makeev# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
193147d53e4dSSergey Makeev# front of it.
193247d53e4dSSergey Makeev# The default directory is: docbook.
193347d53e4dSSergey Makeev# This tag requires that the tag GENERATE_DOCBOOK is set to YES.
193447d53e4dSSergey Makeev
193547d53e4dSSergey MakeevDOCBOOK_OUTPUT         = docbook
193647d53e4dSSergey Makeev
193747d53e4dSSergey Makeev# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the
193847d53e4dSSergey Makeev# program listings (including syntax highlighting and cross-referencing
193947d53e4dSSergey Makeev# information) to the DOCBOOK output. Note that enabling this will significantly
194047d53e4dSSergey Makeev# increase the size of the DOCBOOK output.
194147d53e4dSSergey Makeev# The default value is: NO.
194247d53e4dSSergey Makeev# This tag requires that the tag GENERATE_DOCBOOK is set to YES.
194347d53e4dSSergey Makeev
194447d53e4dSSergey MakeevDOCBOOK_PROGRAMLISTING = NO
194547d53e4dSSergey Makeev
194647d53e4dSSergey Makeev#---------------------------------------------------------------------------
194747d53e4dSSergey Makeev# Configuration options for the AutoGen Definitions output
194847d53e4dSSergey Makeev#---------------------------------------------------------------------------
194947d53e4dSSergey Makeev
195047d53e4dSSergey Makeev# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an
195147d53e4dSSergey Makeev# AutoGen Definitions (see http://autogen.sf.net) file that captures the
195247d53e4dSSergey Makeev# structure of the code including all documentation. Note that this feature is
195347d53e4dSSergey Makeev# still experimental and incomplete at the moment.
195447d53e4dSSergey Makeev# The default value is: NO.
195547d53e4dSSergey Makeev
195647d53e4dSSergey MakeevGENERATE_AUTOGEN_DEF   = NO
195747d53e4dSSergey Makeev
195847d53e4dSSergey Makeev#---------------------------------------------------------------------------
195947d53e4dSSergey Makeev# Configuration options related to the Perl module output
196047d53e4dSSergey Makeev#---------------------------------------------------------------------------
196147d53e4dSSergey Makeev
196247d53e4dSSergey Makeev# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module
196347d53e4dSSergey Makeev# file that captures the structure of the code including all documentation.
196447d53e4dSSergey Makeev#
196547d53e4dSSergey Makeev# Note that this feature is still experimental and incomplete at the moment.
196647d53e4dSSergey Makeev# The default value is: NO.
196747d53e4dSSergey Makeev
196847d53e4dSSergey MakeevGENERATE_PERLMOD       = NO
196947d53e4dSSergey Makeev
197047d53e4dSSergey Makeev# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary
197147d53e4dSSergey Makeev# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
197247d53e4dSSergey Makeev# output from the Perl module output.
197347d53e4dSSergey Makeev# The default value is: NO.
197447d53e4dSSergey Makeev# This tag requires that the tag GENERATE_PERLMOD is set to YES.
197547d53e4dSSergey Makeev
197647d53e4dSSergey MakeevPERLMOD_LATEX          = NO
197747d53e4dSSergey Makeev
197847d53e4dSSergey Makeev# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely
197947d53e4dSSergey Makeev# formatted so it can be parsed by a human reader. This is useful if you want to
198047d53e4dSSergey Makeev# understand what is going on. On the other hand, if this tag is set to NO, the
198147d53e4dSSergey Makeev# size of the Perl module output will be much smaller and Perl will parse it
198247d53e4dSSergey Makeev# just the same.
198347d53e4dSSergey Makeev# The default value is: YES.
198447d53e4dSSergey Makeev# This tag requires that the tag GENERATE_PERLMOD is set to YES.
198547d53e4dSSergey Makeev
198647d53e4dSSergey MakeevPERLMOD_PRETTY         = YES
198747d53e4dSSergey Makeev
198847d53e4dSSergey Makeev# The names of the make variables in the generated doxyrules.make file are
198947d53e4dSSergey Makeev# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
199047d53e4dSSergey Makeev# so different doxyrules.make files included by the same Makefile don't
199147d53e4dSSergey Makeev# overwrite each other's variables.
199247d53e4dSSergey Makeev# This tag requires that the tag GENERATE_PERLMOD is set to YES.
199347d53e4dSSergey Makeev
199447d53e4dSSergey MakeevPERLMOD_MAKEVAR_PREFIX =
199547d53e4dSSergey Makeev
199647d53e4dSSergey Makeev#---------------------------------------------------------------------------
199747d53e4dSSergey Makeev# Configuration options related to the preprocessor
199847d53e4dSSergey Makeev#---------------------------------------------------------------------------
199947d53e4dSSergey Makeev
200047d53e4dSSergey Makeev# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all
200147d53e4dSSergey Makeev# C-preprocessor directives found in the sources and include files.
200247d53e4dSSergey Makeev# The default value is: YES.
200347d53e4dSSergey Makeev
200447d53e4dSSergey MakeevENABLE_PREPROCESSING   = YES
200547d53e4dSSergey Makeev
200647d53e4dSSergey Makeev# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names
200747d53e4dSSergey Makeev# in the source code. If set to NO, only conditional compilation will be
200847d53e4dSSergey Makeev# performed. Macro expansion can be done in a controlled way by setting
200947d53e4dSSergey Makeev# EXPAND_ONLY_PREDEF to YES.
201047d53e4dSSergey Makeev# The default value is: NO.
201147d53e4dSSergey Makeev# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
201247d53e4dSSergey Makeev
201347d53e4dSSergey MakeevMACRO_EXPANSION        = NO
201447d53e4dSSergey Makeev
201547d53e4dSSergey Makeev# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
201647d53e4dSSergey Makeev# the macro expansion is limited to the macros specified with the PREDEFINED and
201747d53e4dSSergey Makeev# EXPAND_AS_DEFINED tags.
201847d53e4dSSergey Makeev# The default value is: NO.
201947d53e4dSSergey Makeev# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
202047d53e4dSSergey Makeev
202147d53e4dSSergey MakeevEXPAND_ONLY_PREDEF     = NO
202247d53e4dSSergey Makeev
202347d53e4dSSergey Makeev# If the SEARCH_INCLUDES tag is set to YES, the include files in the
202447d53e4dSSergey Makeev# INCLUDE_PATH will be searched if a #include is found.
202547d53e4dSSergey Makeev# The default value is: YES.
202647d53e4dSSergey Makeev# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
202747d53e4dSSergey Makeev
202847d53e4dSSergey MakeevSEARCH_INCLUDES        = YES
202947d53e4dSSergey Makeev
203047d53e4dSSergey Makeev# The INCLUDE_PATH tag can be used to specify one or more directories that
203147d53e4dSSergey Makeev# contain include files that are not input files but should be processed by the
203247d53e4dSSergey Makeev# preprocessor.
203347d53e4dSSergey Makeev# This tag requires that the tag SEARCH_INCLUDES is set to YES.
203447d53e4dSSergey Makeev
203547d53e4dSSergey MakeevINCLUDE_PATH           =
203647d53e4dSSergey Makeev
203747d53e4dSSergey Makeev# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
203847d53e4dSSergey Makeev# patterns (like *.h and *.hpp) to filter out the header-files in the
203947d53e4dSSergey Makeev# directories. If left blank, the patterns specified with FILE_PATTERNS will be
204047d53e4dSSergey Makeev# used.
204147d53e4dSSergey Makeev# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
204247d53e4dSSergey Makeev
204347d53e4dSSergey MakeevINCLUDE_FILE_PATTERNS  =
204447d53e4dSSergey Makeev
204547d53e4dSSergey Makeev# The PREDEFINED tag can be used to specify one or more macro names that are
204647d53e4dSSergey Makeev# defined before the preprocessor is started (similar to the -D option of e.g.
204747d53e4dSSergey Makeev# gcc). The argument of the tag is a list of macros of the form: name or
204847d53e4dSSergey Makeev# name=definition (no spaces). If the definition and the "=" are omitted, "=1"
204947d53e4dSSergey Makeev# is assumed. To prevent a macro definition from being undefined via #undef or
205047d53e4dSSergey Makeev# recursively expanded use the := operator instead of the = operator.
205147d53e4dSSergey Makeev# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
205247d53e4dSSergey Makeev
205347d53e4dSSergey MakeevPREDEFINED             =
205447d53e4dSSergey Makeev
205547d53e4dSSergey Makeev# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
205647d53e4dSSergey Makeev# tag can be used to specify a list of macro names that should be expanded. The
205747d53e4dSSergey Makeev# macro definition that is found in the sources will be used. Use the PREDEFINED
205847d53e4dSSergey Makeev# tag if you want to use a different macro definition that overrules the
205947d53e4dSSergey Makeev# definition found in the source code.
206047d53e4dSSergey Makeev# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
206147d53e4dSSergey Makeev
206247d53e4dSSergey MakeevEXPAND_AS_DEFINED      =
206347d53e4dSSergey Makeev
206447d53e4dSSergey Makeev# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
206547d53e4dSSergey Makeev# remove all references to function-like macros that are alone on a line, have
206647d53e4dSSergey Makeev# an all uppercase name, and do not end with a semicolon. Such function macros
206747d53e4dSSergey Makeev# are typically used for boiler-plate code, and will confuse the parser if not
206847d53e4dSSergey Makeev# removed.
206947d53e4dSSergey Makeev# The default value is: YES.
207047d53e4dSSergey Makeev# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
207147d53e4dSSergey Makeev
207247d53e4dSSergey MakeevSKIP_FUNCTION_MACROS   = YES
207347d53e4dSSergey Makeev
207447d53e4dSSergey Makeev#---------------------------------------------------------------------------
207547d53e4dSSergey Makeev# Configuration options related to external references
207647d53e4dSSergey Makeev#---------------------------------------------------------------------------
207747d53e4dSSergey Makeev
207847d53e4dSSergey Makeev# The TAGFILES tag can be used to specify one or more tag files. For each tag
207947d53e4dSSergey Makeev# file the location of the external documentation should be added. The format of
208047d53e4dSSergey Makeev# a tag file without this location is as follows:
208147d53e4dSSergey Makeev# TAGFILES = file1 file2 ...
208247d53e4dSSergey Makeev# Adding location for the tag files is done as follows:
208347d53e4dSSergey Makeev# TAGFILES = file1=loc1 "file2 = loc2" ...
208447d53e4dSSergey Makeev# where loc1 and loc2 can be relative or absolute paths or URLs. See the
208547d53e4dSSergey Makeev# section "Linking to external documentation" for more information about the use
208647d53e4dSSergey Makeev# of tag files.
208747d53e4dSSergey Makeev# Note: Each tag file must have a unique name (where the name does NOT include
208847d53e4dSSergey Makeev# the path). If a tag file is not located in the directory in which doxygen is
208947d53e4dSSergey Makeev# run, you must also specify the path to the tagfile here.
209047d53e4dSSergey Makeev
209147d53e4dSSergey MakeevTAGFILES               =
209247d53e4dSSergey Makeev
209347d53e4dSSergey Makeev# When a file name is specified after GENERATE_TAGFILE, doxygen will create a
209447d53e4dSSergey Makeev# tag file that is based on the input files it reads. See section "Linking to
209547d53e4dSSergey Makeev# external documentation" for more information about the usage of tag files.
209647d53e4dSSergey Makeev
209747d53e4dSSergey MakeevGENERATE_TAGFILE       =
209847d53e4dSSergey Makeev
209947d53e4dSSergey Makeev# If the ALLEXTERNALS tag is set to YES, all external class will be listed in
210047d53e4dSSergey Makeev# the class index. If set to NO, only the inherited external classes will be
210147d53e4dSSergey Makeev# listed.
210247d53e4dSSergey Makeev# The default value is: NO.
210347d53e4dSSergey Makeev
210447d53e4dSSergey MakeevALLEXTERNALS           = NO
210547d53e4dSSergey Makeev
210647d53e4dSSergey Makeev# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed
210747d53e4dSSergey Makeev# in the modules index. If set to NO, only the current project's groups will be
210847d53e4dSSergey Makeev# listed.
210947d53e4dSSergey Makeev# The default value is: YES.
211047d53e4dSSergey Makeev
211147d53e4dSSergey MakeevEXTERNAL_GROUPS        = YES
211247d53e4dSSergey Makeev
211347d53e4dSSergey Makeev# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in
211447d53e4dSSergey Makeev# the related pages index. If set to NO, only the current project's pages will
211547d53e4dSSergey Makeev# be listed.
211647d53e4dSSergey Makeev# The default value is: YES.
211747d53e4dSSergey Makeev
211847d53e4dSSergey MakeevEXTERNAL_PAGES         = YES
211947d53e4dSSergey Makeev
212047d53e4dSSergey Makeev# The PERL_PATH should be the absolute path and name of the perl script
212147d53e4dSSergey Makeev# interpreter (i.e. the result of 'which perl').
212247d53e4dSSergey Makeev# The default file (with absolute path) is: /usr/bin/perl.
212347d53e4dSSergey Makeev
212447d53e4dSSergey MakeevPERL_PATH              = /usr/bin/perl
212547d53e4dSSergey Makeev
212647d53e4dSSergey Makeev#---------------------------------------------------------------------------
212747d53e4dSSergey Makeev# Configuration options related to the dot tool
212847d53e4dSSergey Makeev#---------------------------------------------------------------------------
212947d53e4dSSergey Makeev
213047d53e4dSSergey Makeev# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram
213147d53e4dSSergey Makeev# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
213247d53e4dSSergey Makeev# NO turns the diagrams off. Note that this option also works with HAVE_DOT
213347d53e4dSSergey Makeev# disabled, but it is recommended to install and use dot, since it yields more
213447d53e4dSSergey Makeev# powerful graphs.
213547d53e4dSSergey Makeev# The default value is: YES.
213647d53e4dSSergey Makeev
213747d53e4dSSergey MakeevCLASS_DIAGRAMS         = NO
213847d53e4dSSergey Makeev
213947d53e4dSSergey Makeev# You can define message sequence charts within doxygen comments using the \msc
214047d53e4dSSergey Makeev# command. Doxygen will then run the mscgen tool (see:
214147d53e4dSSergey Makeev# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the
214247d53e4dSSergey Makeev# documentation. The MSCGEN_PATH tag allows you to specify the directory where
214347d53e4dSSergey Makeev# the mscgen tool resides. If left empty the tool is assumed to be found in the
214447d53e4dSSergey Makeev# default search path.
214547d53e4dSSergey Makeev
214647d53e4dSSergey MakeevMSCGEN_PATH            =
214747d53e4dSSergey Makeev
214847d53e4dSSergey Makeev# You can include diagrams made with dia in doxygen documentation. Doxygen will
214947d53e4dSSergey Makeev# then run dia to produce the diagram and insert it in the documentation. The
215047d53e4dSSergey Makeev# DIA_PATH tag allows you to specify the directory where the dia binary resides.
215147d53e4dSSergey Makeev# If left empty dia is assumed to be found in the default search path.
215247d53e4dSSergey Makeev
215347d53e4dSSergey MakeevDIA_PATH               =
215447d53e4dSSergey Makeev
215547d53e4dSSergey Makeev# If set to YES the inheritance and collaboration graphs will hide inheritance
215647d53e4dSSergey Makeev# and usage relations if the target is undocumented or is not a class.
215747d53e4dSSergey Makeev# The default value is: YES.
215847d53e4dSSergey Makeev
215947d53e4dSSergey MakeevHIDE_UNDOC_RELATIONS   = YES
216047d53e4dSSergey Makeev
216147d53e4dSSergey Makeev# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
216247d53e4dSSergey Makeev# available from the path. This tool is part of Graphviz (see:
216347d53e4dSSergey Makeev# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
216447d53e4dSSergey Makeev# Bell Labs. The other options in this section have no effect if this option is
216547d53e4dSSergey Makeev# set to NO
216647d53e4dSSergey Makeev# The default value is: NO.
216747d53e4dSSergey Makeev
216847d53e4dSSergey MakeevHAVE_DOT               = NO
216947d53e4dSSergey Makeev
217047d53e4dSSergey Makeev# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
217147d53e4dSSergey Makeev# to run in parallel. When set to 0 doxygen will base this on the number of
217247d53e4dSSergey Makeev# processors available in the system. You can set it explicitly to a value
217347d53e4dSSergey Makeev# larger than 0 to get control over the balance between CPU load and processing
217447d53e4dSSergey Makeev# speed.
217547d53e4dSSergey Makeev# Minimum value: 0, maximum value: 32, default value: 0.
217647d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
217747d53e4dSSergey Makeev
217847d53e4dSSergey MakeevDOT_NUM_THREADS        = 0
217947d53e4dSSergey Makeev
218047d53e4dSSergey Makeev# When you want a differently looking font in the dot files that doxygen
218147d53e4dSSergey Makeev# generates you can specify the font name using DOT_FONTNAME. You need to make
218247d53e4dSSergey Makeev# sure dot is able to find the font, which can be done by putting it in a
218347d53e4dSSergey Makeev# standard location or by setting the DOTFONTPATH environment variable or by
218447d53e4dSSergey Makeev# setting DOT_FONTPATH to the directory containing the font.
218547d53e4dSSergey Makeev# The default value is: Helvetica.
218647d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
218747d53e4dSSergey Makeev
218847d53e4dSSergey MakeevDOT_FONTNAME           = Helvetica
218947d53e4dSSergey Makeev
219047d53e4dSSergey Makeev# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
219147d53e4dSSergey Makeev# dot graphs.
219247d53e4dSSergey Makeev# Minimum value: 4, maximum value: 24, default value: 10.
219347d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
219447d53e4dSSergey Makeev
219547d53e4dSSergey MakeevDOT_FONTSIZE           = 10
219647d53e4dSSergey Makeev
219747d53e4dSSergey Makeev# By default doxygen will tell dot to use the default font as specified with
219847d53e4dSSergey Makeev# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
219947d53e4dSSergey Makeev# the path where dot can find it using this tag.
220047d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
220147d53e4dSSergey Makeev
220247d53e4dSSergey MakeevDOT_FONTPATH           =
220347d53e4dSSergey Makeev
220447d53e4dSSergey Makeev# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for
220547d53e4dSSergey Makeev# each documented class showing the direct and indirect inheritance relations.
220647d53e4dSSergey Makeev# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.
220747d53e4dSSergey Makeev# The default value is: YES.
220847d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
220947d53e4dSSergey Makeev
221047d53e4dSSergey MakeevCLASS_GRAPH            = YES
221147d53e4dSSergey Makeev
221247d53e4dSSergey Makeev# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a
221347d53e4dSSergey Makeev# graph for each documented class showing the direct and indirect implementation
221447d53e4dSSergey Makeev# dependencies (inheritance, containment, and class references variables) of the
221547d53e4dSSergey Makeev# class with other documented classes.
221647d53e4dSSergey Makeev# The default value is: YES.
221747d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
221847d53e4dSSergey Makeev
221947d53e4dSSergey MakeevCOLLABORATION_GRAPH    = YES
222047d53e4dSSergey Makeev
222147d53e4dSSergey Makeev# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for
222247d53e4dSSergey Makeev# groups, showing the direct groups dependencies.
222347d53e4dSSergey Makeev# The default value is: YES.
222447d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
222547d53e4dSSergey Makeev
222647d53e4dSSergey MakeevGROUP_GRAPHS           = YES
222747d53e4dSSergey Makeev
222847d53e4dSSergey Makeev# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and
222947d53e4dSSergey Makeev# collaboration diagrams in a style similar to the OMG's Unified Modeling
223047d53e4dSSergey Makeev# Language.
223147d53e4dSSergey Makeev# The default value is: NO.
223247d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
223347d53e4dSSergey Makeev
223447d53e4dSSergey MakeevUML_LOOK               = NO
223547d53e4dSSergey Makeev
223647d53e4dSSergey Makeev# If the UML_LOOK tag is enabled, the fields and methods are shown inside the
223747d53e4dSSergey Makeev# class node. If there are many fields or methods and many nodes the graph may
223847d53e4dSSergey Makeev# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
223947d53e4dSSergey Makeev# number of items for each type to make the size more manageable. Set this to 0
224047d53e4dSSergey Makeev# for no limit. Note that the threshold may be exceeded by 50% before the limit
224147d53e4dSSergey Makeev# is enforced. So when you set the threshold to 10, up to 15 fields may appear,
224247d53e4dSSergey Makeev# but if the number exceeds 15, the total amount of fields shown is limited to
224347d53e4dSSergey Makeev# 10.
224447d53e4dSSergey Makeev# Minimum value: 0, maximum value: 100, default value: 10.
224547d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
224647d53e4dSSergey Makeev
224747d53e4dSSergey MakeevUML_LIMIT_NUM_FIELDS   = 10
224847d53e4dSSergey Makeev
224947d53e4dSSergey Makeev# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
225047d53e4dSSergey Makeev# collaboration graphs will show the relations between templates and their
225147d53e4dSSergey Makeev# instances.
225247d53e4dSSergey Makeev# The default value is: NO.
225347d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
225447d53e4dSSergey Makeev
225547d53e4dSSergey MakeevTEMPLATE_RELATIONS     = NO
225647d53e4dSSergey Makeev
225747d53e4dSSergey Makeev# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
225847d53e4dSSergey Makeev# YES then doxygen will generate a graph for each documented file showing the
225947d53e4dSSergey Makeev# direct and indirect include dependencies of the file with other documented
226047d53e4dSSergey Makeev# files.
226147d53e4dSSergey Makeev# The default value is: YES.
226247d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
226347d53e4dSSergey Makeev
226447d53e4dSSergey MakeevINCLUDE_GRAPH          = YES
226547d53e4dSSergey Makeev
226647d53e4dSSergey Makeev# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
226747d53e4dSSergey Makeev# set to YES then doxygen will generate a graph for each documented file showing
226847d53e4dSSergey Makeev# the direct and indirect include dependencies of the file with other documented
226947d53e4dSSergey Makeev# files.
227047d53e4dSSergey Makeev# The default value is: YES.
227147d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
227247d53e4dSSergey Makeev
227347d53e4dSSergey MakeevINCLUDED_BY_GRAPH      = YES
227447d53e4dSSergey Makeev
227547d53e4dSSergey Makeev# If the CALL_GRAPH tag is set to YES then doxygen will generate a call
227647d53e4dSSergey Makeev# dependency graph for every global function or class method.
227747d53e4dSSergey Makeev#
227847d53e4dSSergey Makeev# Note that enabling this option will significantly increase the time of a run.
227947d53e4dSSergey Makeev# So in most cases it will be better to enable call graphs for selected
228047d53e4dSSergey Makeev# functions only using the \callgraph command.
228147d53e4dSSergey Makeev# The default value is: NO.
228247d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
228347d53e4dSSergey Makeev
228447d53e4dSSergey MakeevCALL_GRAPH             = NO
228547d53e4dSSergey Makeev
228647d53e4dSSergey Makeev# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
228747d53e4dSSergey Makeev# dependency graph for every global function or class method.
228847d53e4dSSergey Makeev#
228947d53e4dSSergey Makeev# Note that enabling this option will significantly increase the time of a run.
229047d53e4dSSergey Makeev# So in most cases it will be better to enable caller graphs for selected
229147d53e4dSSergey Makeev# functions only using the \callergraph command.
229247d53e4dSSergey Makeev# The default value is: NO.
229347d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
229447d53e4dSSergey Makeev
229547d53e4dSSergey MakeevCALLER_GRAPH           = NO
229647d53e4dSSergey Makeev
229747d53e4dSSergey Makeev# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
229847d53e4dSSergey Makeev# hierarchy of all classes instead of a textual one.
229947d53e4dSSergey Makeev# The default value is: YES.
230047d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
230147d53e4dSSergey Makeev
230247d53e4dSSergey MakeevGRAPHICAL_HIERARCHY    = YES
230347d53e4dSSergey Makeev
230447d53e4dSSergey Makeev# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
230547d53e4dSSergey Makeev# dependencies a directory has on other directories in a graphical way. The
230647d53e4dSSergey Makeev# dependency relations are determined by the #include relations between the
230747d53e4dSSergey Makeev# files in the directories.
230847d53e4dSSergey Makeev# The default value is: YES.
230947d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
231047d53e4dSSergey Makeev
231147d53e4dSSergey MakeevDIRECTORY_GRAPH        = YES
231247d53e4dSSergey Makeev
231347d53e4dSSergey Makeev# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
231447d53e4dSSergey Makeev# generated by dot.
231547d53e4dSSergey Makeev# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
231647d53e4dSSergey Makeev# to make the SVG files visible in IE 9+ (other browsers do not have this
231747d53e4dSSergey Makeev# requirement).
231847d53e4dSSergey Makeev# Possible values are: png, jpg, gif and svg.
231947d53e4dSSergey Makeev# The default value is: png.
232047d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
232147d53e4dSSergey Makeev
232247d53e4dSSergey MakeevDOT_IMAGE_FORMAT       = png
232347d53e4dSSergey Makeev
232447d53e4dSSergey Makeev# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
232547d53e4dSSergey Makeev# enable generation of interactive SVG images that allow zooming and panning.
232647d53e4dSSergey Makeev#
232747d53e4dSSergey Makeev# Note that this requires a modern browser other than Internet Explorer. Tested
232847d53e4dSSergey Makeev# and working are Firefox, Chrome, Safari, and Opera.
232947d53e4dSSergey Makeev# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
233047d53e4dSSergey Makeev# the SVG files visible. Older versions of IE do not have SVG support.
233147d53e4dSSergey Makeev# The default value is: NO.
233247d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
233347d53e4dSSergey Makeev
233447d53e4dSSergey MakeevINTERACTIVE_SVG        = NO
233547d53e4dSSergey Makeev
233647d53e4dSSergey Makeev# The DOT_PATH tag can be used to specify the path where the dot tool can be
233747d53e4dSSergey Makeev# found. If left blank, it is assumed the dot tool can be found in the path.
233847d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
233947d53e4dSSergey Makeev
234047d53e4dSSergey MakeevDOT_PATH               =
234147d53e4dSSergey Makeev
234247d53e4dSSergey Makeev# The DOTFILE_DIRS tag can be used to specify one or more directories that
234347d53e4dSSergey Makeev# contain dot files that are included in the documentation (see the \dotfile
234447d53e4dSSergey Makeev# command).
234547d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
234647d53e4dSSergey Makeev
234747d53e4dSSergey MakeevDOTFILE_DIRS           =
234847d53e4dSSergey Makeev
234947d53e4dSSergey Makeev# The MSCFILE_DIRS tag can be used to specify one or more directories that
235047d53e4dSSergey Makeev# contain msc files that are included in the documentation (see the \mscfile
235147d53e4dSSergey Makeev# command).
235247d53e4dSSergey Makeev
235347d53e4dSSergey MakeevMSCFILE_DIRS           =
235447d53e4dSSergey Makeev
235547d53e4dSSergey Makeev# The DIAFILE_DIRS tag can be used to specify one or more directories that
235647d53e4dSSergey Makeev# contain dia files that are included in the documentation (see the \diafile
235747d53e4dSSergey Makeev# command).
235847d53e4dSSergey Makeev
235947d53e4dSSergey MakeevDIAFILE_DIRS           =
236047d53e4dSSergey Makeev
236147d53e4dSSergey Makeev# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the
236247d53e4dSSergey Makeev# path where java can find the plantuml.jar file. If left blank, it is assumed
236347d53e4dSSergey Makeev# PlantUML is not used or called during a preprocessing step. Doxygen will
236447d53e4dSSergey Makeev# generate a warning when it encounters a \startuml command in this case and
236547d53e4dSSergey Makeev# will not generate output for the diagram.
236647d53e4dSSergey Makeev
236747d53e4dSSergey MakeevPLANTUML_JAR_PATH      =
236847d53e4dSSergey Makeev
236947d53e4dSSergey Makeev# When using plantuml, the specified paths are searched for files specified by
237047d53e4dSSergey Makeev# the !include statement in a plantuml block.
237147d53e4dSSergey Makeev
237247d53e4dSSergey MakeevPLANTUML_INCLUDE_PATH  =
237347d53e4dSSergey Makeev
237447d53e4dSSergey Makeev# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
237547d53e4dSSergey Makeev# that will be shown in the graph. If the number of nodes in a graph becomes
237647d53e4dSSergey Makeev# larger than this value, doxygen will truncate the graph, which is visualized
237747d53e4dSSergey Makeev# by representing a node as a red box. Note that doxygen if the number of direct
237847d53e4dSSergey Makeev# children of the root node in a graph is already larger than
237947d53e4dSSergey Makeev# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
238047d53e4dSSergey Makeev# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
238147d53e4dSSergey Makeev# Minimum value: 0, maximum value: 10000, default value: 50.
238247d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
238347d53e4dSSergey Makeev
238447d53e4dSSergey MakeevDOT_GRAPH_MAX_NODES    = 50
238547d53e4dSSergey Makeev
238647d53e4dSSergey Makeev# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
238747d53e4dSSergey Makeev# generated by dot. A depth value of 3 means that only nodes reachable from the
238847d53e4dSSergey Makeev# root by following a path via at most 3 edges will be shown. Nodes that lay
238947d53e4dSSergey Makeev# further from the root node will be omitted. Note that setting this option to 1
239047d53e4dSSergey Makeev# or 2 may greatly reduce the computation time needed for large code bases. Also
239147d53e4dSSergey Makeev# note that the size of a graph can be further restricted by
239247d53e4dSSergey Makeev# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
239347d53e4dSSergey Makeev# Minimum value: 0, maximum value: 1000, default value: 0.
239447d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
239547d53e4dSSergey Makeev
239647d53e4dSSergey MakeevMAX_DOT_GRAPH_DEPTH    = 0
239747d53e4dSSergey Makeev
239847d53e4dSSergey Makeev# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
239947d53e4dSSergey Makeev# background. This is disabled by default, because dot on Windows does not seem
240047d53e4dSSergey Makeev# to support this out of the box.
240147d53e4dSSergey Makeev#
240247d53e4dSSergey Makeev# Warning: Depending on the platform used, enabling this option may lead to
240347d53e4dSSergey Makeev# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
240447d53e4dSSergey Makeev# read).
240547d53e4dSSergey Makeev# The default value is: NO.
240647d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
240747d53e4dSSergey Makeev
240847d53e4dSSergey MakeevDOT_TRANSPARENT        = NO
240947d53e4dSSergey Makeev
241047d53e4dSSergey Makeev# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output
241147d53e4dSSergey Makeev# files in one run (i.e. multiple -o and -T options on the command line). This
241247d53e4dSSergey Makeev# makes dot run faster, but since only newer versions of dot (>1.8.10) support
241347d53e4dSSergey Makeev# this, this feature is disabled by default.
241447d53e4dSSergey Makeev# The default value is: NO.
241547d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
241647d53e4dSSergey Makeev
241747d53e4dSSergey MakeevDOT_MULTI_TARGETS      = NO
241847d53e4dSSergey Makeev
241947d53e4dSSergey Makeev# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
242047d53e4dSSergey Makeev# explaining the meaning of the various boxes and arrows in the dot generated
242147d53e4dSSergey Makeev# graphs.
242247d53e4dSSergey Makeev# The default value is: YES.
242347d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
242447d53e4dSSergey Makeev
242547d53e4dSSergey MakeevGENERATE_LEGEND        = YES
242647d53e4dSSergey Makeev
242747d53e4dSSergey Makeev# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot
242847d53e4dSSergey Makeev# files that are used to generate the various graphs.
242947d53e4dSSergey Makeev# The default value is: YES.
243047d53e4dSSergey Makeev# This tag requires that the tag HAVE_DOT is set to YES.
243147d53e4dSSergey Makeev
243247d53e4dSSergey MakeevDOT_CLEANUP            = YES
2433