Blame doc/doxygen/Doxyfile.in

Packit cb6d3d
# Doxyfile 1.7.4
Packit cb6d3d
Packit cb6d3d
# This file describes the settings to be used by the documentation system
Packit cb6d3d
# doxygen (www.doxygen.org) for a project.
Packit cb6d3d
#
Packit cb6d3d
# All text after a hash (#) is considered a comment and will be ignored.
Packit cb6d3d
# The format is:
Packit cb6d3d
#       TAG = value [value, ...]
Packit cb6d3d
# For lists items can also be appended using:
Packit cb6d3d
#       TAG += value [value, ...]
Packit cb6d3d
# Values that contain spaces should be placed between quotes (" ").
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# Project related configuration options
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# This tag specifies the encoding used for all characters in the config file
Packit cb6d3d
# that follow. The default is UTF-8 which is also the encoding used for all
Packit cb6d3d
# text before the first occurrence of this tag. Doxygen uses libiconv (or the
Packit cb6d3d
# iconv built into libc) for the transcoding. See
Packit cb6d3d
# http://www.gnu.org/software/libiconv for the list of possible encodings.
Packit cb6d3d
Packit cb6d3d
DOXYFILE_ENCODING      = UTF-8
Packit cb6d3d
Packit cb6d3d
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
Packit cb6d3d
# by quotes) that should identify the project.
Packit cb6d3d
Packit cb6d3d
PROJECT_NAME           = @PACKAGE@
Packit cb6d3d
Packit cb6d3d
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
Packit cb6d3d
# This could be handy for archiving the generated documentation or
Packit cb6d3d
# if some version control system is used.
Packit cb6d3d
Packit cb6d3d
PROJECT_NUMBER         = @VERSION@
Packit cb6d3d
Packit cb6d3d
# Using the PROJECT_BRIEF tag one can provide an optional one line description
Packit cb6d3d
# for a project that appears at the top of each page and should give viewer
Packit cb6d3d
# a quick idea about the purpose of the project. Keep the description short.
Packit cb6d3d
Packit cb6d3d
PROJECT_BRIEF          =
Packit cb6d3d
Packit cb6d3d
# With the PROJECT_LOGO tag one can specify an logo or icon that is
Packit cb6d3d
# included in the documentation. The maximum height of the logo should not
Packit cb6d3d
# exceed 55 pixels and the maximum width should not exceed 200 pixels.
Packit cb6d3d
# Doxygen will copy the logo to the output directory.
Packit cb6d3d
Packit cb6d3d
PROJECT_LOGO           =
Packit cb6d3d
Packit cb6d3d
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
Packit cb6d3d
# base path where the generated documentation will be put.
Packit cb6d3d
# If a relative path is entered, it will be relative to the location
Packit cb6d3d
# where doxygen was started. If left blank the current directory will be used.
Packit cb6d3d
Packit cb6d3d
OUTPUT_DIRECTORY       =
Packit cb6d3d
Packit cb6d3d
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
Packit cb6d3d
# 4096 sub-directories (in 2 levels) under the output directory of each output
Packit cb6d3d
# format and will distribute the generated files over these directories.
Packit cb6d3d
# Enabling this option can be useful when feeding doxygen a huge amount of
Packit cb6d3d
# source files, where putting all generated files in the same directory would
Packit cb6d3d
# otherwise cause performance problems for the file system.
Packit cb6d3d
Packit cb6d3d
CREATE_SUBDIRS         = NO
Packit cb6d3d
Packit cb6d3d
# The OUTPUT_LANGUAGE tag is used to specify the language in which all
Packit cb6d3d
# documentation generated by doxygen is written. Doxygen will use this
Packit cb6d3d
# information to generate all constant output in the proper language.
Packit cb6d3d
# The default language is English, other supported languages are:
Packit cb6d3d
# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
Packit cb6d3d
# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German,
Packit cb6d3d
# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English
Packit cb6d3d
# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian,
Packit cb6d3d
# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak,
Packit cb6d3d
# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.
Packit cb6d3d
Packit cb6d3d
OUTPUT_LANGUAGE        = English
Packit cb6d3d
Packit cb6d3d
# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
Packit cb6d3d
# include brief member descriptions after the members that are listed in
Packit cb6d3d
# the file and class documentation (similar to JavaDoc).
Packit cb6d3d
# Set to NO to disable this.
Packit cb6d3d
Packit cb6d3d
BRIEF_MEMBER_DESC      = YES
Packit cb6d3d
Packit cb6d3d
# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
Packit cb6d3d
# the brief description of a member or function before the detailed description.
Packit cb6d3d
# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
Packit cb6d3d
# brief descriptions will be completely suppressed.
Packit cb6d3d
Packit cb6d3d
REPEAT_BRIEF           = YES
Packit cb6d3d
Packit cb6d3d
# This tag implements a quasi-intelligent brief description abbreviator
Packit cb6d3d
# that is used to form the text in various listings. Each string
Packit cb6d3d
# in this list, if found as the leading text of the brief description, will be
Packit cb6d3d
# stripped from the text and the result after processing the whole list, is
Packit cb6d3d
# used as the annotated text. Otherwise, the brief description is used as-is.
Packit cb6d3d
# If left blank, the following values are used ("$name" is automatically
Packit cb6d3d
# replaced with the name of the entity): "The $name class" "The $name widget"
Packit cb6d3d
# "The $name file" "is" "provides" "specifies" "contains"
Packit cb6d3d
# "represents" "a" "an" "the"
Packit cb6d3d
Packit cb6d3d
ABBREVIATE_BRIEF       = "The $name class " \
Packit cb6d3d
                         "The $name widget " \
Packit cb6d3d
                         "The $name file " \
Packit cb6d3d
                         is \
Packit cb6d3d
                         provides \
Packit cb6d3d
                         specifies \
Packit cb6d3d
                         contains \
Packit cb6d3d
                         represents \
Packit cb6d3d
                         a \
Packit cb6d3d
                         an \
Packit cb6d3d
                         the
Packit cb6d3d
Packit cb6d3d
# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
Packit cb6d3d
# Doxygen will generate a detailed section even if there is only a brief
Packit cb6d3d
# description.
Packit cb6d3d
Packit cb6d3d
ALWAYS_DETAILED_SEC    = NO
Packit cb6d3d
Packit cb6d3d
# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
Packit cb6d3d
# inherited members of a class in the documentation of that class as if those
Packit cb6d3d
# members were ordinary class members. Constructors, destructors and assignment
Packit cb6d3d
# operators of the base classes will not be shown.
Packit cb6d3d
Packit cb6d3d
INLINE_INHERITED_MEMB  = NO
Packit cb6d3d
Packit cb6d3d
# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
Packit cb6d3d
# path before files name in the file list and in the header files. If set
Packit cb6d3d
# to NO the shortest path that makes the file name unique will be used.
Packit cb6d3d
Packit cb6d3d
FULL_PATH_NAMES        = NO
Packit cb6d3d
Packit cb6d3d
# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
Packit cb6d3d
# can be used to strip a user-defined part of the path. Stripping is
Packit cb6d3d
# only done if one of the specified strings matches the left-hand part of
Packit cb6d3d
# the path. The tag can be used to show relative paths in the file list.
Packit cb6d3d
# If left blank the directory from which doxygen is run is used as the
Packit cb6d3d
# path to strip.
Packit cb6d3d
Packit cb6d3d
STRIP_FROM_PATH        = @LIBCDIO_PARANOIA_SOURCE_PATH@
Packit cb6d3d
Packit cb6d3d
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
Packit cb6d3d
# the path mentioned in the documentation of a class, which tells
Packit cb6d3d
# the reader which header file to include in order to use a class.
Packit cb6d3d
# If left blank only the name of the header file containing the class
Packit cb6d3d
# definition is used. Otherwise one should specify the include paths that
Packit cb6d3d
# are normally passed to the compiler using the -I flag.
Packit cb6d3d
Packit cb6d3d
STRIP_FROM_INC_PATH    =
Packit cb6d3d
Packit cb6d3d
# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
Packit cb6d3d
# (but less readable) file names. This can be useful if your file system
Packit cb6d3d
# doesn't support long names like on DOS, Mac, or CD-ROM.
Packit cb6d3d
Packit cb6d3d
SHORT_NAMES            = NO
Packit cb6d3d
Packit cb6d3d
# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
Packit cb6d3d
# will interpret the first line (until the first dot) of a JavaDoc-style
Packit cb6d3d
# comment as the brief description. If set to NO, the JavaDoc
Packit cb6d3d
# comments will behave just like regular Qt-style comments
Packit cb6d3d
# (thus requiring an explicit @brief command for a brief description.)
Packit cb6d3d
Packit cb6d3d
JAVADOC_AUTOBRIEF      = NO
Packit cb6d3d
Packit cb6d3d
# If the QT_AUTOBRIEF tag is set to YES then Doxygen will
Packit cb6d3d
# interpret the first line (until the first dot) of a Qt-style
Packit cb6d3d
# comment as the brief description. If set to NO, the comments
Packit cb6d3d
# will behave just like regular Qt-style comments (thus requiring
Packit cb6d3d
# an explicit \brief command for a brief description.)
Packit cb6d3d
Packit cb6d3d
QT_AUTOBRIEF           = NO
Packit cb6d3d
Packit cb6d3d
# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
Packit cb6d3d
# treat a multi-line C++ special comment block (i.e. a block of //! or ///
Packit cb6d3d
# comments) as a brief description. This used to be the default behaviour.
Packit cb6d3d
# The new default is to treat a multi-line C++ comment block as a detailed
Packit cb6d3d
# description. Set this tag to YES if you prefer the old behaviour instead.
Packit cb6d3d
Packit cb6d3d
MULTILINE_CPP_IS_BRIEF = NO
Packit cb6d3d
Packit cb6d3d
# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
Packit cb6d3d
# member inherits the documentation from any documented member that it
Packit cb6d3d
# re-implements.
Packit cb6d3d
Packit cb6d3d
INHERIT_DOCS           = YES
Packit cb6d3d
Packit cb6d3d
# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
Packit cb6d3d
# a new page for each member. If set to NO, the documentation of a member will
Packit cb6d3d
# be part of the file/class/namespace that contains it.
Packit cb6d3d
Packit cb6d3d
SEPARATE_MEMBER_PAGES  = NO
Packit cb6d3d
Packit cb6d3d
# The TAB_SIZE tag can be used to set the number of spaces in a tab.
Packit cb6d3d
# Doxygen uses this value to replace tabs by spaces in code fragments.
Packit cb6d3d
Packit cb6d3d
TAB_SIZE               = 8
Packit cb6d3d
Packit cb6d3d
# This tag can be used to specify a number of aliases that acts
Packit cb6d3d
# as commands in the documentation. An alias has the form "name=value".
Packit cb6d3d
# For example adding "sideeffect=\par Side Effects:\n" will allow you to
Packit cb6d3d
# put the command \sideeffect (or @sideeffect) in the documentation, which
Packit cb6d3d
# will result in a user-defined paragraph with heading "Side Effects:".
Packit cb6d3d
# You can put \n's in the value part of an alias to insert newlines.
Packit cb6d3d
Packit cb6d3d
ALIASES                =
Packit cb6d3d
Packit cb6d3d
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
Packit cb6d3d
# sources only. Doxygen will then generate output that is more tailored for C.
Packit cb6d3d
# For instance, some of the names that are used will be different. The list
Packit cb6d3d
# of all members will be omitted, etc.
Packit cb6d3d
Packit cb6d3d
OPTIMIZE_OUTPUT_FOR_C  = YES
Packit cb6d3d
Packit cb6d3d
# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
Packit cb6d3d
# sources only. Doxygen will then generate output that is more tailored for
Packit cb6d3d
# Java. For instance, namespaces will be presented as packages, qualified
Packit cb6d3d
# scopes will look different, etc.
Packit cb6d3d
Packit cb6d3d
OPTIMIZE_OUTPUT_JAVA   = NO
Packit cb6d3d
Packit cb6d3d
# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
Packit cb6d3d
# sources only. Doxygen will then generate output that is more tailored for
Packit cb6d3d
# Fortran.
Packit cb6d3d
Packit cb6d3d
OPTIMIZE_FOR_FORTRAN   = NO
Packit cb6d3d
Packit cb6d3d
# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
Packit cb6d3d
# sources. Doxygen will then generate output that is tailored for
Packit cb6d3d
# VHDL.
Packit cb6d3d
Packit cb6d3d
OPTIMIZE_OUTPUT_VHDL   = NO
Packit cb6d3d
Packit cb6d3d
# Doxygen selects the parser to use depending on the extension of the files it
Packit cb6d3d
# parses. With this tag you can assign which parser to use for a given extension.
Packit cb6d3d
# Doxygen has a built-in mapping, but you can override or extend it using this
Packit cb6d3d
# tag. The format is ext=language, where ext is a file extension, and language
Packit cb6d3d
# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C,
Packit cb6d3d
# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make
Packit cb6d3d
# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
Packit cb6d3d
# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions
Packit cb6d3d
# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen.
Packit cb6d3d
Packit cb6d3d
EXTENSION_MAPPING      =
Packit cb6d3d
Packit cb6d3d
# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
Packit cb6d3d
# to include (a tag file for) the STL sources as input, then you should
Packit cb6d3d
# set this tag to YES in order to let doxygen match functions declarations and
Packit cb6d3d
# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
Packit cb6d3d
# func(std::string) {}). This also makes the inheritance and collaboration
Packit cb6d3d
# diagrams that involve STL classes more complete and accurate.
Packit cb6d3d
Packit cb6d3d
BUILTIN_STL_SUPPORT    = NO
Packit cb6d3d
Packit cb6d3d
# If you use Microsoft's C++/CLI language, you should set this option to YES to
Packit cb6d3d
# enable parsing support.
Packit cb6d3d
Packit cb6d3d
CPP_CLI_SUPPORT        = NO
Packit cb6d3d
Packit cb6d3d
# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
Packit cb6d3d
# Doxygen will parse them like normal C++ but will assume all classes use public
Packit cb6d3d
# instead of private inheritance when no explicit protection keyword is present.
Packit cb6d3d
Packit cb6d3d
SIP_SUPPORT            = NO
Packit cb6d3d
Packit cb6d3d
# For Microsoft's IDL there are propget and propput attributes to indicate getter
Packit cb6d3d
# and setter methods for a property. Setting this option to YES (the default)
Packit cb6d3d
# will make doxygen replace the get and set methods by a property in the
Packit cb6d3d
# documentation. This will only work if the methods are indeed getting or
Packit cb6d3d
# setting a simple type. If this is not the case, or you want to show the
Packit cb6d3d
# methods anyway, you should set this option to NO.
Packit cb6d3d
Packit cb6d3d
IDL_PROPERTY_SUPPORT   = YES
Packit cb6d3d
Packit cb6d3d
# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
Packit cb6d3d
# tag is set to YES, then doxygen will reuse the documentation of the first
Packit cb6d3d
# member in the group (if any) for the other members of the group. By default
Packit cb6d3d
# all members of a group must be documented explicitly.
Packit cb6d3d
Packit cb6d3d
DISTRIBUTE_GROUP_DOC   = NO
Packit cb6d3d
Packit cb6d3d
# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
Packit cb6d3d
# the same type (for instance a group of public functions) to be put as a
Packit cb6d3d
# subgroup of that type (e.g. under the Public Functions section). Set it to
Packit cb6d3d
# NO to prevent subgrouping. Alternatively, this can be done per class using
Packit cb6d3d
# the \nosubgrouping command.
Packit cb6d3d
Packit cb6d3d
SUBGROUPING            = YES
Packit cb6d3d
Packit cb6d3d
# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and
Packit cb6d3d
# unions are shown inside the group in which they are included (e.g. using
Packit cb6d3d
# @ingroup) instead of on a separate page (for HTML and Man pages) or
Packit cb6d3d
# section (for LaTeX and RTF).
Packit cb6d3d
Packit cb6d3d
INLINE_GROUPED_CLASSES = NO
Packit cb6d3d
Packit cb6d3d
# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
Packit cb6d3d
# is documented as struct, union, or enum with the name of the typedef. So
Packit cb6d3d
# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
Packit cb6d3d
# with name TypeT. When disabled the typedef will appear as a member of a file,
Packit cb6d3d
# namespace, or class. And the struct will be named TypeS. This can typically
Packit cb6d3d
# be useful for C code in case the coding convention dictates that all compound
Packit cb6d3d
# types are typedef'ed and only the typedef is referenced, never the tag name.
Packit cb6d3d
Packit cb6d3d
TYPEDEF_HIDES_STRUCT   = NO
Packit cb6d3d
Packit cb6d3d
# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to
Packit cb6d3d
# determine which symbols to keep in memory and which to flush to disk.
Packit cb6d3d
# When the cache is full, less often used symbols will be written to disk.
Packit cb6d3d
# For small to medium size projects (<1000 input files) the default value is
Packit cb6d3d
# probably good enough. For larger projects a too small cache size can cause
Packit cb6d3d
# doxygen to be busy swapping symbols to and from disk most of the time
Packit cb6d3d
# causing a significant performance penalty.
Packit cb6d3d
# If the system has enough physical memory increasing the cache will improve the
Packit cb6d3d
# performance by keeping more symbols in memory. Note that the value works on
Packit cb6d3d
# a logarithmic scale so increasing the size by one will roughly double the
Packit cb6d3d
# memory usage. The cache size is given by this formula:
Packit cb6d3d
# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
Packit cb6d3d
# corresponding to a cache size of 2^16 = 65536 symbols
Packit cb6d3d
Packit cb6d3d
SYMBOL_CACHE_SIZE      = 0
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# Build related configuration options
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
Packit cb6d3d
# documentation are documented, even if no documentation was available.
Packit cb6d3d
# Private class members and static file members will be hidden unless
Packit cb6d3d
# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
Packit cb6d3d
Packit cb6d3d
EXTRACT_ALL            = YES
Packit cb6d3d
Packit cb6d3d
# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
Packit cb6d3d
# will be included in the documentation.
Packit cb6d3d
Packit cb6d3d
EXTRACT_PRIVATE        = YES
Packit cb6d3d
Packit cb6d3d
# If the EXTRACT_STATIC tag is set to YES all static members of a file
Packit cb6d3d
# will be included in the documentation.
Packit cb6d3d
Packit cb6d3d
EXTRACT_STATIC         = NO
Packit cb6d3d
Packit cb6d3d
# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
Packit cb6d3d
# defined locally in source files will be included in the documentation.
Packit cb6d3d
# If set to NO only classes defined in header files are included.
Packit cb6d3d
Packit cb6d3d
EXTRACT_LOCAL_CLASSES  = YES
Packit cb6d3d
Packit cb6d3d
# This flag is only useful for Objective-C code. When set to YES local
Packit cb6d3d
# methods, which are defined in the implementation section but not in
Packit cb6d3d
# the interface are included in the documentation.
Packit cb6d3d
# If set to NO (the default) only methods in the interface are included.
Packit cb6d3d
Packit cb6d3d
EXTRACT_LOCAL_METHODS  = NO
Packit cb6d3d
Packit cb6d3d
# If this flag is set to YES, the members of anonymous namespaces will be
Packit cb6d3d
# extracted and appear in the documentation as a namespace called
Packit cb6d3d
# 'anonymous_namespace{file}', where file will be replaced with the base
Packit cb6d3d
# name of the file that contains the anonymous namespace. By default
Packit cb6d3d
# anonymous namespaces are hidden.
Packit cb6d3d
Packit cb6d3d
EXTRACT_ANON_NSPACES   = NO
Packit cb6d3d
Packit cb6d3d
# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
Packit cb6d3d
# undocumented members of documented classes, files or namespaces.
Packit cb6d3d
# If set to NO (the default) these members will be included in the
Packit cb6d3d
# various overviews, but no documentation section is generated.
Packit cb6d3d
# This option has no effect if EXTRACT_ALL is enabled.
Packit cb6d3d
Packit cb6d3d
HIDE_UNDOC_MEMBERS     = NO
Packit cb6d3d
Packit cb6d3d
# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
Packit cb6d3d
# undocumented classes that are normally visible in the class hierarchy.
Packit cb6d3d
# If set to NO (the default) these classes will be included in the various
Packit cb6d3d
# overviews. This option has no effect if EXTRACT_ALL is enabled.
Packit cb6d3d
Packit cb6d3d
HIDE_UNDOC_CLASSES     = NO
Packit cb6d3d
Packit cb6d3d
# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
Packit cb6d3d
# friend (class|struct|union) declarations.
Packit cb6d3d
# If set to NO (the default) these declarations will be included in the
Packit cb6d3d
# documentation.
Packit cb6d3d
Packit cb6d3d
HIDE_FRIEND_COMPOUNDS  = NO
Packit cb6d3d
Packit cb6d3d
# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
Packit cb6d3d
# documentation blocks found inside the body of a function.
Packit cb6d3d
# If set to NO (the default) these blocks will be appended to the
Packit cb6d3d
# function's detailed documentation block.
Packit cb6d3d
Packit cb6d3d
HIDE_IN_BODY_DOCS      = NO
Packit cb6d3d
Packit cb6d3d
# The INTERNAL_DOCS tag determines if documentation
Packit cb6d3d
# that is typed after a \internal command is included. If the tag is set
Packit cb6d3d
# to NO (the default) then the documentation will be excluded.
Packit cb6d3d
# Set it to YES to include the internal documentation.
Packit cb6d3d
Packit cb6d3d
INTERNAL_DOCS          = NO
Packit cb6d3d
Packit cb6d3d
# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
Packit cb6d3d
# file names in lower-case letters. If set to YES upper-case letters are also
Packit cb6d3d
# allowed. This is useful if you have classes or files whose names only differ
Packit cb6d3d
# in case and if your file system supports case sensitive file names. Windows
Packit cb6d3d
# and Mac users are advised to set this option to NO.
Packit cb6d3d
Packit cb6d3d
CASE_SENSE_NAMES       = YES
Packit cb6d3d
Packit cb6d3d
# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
Packit cb6d3d
# will show members with their full class and namespace scopes in the
Packit cb6d3d
# documentation. If set to YES the scope will be hidden.
Packit cb6d3d
Packit cb6d3d
HIDE_SCOPE_NAMES       = NO
Packit cb6d3d
Packit cb6d3d
# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
Packit cb6d3d
# will put a list of the files that are included by a file in the documentation
Packit cb6d3d
# of that file.
Packit cb6d3d
Packit cb6d3d
SHOW_INCLUDE_FILES     = YES
Packit cb6d3d
Packit cb6d3d
# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen
Packit cb6d3d
# will list include files with double quotes in the documentation
Packit cb6d3d
# rather than with sharp brackets.
Packit cb6d3d
Packit cb6d3d
FORCE_LOCAL_INCLUDES   = NO
Packit cb6d3d
Packit cb6d3d
# If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
Packit cb6d3d
# is inserted in the documentation for inline members.
Packit cb6d3d
Packit cb6d3d
INLINE_INFO            = YES
Packit cb6d3d
Packit cb6d3d
# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
Packit cb6d3d
# will sort the (detailed) documentation of file and class members
Packit cb6d3d
# alphabetically by member name. If set to NO the members will appear in
Packit cb6d3d
# declaration order.
Packit cb6d3d
Packit cb6d3d
SORT_MEMBER_DOCS       = YES
Packit cb6d3d
Packit cb6d3d
# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
Packit cb6d3d
# brief documentation of file, namespace and class members alphabetically
Packit cb6d3d
# by member name. If set to NO (the default) the members will appear in
Packit cb6d3d
# declaration order.
Packit cb6d3d
Packit cb6d3d
SORT_BRIEF_DOCS        = NO
Packit cb6d3d
Packit cb6d3d
# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen
Packit cb6d3d
# will sort the (brief and detailed) documentation of class members so that
Packit cb6d3d
# constructors and destructors are listed first. If set to NO (the default)
Packit cb6d3d
# the constructors will appear in the respective orders defined by
Packit cb6d3d
# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS.
Packit cb6d3d
# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO
Packit cb6d3d
# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.
Packit cb6d3d
Packit cb6d3d
SORT_MEMBERS_CTORS_1ST = NO
Packit cb6d3d
Packit cb6d3d
# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
Packit cb6d3d
# hierarchy of group names into alphabetical order. If set to NO (the default)
Packit cb6d3d
# the group names will appear in their defined order.
Packit cb6d3d
Packit cb6d3d
SORT_GROUP_NAMES       = NO
Packit cb6d3d
Packit cb6d3d
# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
Packit cb6d3d
# sorted by fully-qualified names, including namespaces. If set to
Packit cb6d3d
# NO (the default), the class list will be sorted only by class name,
Packit cb6d3d
# not including the namespace part.
Packit cb6d3d
# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
Packit cb6d3d
# Note: This option applies only to the class list, not to the
Packit cb6d3d
# alphabetical list.
Packit cb6d3d
Packit cb6d3d
SORT_BY_SCOPE_NAME     = NO
Packit cb6d3d
Packit cb6d3d
# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to
Packit cb6d3d
# do proper type resolution of all parameters of a function it will reject a
Packit cb6d3d
# match between the prototype and the implementation of a member function even
Packit cb6d3d
# if there is only one candidate or it is obvious which candidate to choose
Packit cb6d3d
# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen
Packit cb6d3d
# will still accept a match between prototype and implementation in such cases.
Packit cb6d3d
Packit cb6d3d
STRICT_PROTO_MATCHING  = NO
Packit cb6d3d
Packit cb6d3d
# The GENERATE_TODOLIST tag can be used to enable (YES) or
Packit cb6d3d
# disable (NO) the todo list. This list is created by putting \todo
Packit cb6d3d
# commands in the documentation.
Packit cb6d3d
Packit cb6d3d
GENERATE_TODOLIST      = YES
Packit cb6d3d
Packit cb6d3d
# The GENERATE_TESTLIST tag can be used to enable (YES) or
Packit cb6d3d
# disable (NO) the test list. This list is created by putting \test
Packit cb6d3d
# commands in the documentation.
Packit cb6d3d
Packit cb6d3d
GENERATE_TESTLIST      = YES
Packit cb6d3d
Packit cb6d3d
# The GENERATE_BUGLIST tag can be used to enable (YES) or
Packit cb6d3d
# disable (NO) the bug list. This list is created by putting \bug
Packit cb6d3d
# commands in the documentation.
Packit cb6d3d
Packit cb6d3d
GENERATE_BUGLIST       = YES
Packit cb6d3d
Packit cb6d3d
# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
Packit cb6d3d
# disable (NO) the deprecated list. This list is created by putting
Packit cb6d3d
# \deprecated commands in the documentation.
Packit cb6d3d
Packit cb6d3d
GENERATE_DEPRECATEDLIST= YES
Packit cb6d3d
Packit cb6d3d
# The ENABLED_SECTIONS tag can be used to enable conditional
Packit cb6d3d
# documentation sections, marked by \if sectionname ... \endif.
Packit cb6d3d
Packit cb6d3d
ENABLED_SECTIONS       =
Packit cb6d3d
Packit cb6d3d
# The MAX_INITIALIZER_LINES tag determines the maximum number of lines
Packit cb6d3d
# the initial value of a variable or macro consists of for it to appear in
Packit cb6d3d
# the documentation. If the initializer consists of more lines than specified
Packit cb6d3d
# here it will be hidden. Use a value of 0 to hide initializers completely.
Packit cb6d3d
# The appearance of the initializer of individual variables and macros in the
Packit cb6d3d
# documentation can be controlled using \showinitializer or \hideinitializer
Packit cb6d3d
# command in the documentation regardless of this setting.
Packit cb6d3d
Packit cb6d3d
MAX_INITIALIZER_LINES  = 30
Packit cb6d3d
Packit cb6d3d
# Set the SHOW_USED_FILES tag to NO to disable the list of files generated
Packit cb6d3d
# at the bottom of the documentation of classes and structs. If set to YES the
Packit cb6d3d
# list will mention the files that were used to generate the documentation.
Packit cb6d3d
Packit cb6d3d
SHOW_USED_FILES        = YES
Packit cb6d3d
Packit cb6d3d
# If the sources in your project are distributed over multiple directories
Packit cb6d3d
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
Packit cb6d3d
# in the documentation. The default is NO.
Packit cb6d3d
Packit cb6d3d
SHOW_DIRECTORIES       = NO
Packit cb6d3d
Packit cb6d3d
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
Packit cb6d3d
# This will remove the Files entry from the Quick Index and from the
Packit cb6d3d
# Folder Tree View (if specified). The default is YES.
Packit cb6d3d
Packit cb6d3d
SHOW_FILES             = YES
Packit cb6d3d
Packit cb6d3d
# Set the SHOW_NAMESPACES tag to NO to disable the generation of the
Packit cb6d3d
# Namespaces page.
Packit cb6d3d
# This will remove the Namespaces entry from the Quick Index
Packit cb6d3d
# and from the Folder Tree View (if specified). The default is YES.
Packit cb6d3d
Packit cb6d3d
SHOW_NAMESPACES        = YES
Packit cb6d3d
Packit cb6d3d
# The FILE_VERSION_FILTER tag can be used to specify a program or script that
Packit cb6d3d
# doxygen should invoke to get the current version for each file (typically from
Packit cb6d3d
# the version control system). Doxygen will invoke the program by executing (via
Packit cb6d3d
# popen()) the command <command> <input-file>, where <command> is the value of
Packit cb6d3d
# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
Packit cb6d3d
# provided by doxygen. Whatever the program writes to standard output
Packit cb6d3d
# is used as the file version. See the manual for examples.
Packit cb6d3d
Packit cb6d3d
FILE_VERSION_FILTER    =
Packit cb6d3d
Packit cb6d3d
# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
Packit cb6d3d
# by doxygen. The layout file controls the global structure of the generated
Packit cb6d3d
# output files in an output format independent way. The create the layout file
Packit cb6d3d
# that represents doxygen's defaults, run doxygen with the -l option.
Packit cb6d3d
# You can optionally specify a file name after the option, if omitted
Packit cb6d3d
# DoxygenLayout.xml will be used as the name of the layout file.
Packit cb6d3d
Packit cb6d3d
LAYOUT_FILE            =
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# configuration options related to warning and progress messages
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# The QUIET tag can be used to turn on/off the messages that are generated
Packit cb6d3d
# by doxygen. Possible values are YES and NO. If left blank NO is used.
Packit cb6d3d
Packit cb6d3d
QUIET                  = NO
Packit cb6d3d
Packit cb6d3d
# The WARNINGS tag can be used to turn on/off the warning messages that are
Packit cb6d3d
# generated by doxygen. Possible values are YES and NO. If left blank
Packit cb6d3d
# NO is used.
Packit cb6d3d
Packit cb6d3d
WARNINGS               = YES
Packit cb6d3d
Packit cb6d3d
# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
Packit cb6d3d
# for undocumented members. If EXTRACT_ALL is set to YES then this flag will
Packit cb6d3d
# automatically be disabled.
Packit cb6d3d
Packit cb6d3d
WARN_IF_UNDOCUMENTED   = YES
Packit cb6d3d
Packit cb6d3d
# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
Packit cb6d3d
# potential errors in the documentation, such as not documenting some
Packit cb6d3d
# parameters in a documented function, or documenting parameters that
Packit cb6d3d
# don't exist or using markup commands wrongly.
Packit cb6d3d
Packit cb6d3d
WARN_IF_DOC_ERROR      = YES
Packit cb6d3d
Packit cb6d3d
# The WARN_NO_PARAMDOC option can be enabled to get warnings for
Packit cb6d3d
# functions that are documented, but have no documentation for their parameters
Packit cb6d3d
# or return value. If set to NO (the default) doxygen will only warn about
Packit cb6d3d
# wrong or incomplete parameter documentation, but not about the absence of
Packit cb6d3d
# documentation.
Packit cb6d3d
Packit cb6d3d
WARN_NO_PARAMDOC       = NO
Packit cb6d3d
Packit cb6d3d
# The WARN_FORMAT tag determines the format of the warning messages that
Packit cb6d3d
# doxygen can produce. The string should contain the $file, $line, and $text
Packit cb6d3d
# tags, which will be replaced by the file and line number from which the
Packit cb6d3d
# warning originated and the warning text. Optionally the format may contain
Packit cb6d3d
# $version, which will be replaced by the version of the file (if it could
Packit cb6d3d
# be obtained via FILE_VERSION_FILTER)
Packit cb6d3d
Packit cb6d3d
WARN_FORMAT            = "$file:$line: $text "
Packit cb6d3d
Packit cb6d3d
# The WARN_LOGFILE tag can be used to specify a file to which warning
Packit cb6d3d
# and error messages should be written. If left blank the output is written
Packit cb6d3d
# to stderr.
Packit cb6d3d
Packit cb6d3d
WARN_LOGFILE           =
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# configuration options related to the input files
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# The INPUT tag can be used to specify the files and/or directories that contain
Packit cb6d3d
# documented source files. You may enter file names like "myfile.cpp" or
Packit cb6d3d
# directories like "/usr/src/myproject". Separate the files or directories
Packit cb6d3d
# with spaces.
Packit cb6d3d
Packit cb6d3d
INPUT                  = ../../include/cdio/paranoia ../../lib ../../src
Packit cb6d3d
Packit cb6d3d
# This tag can be used to specify the character encoding of the source files
Packit cb6d3d
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
Packit cb6d3d
# also the default input encoding. Doxygen uses libiconv (or the iconv built
Packit cb6d3d
# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for
Packit cb6d3d
# the list of possible encodings.
Packit cb6d3d
Packit cb6d3d
INPUT_ENCODING         = UTF-8
Packit cb6d3d
Packit cb6d3d
# If the value of the INPUT tag contains directories, you can use the
Packit cb6d3d
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
Packit cb6d3d
# and *.h) to filter out the source-files in the directories. If left
Packit cb6d3d
# blank the following patterns are tested:
Packit cb6d3d
# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh
Packit cb6d3d
# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py
Packit cb6d3d
# *.f90 *.f *.for *.vhd *.vhdl
Packit cb6d3d
Packit cb6d3d
FILE_PATTERNS          = *.h *.c
Packit cb6d3d
Packit cb6d3d
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
Packit cb6d3d
# should be searched for input files as well. Possible values are YES and NO.
Packit cb6d3d
# If left blank NO is used.
Packit cb6d3d
Packit cb6d3d
RECURSIVE              = YES
Packit cb6d3d
Packit cb6d3d
# The EXCLUDE tag can be used to specify files and/or directories that should
Packit cb6d3d
# excluded from the INPUT source files. This way you can easily exclude a
Packit cb6d3d
# subdirectory from a directory tree whose root is specified with the INPUT tag.
Packit cb6d3d
Packit cb6d3d
EXCLUDE                =
Packit cb6d3d
Packit cb6d3d
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
Packit cb6d3d
# directories that are symbolic links (a Unix file system feature) are excluded
Packit cb6d3d
# from the input.
Packit cb6d3d
Packit cb6d3d
EXCLUDE_SYMLINKS       = NO
Packit cb6d3d
Packit cb6d3d
# If the value of the INPUT tag contains directories, you can use the
Packit cb6d3d
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
Packit cb6d3d
# certain files from those directories. Note that the wildcards are matched
Packit cb6d3d
# against the file with absolute path, so to exclude all test directories
Packit cb6d3d
# for example use the pattern */test/*
Packit cb6d3d
Packit cb6d3d
EXCLUDE_PATTERNS       =
Packit cb6d3d
Packit cb6d3d
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
Packit cb6d3d
# (namespaces, classes, functions, etc.) that should be excluded from the
Packit cb6d3d
# output. The symbol name can be a fully qualified name, a word, or if the
Packit cb6d3d
# wildcard * is used, a substring. Examples: ANamespace, AClass,
Packit cb6d3d
# AClass::ANamespace, ANamespace::*Test
Packit cb6d3d
Packit cb6d3d
EXCLUDE_SYMBOLS        =
Packit cb6d3d
Packit cb6d3d
# The EXAMPLE_PATH tag can be used to specify one or more files or
Packit cb6d3d
# directories that contain example code fragments that are included (see
Packit cb6d3d
# the \include command).
Packit cb6d3d
Packit cb6d3d
EXAMPLE_PATH           = ../../example
Packit cb6d3d
Packit cb6d3d
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
Packit cb6d3d
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
Packit cb6d3d
# and *.h) to filter out the source-files in the directories. If left
Packit cb6d3d
# blank all files are included.
Packit cb6d3d
Packit cb6d3d
EXAMPLE_PATTERNS       =
Packit cb6d3d
Packit cb6d3d
# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
Packit cb6d3d
# searched for input files to be used with the \include or \dontinclude
Packit cb6d3d
# commands irrespective of the value of the RECURSIVE tag.
Packit cb6d3d
# Possible values are YES and NO. If left blank NO is used.
Packit cb6d3d
Packit cb6d3d
EXAMPLE_RECURSIVE      = NO
Packit cb6d3d
Packit cb6d3d
# The IMAGE_PATH tag can be used to specify one or more files or
Packit cb6d3d
# directories that contain image that are included in the documentation (see
Packit cb6d3d
# the \image command).
Packit cb6d3d
Packit cb6d3d
IMAGE_PATH             =
Packit cb6d3d
Packit cb6d3d
# The INPUT_FILTER tag can be used to specify a program that doxygen should
Packit cb6d3d
# invoke to filter for each input file. Doxygen will invoke the filter program
Packit cb6d3d
# by executing (via popen()) the command <filter> <input-file>, where <filter>
Packit cb6d3d
# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
Packit cb6d3d
# input file. Doxygen will then use the output that the filter program writes
Packit cb6d3d
# to standard output.
Packit cb6d3d
# If FILTER_PATTERNS is specified, this tag will be
Packit cb6d3d
# ignored.
Packit cb6d3d
Packit cb6d3d
INPUT_FILTER           =
Packit cb6d3d
Packit cb6d3d
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
Packit cb6d3d
# basis.
Packit cb6d3d
# Doxygen will compare the file name with each pattern and apply the
Packit cb6d3d
# filter if there is a match.
Packit cb6d3d
# The filters are a list of the form:
Packit cb6d3d
# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
Packit cb6d3d
# info on how filters are used. If FILTER_PATTERNS is empty or if
Packit cb6d3d
# non of the patterns match the file name, INPUT_FILTER is applied.
Packit cb6d3d
Packit cb6d3d
FILTER_PATTERNS        =
Packit cb6d3d
Packit cb6d3d
# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
Packit cb6d3d
# INPUT_FILTER) will be used to filter the input files when producing source
Packit cb6d3d
# files to browse (i.e. when SOURCE_BROWSER is set to YES).
Packit cb6d3d
Packit cb6d3d
FILTER_SOURCE_FILES    = NO
Packit cb6d3d
Packit cb6d3d
# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
Packit cb6d3d
# pattern. A pattern will override the setting for FILTER_PATTERN (if any)
Packit cb6d3d
# and it is also possible to disable source filtering for a specific pattern
Packit cb6d3d
# using *.ext= (so without naming a filter). This option only has effect when
Packit cb6d3d
# FILTER_SOURCE_FILES is enabled.
Packit cb6d3d
Packit cb6d3d
FILTER_SOURCE_PATTERNS =
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# configuration options related to source browsing
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# If the SOURCE_BROWSER tag is set to YES then a list of source files will
Packit cb6d3d
# be generated. Documented entities will be cross-referenced with these sources.
Packit cb6d3d
# Note: To get rid of all source code in the generated output, make sure also
Packit cb6d3d
# VERBATIM_HEADERS is set to NO.
Packit cb6d3d
Packit cb6d3d
SOURCE_BROWSER         = NO
Packit cb6d3d
Packit cb6d3d
# Setting the INLINE_SOURCES tag to YES will include the body
Packit cb6d3d
# of functions and classes directly in the documentation.
Packit cb6d3d
Packit cb6d3d
INLINE_SOURCES         = NO
Packit cb6d3d
Packit cb6d3d
# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
Packit cb6d3d
# doxygen to hide any special comment blocks from generated source code
Packit cb6d3d
# fragments. Normal C and C++ comments will always remain visible.
Packit cb6d3d
Packit cb6d3d
STRIP_CODE_COMMENTS    = YES
Packit cb6d3d
Packit cb6d3d
# If the REFERENCED_BY_RELATION tag is set to YES
Packit cb6d3d
# then for each documented function all documented
Packit cb6d3d
# functions referencing it will be listed.
Packit cb6d3d
Packit cb6d3d
REFERENCED_BY_RELATION = YES
Packit cb6d3d
Packit cb6d3d
# If the REFERENCES_RELATION tag is set to YES
Packit cb6d3d
# then for each documented function all documented entities
Packit cb6d3d
# called/used by that function will be listed.
Packit cb6d3d
Packit cb6d3d
REFERENCES_RELATION    = YES
Packit cb6d3d
Packit cb6d3d
# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
Packit cb6d3d
# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
Packit cb6d3d
# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
Packit cb6d3d
# link to the source code.
Packit cb6d3d
# Otherwise they will link to the documentation.
Packit cb6d3d
Packit cb6d3d
REFERENCES_LINK_SOURCE = YES
Packit cb6d3d
Packit cb6d3d
# If the USE_HTAGS tag is set to YES then the references to source code
Packit cb6d3d
# will point to the HTML generated by the htags(1) tool instead of doxygen
Packit cb6d3d
# built-in source browser. The htags tool is part of GNU's global source
Packit cb6d3d
# tagging system (see http://www.gnu.org/software/global/global.html). You
Packit cb6d3d
# will need version 4.8.6 or higher.
Packit cb6d3d
Packit cb6d3d
USE_HTAGS              = NO
Packit cb6d3d
Packit cb6d3d
# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
Packit cb6d3d
# will generate a verbatim copy of the header file for each class for
Packit cb6d3d
# which an include is specified. Set to NO to disable this.
Packit cb6d3d
Packit cb6d3d
VERBATIM_HEADERS       = YES
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# configuration options related to the alphabetical class index
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
Packit cb6d3d
# of all compounds will be generated. Enable this if the project
Packit cb6d3d
# contains a lot of classes, structs, unions or interfaces.
Packit cb6d3d
Packit cb6d3d
ALPHABETICAL_INDEX     = NO
Packit cb6d3d
Packit cb6d3d
# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
Packit cb6d3d
# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
Packit cb6d3d
# in which this list will be split (can be a number in the range [1..20])
Packit cb6d3d
Packit cb6d3d
COLS_IN_ALPHA_INDEX    = 5
Packit cb6d3d
Packit cb6d3d
# In case all classes in a project start with a common prefix, all
Packit cb6d3d
# classes will be put under the same header in the alphabetical index.
Packit cb6d3d
# The IGNORE_PREFIX tag can be used to specify one or more prefixes that
Packit cb6d3d
# should be ignored while generating the index headers.
Packit cb6d3d
Packit cb6d3d
IGNORE_PREFIX          =
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# configuration options related to the HTML output
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
Packit cb6d3d
# generate HTML output.
Packit cb6d3d
Packit cb6d3d
GENERATE_HTML          = YES
Packit cb6d3d
Packit cb6d3d
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
Packit cb6d3d
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
Packit cb6d3d
# put in front of it. If left blank `html' will be used as the default path.
Packit cb6d3d
Packit cb6d3d
HTML_OUTPUT            = html
Packit cb6d3d
Packit cb6d3d
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
Packit cb6d3d
# each generated HTML page (for example: .htm,.php,.asp). If it is left blank
Packit cb6d3d
# doxygen will generate files with .html extension.
Packit cb6d3d
Packit cb6d3d
HTML_FILE_EXTENSION    = .html
Packit cb6d3d
Packit cb6d3d
# The HTML_HEADER tag can be used to specify a personal HTML header for
Packit cb6d3d
# each generated HTML page. If it is left blank doxygen will generate a
Packit cb6d3d
# standard header. Note that when using a custom header you are responsible
Packit cb6d3d
# for the proper inclusion of any scripts and style sheets that doxygen
Packit cb6d3d
# needs, which is dependent on the configuration options used.
Packit cb6d3d
# It is adviced to generate a default header using "doxygen -w html
Packit cb6d3d
# header.html footer.html stylesheet.css YourConfigFile" and then modify
Packit cb6d3d
# that header. Note that the header is subject to change so you typically
Packit cb6d3d
# have to redo this when upgrading to a newer version of doxygen or when changing the value of configuration settings such as GENERATE_TREEVIEW!
Packit cb6d3d
Packit cb6d3d
HTML_HEADER            =
Packit cb6d3d
Packit cb6d3d
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
Packit cb6d3d
# each generated HTML page. If it is left blank doxygen will generate a
Packit cb6d3d
# standard footer.
Packit cb6d3d
Packit cb6d3d
HTML_FOOTER            =
Packit cb6d3d
Packit cb6d3d
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
Packit cb6d3d
# style sheet that is used by each HTML page. It can be used to
Packit cb6d3d
# fine-tune the look of the HTML output. If the tag is left blank doxygen
Packit cb6d3d
# will generate a default style sheet. Note that doxygen will try to copy
Packit cb6d3d
# the style sheet file to the HTML output directory, so don't put your own
Packit cb6d3d
# stylesheet in the HTML output directory as well, or it will be erased!
Packit cb6d3d
Packit cb6d3d
HTML_STYLESHEET        =
Packit cb6d3d
Packit cb6d3d
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
Packit cb6d3d
# other source files which should be copied to the HTML output directory. Note
Packit cb6d3d
# that these files will be copied to the base HTML output directory. Use the
Packit cb6d3d
# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
Packit cb6d3d
# files. In the HTML_STYLESHEET file, use the file name only. Also note that
Packit cb6d3d
# the files will be copied as-is; there are no commands or markers available.
Packit cb6d3d
Packit cb6d3d
HTML_EXTRA_FILES       =
Packit cb6d3d
Packit cb6d3d
# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output.
Packit cb6d3d
# Doxygen will adjust the colors in the stylesheet and background images
Packit cb6d3d
# according to this color. Hue is specified as an angle on a colorwheel,
Packit cb6d3d
# see http://en.wikipedia.org/wiki/Hue for more information.
Packit cb6d3d
# For instance the value 0 represents red, 60 is yellow, 120 is green,
Packit cb6d3d
# 180 is cyan, 240 is blue, 300 purple, and 360 is red again.
Packit cb6d3d
# The allowed range is 0 to 359.
Packit cb6d3d
Packit cb6d3d
HTML_COLORSTYLE_HUE    = 220
Packit cb6d3d
Packit cb6d3d
# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of
Packit cb6d3d
# the colors in the HTML output. For a value of 0 the output will use
Packit cb6d3d
# grayscales only. A value of 255 will produce the most vivid colors.
Packit cb6d3d
Packit cb6d3d
HTML_COLORSTYLE_SAT    = 100
Packit cb6d3d
Packit cb6d3d
# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to
Packit cb6d3d
# the luminance component of the colors in the HTML output. Values below
Packit cb6d3d
# 100 gradually make the output lighter, whereas values above 100 make
Packit cb6d3d
# the output darker. The value divided by 100 is the actual gamma applied,
Packit cb6d3d
# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2,
Packit cb6d3d
# and 100 does not change the gamma.
Packit cb6d3d
Packit cb6d3d
HTML_COLORSTYLE_GAMMA  = 80
Packit cb6d3d
Packit cb6d3d
# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
Packit cb6d3d
# page will contain the date and time when the page was generated. Setting
Packit cb6d3d
# this to NO can help when comparing the output of multiple runs.
Packit cb6d3d
Packit cb6d3d
HTML_TIMESTAMP         = YES
Packit cb6d3d
Packit cb6d3d
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
Packit cb6d3d
# files or namespaces will be aligned in HTML using tables. If set to
Packit cb6d3d
# NO a bullet list will be used.
Packit cb6d3d
Packit cb6d3d
HTML_ALIGN_MEMBERS     = YES
Packit cb6d3d
Packit cb6d3d
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
Packit cb6d3d
# documentation will contain sections that can be hidden and shown after the
Packit cb6d3d
# page has loaded. For this to work a browser that supports
Packit cb6d3d
# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
Packit cb6d3d
# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
Packit cb6d3d
Packit cb6d3d
HTML_DYNAMIC_SECTIONS  = NO
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_DOCSET tag is set to YES, additional index files
Packit cb6d3d
# will be generated that can be used as input for Apple's Xcode 3
Packit cb6d3d
# integrated development environment, introduced with OSX 10.5 (Leopard).
Packit cb6d3d
# To create a documentation set, doxygen will generate a Makefile in the
Packit cb6d3d
# HTML output directory. Running make will produce the docset in that
Packit cb6d3d
# directory and running "make install" will install the docset in
Packit cb6d3d
# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find
Packit cb6d3d
# it at startup.
Packit cb6d3d
# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
Packit cb6d3d
# for more information.
Packit cb6d3d
Packit cb6d3d
GENERATE_DOCSET        = NO
Packit cb6d3d
Packit cb6d3d
# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the
Packit cb6d3d
# feed. A documentation feed provides an umbrella under which multiple
Packit cb6d3d
# documentation sets from a single provider (such as a company or product suite)
Packit cb6d3d
# can be grouped.
Packit cb6d3d
Packit cb6d3d
DOCSET_FEEDNAME        = "Doxygen generated docs"
Packit cb6d3d
Packit cb6d3d
# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that
Packit cb6d3d
# should uniquely identify the documentation set bundle. This should be a
Packit cb6d3d
# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen
Packit cb6d3d
# will append .docset to the name.
Packit cb6d3d
Packit cb6d3d
DOCSET_BUNDLE_ID       = org.doxygen.Project
Packit cb6d3d
Packit cb6d3d
# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify
Packit cb6d3d
# the documentation publisher. This should be a reverse domain-name style
Packit cb6d3d
# string, e.g. com.mycompany.MyDocSet.documentation.
Packit cb6d3d
Packit cb6d3d
DOCSET_PUBLISHER_ID    = org.doxygen.Publisher
Packit cb6d3d
Packit cb6d3d
# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher.
Packit cb6d3d
Packit cb6d3d
DOCSET_PUBLISHER_NAME  = Publisher
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_HTMLHELP tag is set to YES, additional index files
Packit cb6d3d
# will be generated that can be used as input for tools like the
Packit cb6d3d
# Microsoft HTML help workshop to generate a compiled HTML help file (.chm)
Packit cb6d3d
# of the generated HTML documentation.
Packit cb6d3d
Packit cb6d3d
GENERATE_HTMLHELP      = NO
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
Packit cb6d3d
# be used to specify the file name of the resulting .chm file. You
Packit cb6d3d
# can add a path in front of the file if the result should not be
Packit cb6d3d
# written to the html output directory.
Packit cb6d3d
Packit cb6d3d
CHM_FILE               =
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
Packit cb6d3d
# be used to specify the location (absolute path including file name) of
Packit cb6d3d
# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
Packit cb6d3d
# the HTML help compiler on the generated index.hhp.
Packit cb6d3d
Packit cb6d3d
HHC_LOCATION           =
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
Packit cb6d3d
# controls if a separate .chi index file is generated (YES) or that
Packit cb6d3d
# it should be included in the master .chm file (NO).
Packit cb6d3d
Packit cb6d3d
GENERATE_CHI           = NO
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING
Packit cb6d3d
# is used to encode HtmlHelp index (hhk), content (hhc) and project file
Packit cb6d3d
# content.
Packit cb6d3d
Packit cb6d3d
CHM_INDEX_ENCODING     =
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
Packit cb6d3d
# controls whether a binary table of contents is generated (YES) or a
Packit cb6d3d
# normal table of contents (NO) in the .chm file.
Packit cb6d3d
Packit cb6d3d
BINARY_TOC             = NO
Packit cb6d3d
Packit cb6d3d
# The TOC_EXPAND flag can be set to YES to add extra items for group members
Packit cb6d3d
# to the contents of the HTML help documentation and to the tree view.
Packit cb6d3d
Packit cb6d3d
TOC_EXPAND             = NO
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
Packit cb6d3d
# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated
Packit cb6d3d
# that can be used as input for Qt's qhelpgenerator to generate a
Packit cb6d3d
# Qt Compressed Help (.qch) of the generated HTML documentation.
Packit cb6d3d
Packit cb6d3d
GENERATE_QHP           = NO
Packit cb6d3d
Packit cb6d3d
# If the QHG_LOCATION tag is specified, the QCH_FILE tag can
Packit cb6d3d
# be used to specify the file name of the resulting .qch file.
Packit cb6d3d
# The path specified is relative to the HTML output folder.
Packit cb6d3d
Packit cb6d3d
QCH_FILE               =
Packit cb6d3d
Packit cb6d3d
# The QHP_NAMESPACE tag specifies the namespace to use when generating
Packit cb6d3d
# Qt Help Project output. For more information please see
Packit cb6d3d
# http://doc.trolltech.com/qthelpproject.html#namespace
Packit cb6d3d
Packit cb6d3d
QHP_NAMESPACE          = org.doxygen.Project
Packit cb6d3d
Packit cb6d3d
# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating
Packit cb6d3d
# Qt Help Project output. For more information please see
Packit cb6d3d
# http://doc.trolltech.com/qthelpproject.html#virtual-folders
Packit cb6d3d
Packit cb6d3d
QHP_VIRTUAL_FOLDER     = doc
Packit cb6d3d
Packit cb6d3d
# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to
Packit cb6d3d
# add. For more information please see
Packit cb6d3d
# http://doc.trolltech.com/qthelpproject.html#custom-filters
Packit cb6d3d
Packit cb6d3d
QHP_CUST_FILTER_NAME   =
Packit cb6d3d
Packit cb6d3d
# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the
Packit cb6d3d
# custom filter to add. For more information please see
Packit cb6d3d
# 
Packit cb6d3d
# Qt Help Project / Custom Filters.
Packit cb6d3d
Packit cb6d3d
QHP_CUST_FILTER_ATTRS  =
Packit cb6d3d
Packit cb6d3d
# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
Packit cb6d3d
# project's
Packit cb6d3d
# filter section matches.
Packit cb6d3d
# 
Packit cb6d3d
# Qt Help Project / Filter Attributes.
Packit cb6d3d
Packit cb6d3d
QHP_SECT_FILTER_ATTRS  =
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can
Packit cb6d3d
# be used to specify the location of Qt's qhelpgenerator.
Packit cb6d3d
# If non-empty doxygen will try to run qhelpgenerator on the generated
Packit cb6d3d
# .qhp file.
Packit cb6d3d
Packit cb6d3d
QHG_LOCATION           =
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files
Packit cb6d3d
#  will be generated, which together with the HTML files, form an Eclipse help
Packit cb6d3d
# plugin. To install this plugin and make it available under the help contents
Packit cb6d3d
# menu in Eclipse, the contents of the directory containing the HTML and XML
Packit cb6d3d
# files needs to be copied into the plugins directory of eclipse. The name of
Packit cb6d3d
# the directory within the plugins directory should be the same as
Packit cb6d3d
# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before
Packit cb6d3d
# the help appears.
Packit cb6d3d
Packit cb6d3d
GENERATE_ECLIPSEHELP   = NO
Packit cb6d3d
Packit cb6d3d
# A unique identifier for the eclipse help plugin. When installing the plugin
Packit cb6d3d
# the directory name containing the HTML and XML files should also have
Packit cb6d3d
# this name.
Packit cb6d3d
Packit cb6d3d
ECLIPSE_DOC_ID         = org.doxygen.Project
Packit cb6d3d
Packit cb6d3d
# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
Packit cb6d3d
# top of each HTML page. The value NO (the default) enables the index and
Packit cb6d3d
# the value YES disables it.
Packit cb6d3d
Packit cb6d3d
DISABLE_INDEX          = NO
Packit cb6d3d
Packit cb6d3d
# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values
Packit cb6d3d
# (range [0,1..20]) that doxygen will group on one line in the generated HTML
Packit cb6d3d
# documentation. Note that a value of 0 will completely suppress the enum
Packit cb6d3d
# values from appearing in the overview section.
Packit cb6d3d
Packit cb6d3d
ENUM_VALUES_PER_LINE   = 4
Packit cb6d3d
Packit cb6d3d
# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
Packit cb6d3d
# structure should be generated to display hierarchical information.
Packit cb6d3d
# If the tag value is set to YES, a side panel will be generated
Packit cb6d3d
# containing a tree-like index structure (just like the one that
Packit cb6d3d
# is generated for HTML Help). For this to work a browser that supports
Packit cb6d3d
# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser).
Packit cb6d3d
# Windows users are probably better off using the HTML help feature.
Packit cb6d3d
Packit cb6d3d
GENERATE_TREEVIEW      = NO
Packit cb6d3d
Packit cb6d3d
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
Packit cb6d3d
# and Class Hierarchy pages using a tree view instead of an ordered list.
Packit cb6d3d
Packit cb6d3d
USE_INLINE_TREES       = NO
Packit cb6d3d
Packit cb6d3d
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
Packit cb6d3d
# used to set the initial width (in pixels) of the frame in which the tree
Packit cb6d3d
# is shown.
Packit cb6d3d
Packit cb6d3d
TREEVIEW_WIDTH         = 250
Packit cb6d3d
Packit cb6d3d
# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open
Packit cb6d3d
# links to external symbols imported via tag files in a separate window.
Packit cb6d3d
Packit cb6d3d
EXT_LINKS_IN_WINDOW    = NO
Packit cb6d3d
Packit cb6d3d
# Use this tag to change the font size of Latex formulas included
Packit cb6d3d
# as images in the HTML documentation. The default is 10. Note that
Packit cb6d3d
# when you change the font size after a successful doxygen run you need
Packit cb6d3d
# to manually remove any form_*.png images from the HTML output directory
Packit cb6d3d
# to force them to be regenerated.
Packit cb6d3d
Packit cb6d3d
FORMULA_FONTSIZE       = 10
Packit cb6d3d
Packit cb6d3d
# Use the FORMULA_TRANPARENT tag to determine whether or not the images
Packit cb6d3d
# generated for formulas are transparent PNGs. Transparent PNGs are
Packit cb6d3d
# not supported properly for IE 6.0, but are supported on all modern browsers.
Packit cb6d3d
# Note that when changing this option you need to delete any form_*.png files
Packit cb6d3d
# in the HTML output before the changes have effect.
Packit cb6d3d
Packit cb6d3d
FORMULA_TRANSPARENT    = YES
Packit cb6d3d
Packit cb6d3d
# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax
Packit cb6d3d
# (see http://www.mathjax.org) which uses client side Javascript for the
Packit cb6d3d
# rendering instead of using prerendered bitmaps. Use this if you do not
Packit cb6d3d
# have LaTeX installed or if you want to formulas look prettier in the HTML
Packit cb6d3d
# output. When enabled you also need to install MathJax separately and
Packit cb6d3d
# configure the path to it using the MATHJAX_RELPATH option.
Packit cb6d3d
Packit cb6d3d
USE_MATHJAX            = NO
Packit cb6d3d
Packit cb6d3d
# When MathJax is enabled you need to specify the location relative to the
Packit cb6d3d
# HTML output directory using the MATHJAX_RELPATH option. The destination
Packit cb6d3d
# directory should contain the MathJax.js script. For instance, if the mathjax
Packit cb6d3d
# directory is located at the same level as the HTML output directory, then
Packit cb6d3d
# MATHJAX_RELPATH should be ../mathjax. The default value points to the
Packit cb6d3d
# mathjax.org site, so you can quickly see the result without installing
Packit cb6d3d
# MathJax, but it is strongly recommended to install a local copy of MathJax
Packit cb6d3d
# before deployment.
Packit cb6d3d
Packit cb6d3d
MATHJAX_RELPATH        = http://www.mathjax.org/mathjax
Packit cb6d3d
Packit cb6d3d
# When the SEARCHENGINE tag is enabled doxygen will generate a search box
Packit cb6d3d
# for the HTML output. The underlying search engine uses javascript
Packit cb6d3d
# and DHTML and should work on any modern browser. Note that when using
Packit cb6d3d
# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets
Packit cb6d3d
# (GENERATE_DOCSET) there is already a search function so this one should
Packit cb6d3d
# typically be disabled. For large projects the javascript based search engine
Packit cb6d3d
# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.
Packit cb6d3d
Packit cb6d3d
SEARCHENGINE           = NO
Packit cb6d3d
Packit cb6d3d
# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
Packit cb6d3d
# implemented using a PHP enabled web server instead of at the web client
Packit cb6d3d
# using Javascript. Doxygen will generate the search PHP script and index
Packit cb6d3d
# file to put on the web server. The advantage of the server
Packit cb6d3d
# based approach is that it scales better to large projects and allows
Packit cb6d3d
# full text search. The disadvantages are that it is more difficult to setup
Packit cb6d3d
# and does not have live searching capabilities.
Packit cb6d3d
Packit cb6d3d
SERVER_BASED_SEARCH    = NO
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# configuration options related to the LaTeX output
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
Packit cb6d3d
# generate Latex output.
Packit cb6d3d
Packit cb6d3d
GENERATE_LATEX         = YES
Packit cb6d3d
Packit cb6d3d
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
Packit cb6d3d
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
Packit cb6d3d
# put in front of it. If left blank `latex' will be used as the default path.
Packit cb6d3d
Packit cb6d3d
LATEX_OUTPUT           = latex
Packit cb6d3d
Packit cb6d3d
# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
Packit cb6d3d
# invoked. If left blank `latex' will be used as the default command name.
Packit cb6d3d
# Note that when enabling USE_PDFLATEX this option is only used for
Packit cb6d3d
# generating bitmaps for formulas in the HTML output, but not in the
Packit cb6d3d
# Makefile that is written to the output directory.
Packit cb6d3d
Packit cb6d3d
LATEX_CMD_NAME         = latex
Packit cb6d3d
Packit cb6d3d
# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
Packit cb6d3d
# generate index for LaTeX. If left blank `makeindex' will be used as the
Packit cb6d3d
# default command name.
Packit cb6d3d
Packit cb6d3d
MAKEINDEX_CMD_NAME     = makeindex
Packit cb6d3d
Packit cb6d3d
# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
Packit cb6d3d
# LaTeX documents. This may be useful for small projects and may help to
Packit cb6d3d
# save some trees in general.
Packit cb6d3d
Packit cb6d3d
COMPACT_LATEX          = NO
Packit cb6d3d
Packit cb6d3d
# The PAPER_TYPE tag can be used to set the paper type that is used
Packit cb6d3d
# by the printer. Possible values are: a4, letter, legal and
Packit cb6d3d
# executive. If left blank a4wide will be used.
Packit cb6d3d
Packit cb6d3d
PAPER_TYPE             = letter
Packit cb6d3d
Packit cb6d3d
# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
Packit cb6d3d
# packages that should be included in the LaTeX output.
Packit cb6d3d
Packit cb6d3d
EXTRA_PACKAGES         =
Packit cb6d3d
Packit cb6d3d
# The LATEX_HEADER tag can be used to specify a personal LaTeX header for
Packit cb6d3d
# the generated latex document. The header should contain everything until
Packit cb6d3d
# the first chapter. If it is left blank doxygen will generate a
Packit cb6d3d
# standard header. Notice: only use this tag if you know what you are doing!
Packit cb6d3d
Packit cb6d3d
LATEX_HEADER           =
Packit cb6d3d
Packit cb6d3d
# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for
Packit cb6d3d
# the generated latex document. The footer should contain everything after
Packit cb6d3d
# the last chapter. If it is left blank doxygen will generate a
Packit cb6d3d
# standard footer. Notice: only use this tag if you know what you are doing!
Packit cb6d3d
Packit cb6d3d
LATEX_FOOTER           =
Packit cb6d3d
Packit cb6d3d
# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
Packit cb6d3d
# is prepared for conversion to pdf (using ps2pdf). The pdf file will
Packit cb6d3d
# contain links (just like the HTML output) instead of page references
Packit cb6d3d
# This makes the output suitable for online browsing using a pdf viewer.
Packit cb6d3d
Packit cb6d3d
PDF_HYPERLINKS         = NO
Packit cb6d3d
Packit cb6d3d
# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
Packit cb6d3d
# plain latex in the generated Makefile. Set this option to YES to get a
Packit cb6d3d
# higher quality PDF documentation.
Packit cb6d3d
Packit cb6d3d
USE_PDFLATEX           = NO
Packit cb6d3d
Packit cb6d3d
# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
Packit cb6d3d
# command to the generated LaTeX files. This will instruct LaTeX to keep
Packit cb6d3d
# running if errors occur, instead of asking the user for help.
Packit cb6d3d
# This option is also used when generating formulas in HTML.
Packit cb6d3d
Packit cb6d3d
LATEX_BATCHMODE        = NO
Packit cb6d3d
Packit cb6d3d
# If LATEX_HIDE_INDICES is set to YES then doxygen will not
Packit cb6d3d
# include the index chapters (such as File Index, Compound Index, etc.)
Packit cb6d3d
# in the output.
Packit cb6d3d
Packit cb6d3d
LATEX_HIDE_INDICES     = NO
Packit cb6d3d
Packit cb6d3d
# If LATEX_SOURCE_CODE is set to YES then doxygen will include
Packit cb6d3d
# source code with syntax highlighting in the LaTeX output.
Packit cb6d3d
# Note that which sources are shown also depends on other settings
Packit cb6d3d
# such as SOURCE_BROWSER.
Packit cb6d3d
Packit cb6d3d
LATEX_SOURCE_CODE      = NO
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# configuration options related to the RTF output
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
Packit cb6d3d
# The RTF output is optimized for Word 97 and may not look very pretty with
Packit cb6d3d
# other RTF readers or editors.
Packit cb6d3d
Packit cb6d3d
GENERATE_RTF           = NO
Packit cb6d3d
Packit cb6d3d
# The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
Packit cb6d3d
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
Packit cb6d3d
# put in front of it. If left blank `rtf' will be used as the default path.
Packit cb6d3d
Packit cb6d3d
RTF_OUTPUT             = rtf
Packit cb6d3d
Packit cb6d3d
# If the COMPACT_RTF tag is set to YES Doxygen generates more compact
Packit cb6d3d
# RTF documents. This may be useful for small projects and may help to
Packit cb6d3d
# save some trees in general.
Packit cb6d3d
Packit cb6d3d
COMPACT_RTF            = NO
Packit cb6d3d
Packit cb6d3d
# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
Packit cb6d3d
# will contain hyperlink fields. The RTF file will
Packit cb6d3d
# contain links (just like the HTML output) instead of page references.
Packit cb6d3d
# This makes the output suitable for online browsing using WORD or other
Packit cb6d3d
# programs which support those fields.
Packit cb6d3d
# Note: wordpad (write) and others do not support links.
Packit cb6d3d
Packit cb6d3d
RTF_HYPERLINKS         = NO
Packit cb6d3d
Packit cb6d3d
# Load stylesheet definitions from file. Syntax is similar to doxygen's
Packit cb6d3d
# config file, i.e. a series of assignments. You only have to provide
Packit cb6d3d
# replacements, missing definitions are set to their default value.
Packit cb6d3d
Packit cb6d3d
RTF_STYLESHEET_FILE    =
Packit cb6d3d
Packit cb6d3d
# Set optional variables used in the generation of an rtf document.
Packit cb6d3d
# Syntax is similar to doxygen's config file.
Packit cb6d3d
Packit cb6d3d
RTF_EXTENSIONS_FILE    =
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# configuration options related to the man page output
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_MAN tag is set to YES (the default) Doxygen will
Packit cb6d3d
# generate man pages
Packit cb6d3d
Packit cb6d3d
GENERATE_MAN           = NO
Packit cb6d3d
Packit cb6d3d
# The MAN_OUTPUT tag is used to specify where the man pages will be put.
Packit cb6d3d
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
Packit cb6d3d
# put in front of it. If left blank `man' will be used as the default path.
Packit cb6d3d
Packit cb6d3d
MAN_OUTPUT             = man
Packit cb6d3d
Packit cb6d3d
# The MAN_EXTENSION tag determines the extension that is added to
Packit cb6d3d
# the generated man pages (default is the subroutine's section .3)
Packit cb6d3d
Packit cb6d3d
MAN_EXTENSION          = .3
Packit cb6d3d
Packit cb6d3d
# If the MAN_LINKS tag is set to YES and Doxygen generates man output,
Packit cb6d3d
# then it will generate one additional man file for each entity
Packit cb6d3d
# documented in the real man page(s). These additional files
Packit cb6d3d
# only source the real man page, but without them the man command
Packit cb6d3d
# would be unable to find the correct page. The default is NO.
Packit cb6d3d
Packit cb6d3d
MAN_LINKS              = NO
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# configuration options related to the XML output
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_XML tag is set to YES Doxygen will
Packit cb6d3d
# generate an XML file that captures the structure of
Packit cb6d3d
# the code including all documentation.
Packit cb6d3d
Packit cb6d3d
GENERATE_XML           = NO
Packit cb6d3d
Packit cb6d3d
# The XML_OUTPUT tag is used to specify where the XML pages will be put.
Packit cb6d3d
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
Packit cb6d3d
# put in front of it. If left blank `xml' will be used as the default path.
Packit cb6d3d
Packit cb6d3d
XML_OUTPUT             = xml
Packit cb6d3d
Packit cb6d3d
# The XML_SCHEMA tag can be used to specify an XML schema,
Packit cb6d3d
# which can be used by a validating XML parser to check the
Packit cb6d3d
# syntax of the XML files.
Packit cb6d3d
Packit cb6d3d
XML_SCHEMA             =
Packit cb6d3d
Packit cb6d3d
# The XML_DTD tag can be used to specify an XML DTD,
Packit cb6d3d
# which can be used by a validating XML parser to check the
Packit cb6d3d
# syntax of the XML files.
Packit cb6d3d
Packit cb6d3d
XML_DTD                =
Packit cb6d3d
Packit cb6d3d
# If the XML_PROGRAMLISTING tag is set to YES Doxygen will
Packit cb6d3d
# dump the program listings (including syntax highlighting
Packit cb6d3d
# and cross-referencing information) to the XML output. Note that
Packit cb6d3d
# enabling this will significantly increase the size of the XML output.
Packit cb6d3d
Packit cb6d3d
XML_PROGRAMLISTING     = YES
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# configuration options for the AutoGen Definitions output
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
Packit cb6d3d
# generate an AutoGen Definitions (see autogen.sf.net) file
Packit cb6d3d
# that captures the structure of the code including all
Packit cb6d3d
# documentation. Note that this feature is still experimental
Packit cb6d3d
# and incomplete at the moment.
Packit cb6d3d
Packit cb6d3d
GENERATE_AUTOGEN_DEF   = NO
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# configuration options related to the Perl module output
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_PERLMOD tag is set to YES Doxygen will
Packit cb6d3d
# generate a Perl module file that captures the structure of
Packit cb6d3d
# the code including all documentation. Note that this
Packit cb6d3d
# feature is still experimental and incomplete at the
Packit cb6d3d
# moment.
Packit cb6d3d
Packit cb6d3d
GENERATE_PERLMOD       = NO
Packit cb6d3d
Packit cb6d3d
# If the PERLMOD_LATEX tag is set to YES Doxygen will generate
Packit cb6d3d
# the necessary Makefile rules, Perl scripts and LaTeX code to be able
Packit cb6d3d
# to generate PDF and DVI output from the Perl module output.
Packit cb6d3d
Packit cb6d3d
PERLMOD_LATEX          = NO
Packit cb6d3d
Packit cb6d3d
# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
Packit cb6d3d
# nicely formatted so it can be parsed by a human reader.
Packit cb6d3d
# This is useful
Packit cb6d3d
# if you want to understand what is going on.
Packit cb6d3d
# On the other hand, if this
Packit cb6d3d
# tag is set to NO the size of the Perl module output will be much smaller
Packit cb6d3d
# and Perl will parse it just the same.
Packit cb6d3d
Packit cb6d3d
PERLMOD_PRETTY         = YES
Packit cb6d3d
Packit cb6d3d
# The names of the make variables in the generated doxyrules.make file
Packit cb6d3d
# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
Packit cb6d3d
# This is useful so different doxyrules.make files included by the same
Packit cb6d3d
# Makefile don't overwrite each other's variables.
Packit cb6d3d
Packit cb6d3d
PERLMOD_MAKEVAR_PREFIX =
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# Configuration options related to the preprocessor
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
Packit cb6d3d
# evaluate all C-preprocessor directives found in the sources and include
Packit cb6d3d
# files.
Packit cb6d3d
Packit cb6d3d
ENABLE_PREPROCESSING   = YES
Packit cb6d3d
Packit cb6d3d
# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
Packit cb6d3d
# names in the source code. If set to NO (the default) only conditional
Packit cb6d3d
# compilation will be performed. Macro expansion can be done in a controlled
Packit cb6d3d
# way by setting EXPAND_ONLY_PREDEF to YES.
Packit cb6d3d
Packit cb6d3d
MACRO_EXPANSION        = NO
Packit cb6d3d
Packit cb6d3d
# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
Packit cb6d3d
# then the macro expansion is limited to the macros specified with the
Packit cb6d3d
# PREDEFINED and EXPAND_AS_DEFINED tags.
Packit cb6d3d
Packit cb6d3d
EXPAND_ONLY_PREDEF     = NO
Packit cb6d3d
Packit cb6d3d
# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
Packit cb6d3d
# pointed to by INCLUDE_PATH will be searched when a #include is found.
Packit cb6d3d
Packit cb6d3d
SEARCH_INCLUDES        = YES
Packit cb6d3d
Packit cb6d3d
# The INCLUDE_PATH tag can be used to specify one or more directories that
Packit cb6d3d
# contain include files that are not input files but should be processed by
Packit cb6d3d
# the preprocessor.
Packit cb6d3d
Packit cb6d3d
INCLUDE_PATH           =
Packit cb6d3d
Packit cb6d3d
# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
Packit cb6d3d
# patterns (like *.h and *.hpp) to filter out the header-files in the
Packit cb6d3d
# directories. If left blank, the patterns specified with FILE_PATTERNS will
Packit cb6d3d
# be used.
Packit cb6d3d
Packit cb6d3d
INCLUDE_FILE_PATTERNS  =
Packit cb6d3d
Packit cb6d3d
# The PREDEFINED tag can be used to specify one or more macro names that
Packit cb6d3d
# are defined before the preprocessor is started (similar to the -D option of
Packit cb6d3d
# gcc). The argument of the tag is a list of macros of the form: name
Packit cb6d3d
# or name=definition (no spaces). If the definition and the = are
Packit cb6d3d
# omitted =1 is assumed. To prevent a macro definition from being
Packit cb6d3d
# undefined via #undef or recursively expanded use the := operator
Packit cb6d3d
# instead of the = operator.
Packit cb6d3d
Packit cb6d3d
PREDEFINED             =
Packit cb6d3d
Packit cb6d3d
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
Packit cb6d3d
# this tag can be used to specify a list of macro names that should be expanded.
Packit cb6d3d
# The macro definition that is found in the sources will be used.
Packit cb6d3d
# Use the PREDEFINED tag if you want to use a different macro definition that
Packit cb6d3d
# overrules the definition found in the source code.
Packit cb6d3d
Packit cb6d3d
EXPAND_AS_DEFINED      =
Packit cb6d3d
Packit cb6d3d
# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
Packit cb6d3d
# doxygen's preprocessor will remove all references to function-like macros
Packit cb6d3d
# that are alone on a line, have an all uppercase name, and do not end with a
Packit cb6d3d
# semicolon, because these will confuse the parser if not removed.
Packit cb6d3d
Packit cb6d3d
SKIP_FUNCTION_MACROS   = YES
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# Configuration::additions related to external references
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# The TAGFILES option can be used to specify one or more tagfiles.
Packit cb6d3d
# Optionally an initial location of the external documentation
Packit cb6d3d
# can be added for each tagfile. The format of a tag file without
Packit cb6d3d
# this location is as follows:
Packit cb6d3d
#
Packit cb6d3d
# TAGFILES = file1 file2 ...
Packit cb6d3d
# Adding location for the tag files is done as follows:
Packit cb6d3d
#
Packit cb6d3d
# TAGFILES = file1=loc1 "file2 = loc2" ...
Packit cb6d3d
# where "loc1" and "loc2" can be relative or absolute paths or
Packit cb6d3d
# URLs. If a location is present for each tag, the installdox tool
Packit cb6d3d
# does not have to be run to correct the links.
Packit cb6d3d
# Note that each tag file must have a unique name
Packit cb6d3d
# (where the name does NOT include the path)
Packit cb6d3d
# If a tag file is not located in the directory in which doxygen
Packit cb6d3d
# is run, you must also specify the path to the tagfile here.
Packit cb6d3d
Packit cb6d3d
TAGFILES               =
Packit cb6d3d
Packit cb6d3d
# When a file name is specified after GENERATE_TAGFILE, doxygen will create
Packit cb6d3d
# a tag file that is based on the input files it reads.
Packit cb6d3d
Packit cb6d3d
GENERATE_TAGFILE       = libcdio-paranoia.xml
Packit cb6d3d
Packit cb6d3d
# If the ALLEXTERNALS tag is set to YES all external classes will be listed
Packit cb6d3d
# in the class index. If set to NO only the inherited external classes
Packit cb6d3d
# will be listed.
Packit cb6d3d
Packit cb6d3d
ALLEXTERNALS           = NO
Packit cb6d3d
Packit cb6d3d
# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
Packit cb6d3d
# in the modules index. If set to NO, only the current project's groups will
Packit cb6d3d
# be listed.
Packit cb6d3d
Packit cb6d3d
EXTERNAL_GROUPS        = YES
Packit cb6d3d
Packit cb6d3d
# The PERL_PATH should be the absolute path and name of the perl script
Packit cb6d3d
# interpreter (i.e. the result of `which perl').
Packit cb6d3d
Packit cb6d3d
PERL_PATH              = /usr/bin/perl
Packit cb6d3d
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
# Configuration options related to the dot tool
Packit cb6d3d
#---------------------------------------------------------------------------
Packit cb6d3d
Packit cb6d3d
# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
Packit cb6d3d
# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
Packit cb6d3d
# or super classes. Setting the tag to NO turns the diagrams off. Note that
Packit cb6d3d
# this option also works with HAVE_DOT disabled, but it is recommended to
Packit cb6d3d
# install and use dot, since it yields more powerful graphs.
Packit cb6d3d
Packit cb6d3d
CLASS_DIAGRAMS         = YES
Packit cb6d3d
Packit cb6d3d
# You can define message sequence charts within doxygen comments using the \msc
Packit cb6d3d
# command. Doxygen will then run the mscgen tool (see
Packit cb6d3d
# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the
Packit cb6d3d
# documentation. The MSCGEN_PATH tag allows you to specify the directory where
Packit cb6d3d
# the mscgen tool resides. If left empty the tool is assumed to be found in the
Packit cb6d3d
# default search path.
Packit cb6d3d
Packit cb6d3d
MSCGEN_PATH            =
Packit cb6d3d
Packit cb6d3d
# If set to YES, the inheritance and collaboration graphs will hide
Packit cb6d3d
# inheritance and usage relations if the target is undocumented
Packit cb6d3d
# or is not a class.
Packit cb6d3d
Packit cb6d3d
HIDE_UNDOC_RELATIONS   = YES
Packit cb6d3d
Packit cb6d3d
# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
Packit cb6d3d
# available from the path. This tool is part of Graphviz, a graph visualization
Packit cb6d3d
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
Packit cb6d3d
# have no effect if this option is set to NO (the default)
Packit cb6d3d
Packit cb6d3d
HAVE_DOT               = NO
Packit cb6d3d
Packit cb6d3d
# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is
Packit cb6d3d
# allowed to run in parallel. When set to 0 (the default) doxygen will
Packit cb6d3d
# base this on the number of processors available in the system. You can set it
Packit cb6d3d
# explicitly to a value larger than 0 to get control over the balance
Packit cb6d3d
# between CPU load and processing speed.
Packit cb6d3d
Packit cb6d3d
DOT_NUM_THREADS        = 0
Packit cb6d3d
Packit cb6d3d
# By default doxygen will write a font called Helvetica to the output
Packit cb6d3d
# directory and reference it in all dot files that doxygen generates.
Packit cb6d3d
# When you want a differently looking font you can specify the font name
Packit cb6d3d
# using DOT_FONTNAME. You need to make sure dot is able to find the font,
Packit cb6d3d
# which can be done by putting it in a standard location or by setting the
Packit cb6d3d
# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory
Packit cb6d3d
# containing the font.
Packit cb6d3d
Packit cb6d3d
DOT_FONTNAME           = Helvetica
Packit cb6d3d
Packit cb6d3d
# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs.
Packit cb6d3d
# The default size is 10pt.
Packit cb6d3d
Packit cb6d3d
DOT_FONTSIZE           = 10
Packit cb6d3d
Packit cb6d3d
# By default doxygen will tell dot to use the output directory to look for the
Packit cb6d3d
# FreeSans.ttf font (which doxygen will put there itself). If you specify a
Packit cb6d3d
# different font using DOT_FONTNAME you can set the path where dot
Packit cb6d3d
# can find it using this tag.
Packit cb6d3d
Packit cb6d3d
DOT_FONTPATH           =
Packit cb6d3d
Packit cb6d3d
# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
Packit cb6d3d
# will generate a graph for each documented class showing the direct and
Packit cb6d3d
# indirect inheritance relations. Setting this tag to YES will force the
Packit cb6d3d
# the CLASS_DIAGRAMS tag to NO.
Packit cb6d3d
Packit cb6d3d
CLASS_GRAPH            = YES
Packit cb6d3d
Packit cb6d3d
# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
Packit cb6d3d
# will generate a graph for each documented class showing the direct and
Packit cb6d3d
# indirect implementation dependencies (inheritance, containment, and
Packit cb6d3d
# class references variables) of the class with other documented classes.
Packit cb6d3d
Packit cb6d3d
COLLABORATION_GRAPH    = YES
Packit cb6d3d
Packit cb6d3d
# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
Packit cb6d3d
# will generate a graph for groups, showing the direct groups dependencies
Packit cb6d3d
Packit cb6d3d
GROUP_GRAPHS           = YES
Packit cb6d3d
Packit cb6d3d
# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
Packit cb6d3d
# collaboration diagrams in a style similar to the OMG's Unified Modeling
Packit cb6d3d
# Language.
Packit cb6d3d
Packit cb6d3d
UML_LOOK               = NO
Packit cb6d3d
Packit cb6d3d
# If set to YES, the inheritance and collaboration graphs will show the
Packit cb6d3d
# relations between templates and their instances.
Packit cb6d3d
Packit cb6d3d
TEMPLATE_RELATIONS     = YES
Packit cb6d3d
Packit cb6d3d
# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
Packit cb6d3d
# tags are set to YES then doxygen will generate a graph for each documented
Packit cb6d3d
# file showing the direct and indirect include dependencies of the file with
Packit cb6d3d
# other documented files.
Packit cb6d3d
Packit cb6d3d
INCLUDE_GRAPH          = YES
Packit cb6d3d
Packit cb6d3d
# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
Packit cb6d3d
# HAVE_DOT tags are set to YES then doxygen will generate a graph for each
Packit cb6d3d
# documented header file showing the documented files that directly or
Packit cb6d3d
# indirectly include this file.
Packit cb6d3d
Packit cb6d3d
INCLUDED_BY_GRAPH      = YES
Packit cb6d3d
Packit cb6d3d
# If the CALL_GRAPH and HAVE_DOT options are set to YES then
Packit cb6d3d
# doxygen will generate a call dependency graph for every global function
Packit cb6d3d
# or class method. Note that enabling this option will significantly increase
Packit cb6d3d
# the time of a run. So in most cases it will be better to enable call graphs
Packit cb6d3d
# for selected functions only using the \callgraph command.
Packit cb6d3d
Packit cb6d3d
CALL_GRAPH             = NO
Packit cb6d3d
Packit cb6d3d
# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then
Packit cb6d3d
# doxygen will generate a caller dependency graph for every global function
Packit cb6d3d
# or class method. Note that enabling this option will significantly increase
Packit cb6d3d
# the time of a run. So in most cases it will be better to enable caller
Packit cb6d3d
# graphs for selected functions only using the \callergraph command.
Packit cb6d3d
Packit cb6d3d
CALLER_GRAPH           = NO
Packit cb6d3d
Packit cb6d3d
# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
Packit cb6d3d
# will generate a graphical hierarchy of all classes instead of a textual one.
Packit cb6d3d
Packit cb6d3d
GRAPHICAL_HIERARCHY    = YES
Packit cb6d3d
Packit cb6d3d
# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
Packit cb6d3d
# then doxygen will show the dependencies a directory has on other directories
Packit cb6d3d
# in a graphical way. The dependency relations are determined by the #include
Packit cb6d3d
# relations between the files in the directories.
Packit cb6d3d
Packit cb6d3d
DIRECTORY_GRAPH        = YES
Packit cb6d3d
Packit cb6d3d
# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
Packit cb6d3d
# generated by dot. Possible values are svg, png, jpg, or gif.
Packit cb6d3d
# If left blank png will be used.
Packit cb6d3d
Packit cb6d3d
DOT_IMAGE_FORMAT       = png
Packit cb6d3d
Packit cb6d3d
# The tag DOT_PATH can be used to specify the path where the dot tool can be
Packit cb6d3d
# found. If left blank, it is assumed the dot tool can be found in the path.
Packit cb6d3d
Packit cb6d3d
DOT_PATH               =
Packit cb6d3d
Packit cb6d3d
# The DOTFILE_DIRS tag can be used to specify one or more directories that
Packit cb6d3d
# contain dot files that are included in the documentation (see the
Packit cb6d3d
# \dotfile command).
Packit cb6d3d
Packit cb6d3d
DOTFILE_DIRS           =
Packit cb6d3d
Packit cb6d3d
# The MSCFILE_DIRS tag can be used to specify one or more directories that
Packit cb6d3d
# contain msc files that are included in the documentation (see the
Packit cb6d3d
# \mscfile command).
Packit cb6d3d
Packit cb6d3d
MSCFILE_DIRS           =
Packit cb6d3d
Packit cb6d3d
# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
Packit cb6d3d
# nodes that will be shown in the graph. If the number of nodes in a graph
Packit cb6d3d
# becomes larger than this value, doxygen will truncate the graph, which is
Packit cb6d3d
# visualized by representing a node as a red box. Note that doxygen if the
Packit cb6d3d
# number of direct children of the root node in a graph is already larger than
Packit cb6d3d
# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
Packit cb6d3d
# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
Packit cb6d3d
Packit cb6d3d
DOT_GRAPH_MAX_NODES    = 50
Packit cb6d3d
Packit cb6d3d
# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
Packit cb6d3d
# graphs generated by dot. A depth value of 3 means that only nodes reachable
Packit cb6d3d
# from the root by following a path via at most 3 edges will be shown. Nodes
Packit cb6d3d
# that lay further from the root node will be omitted. Note that setting this
Packit cb6d3d
# option to 1 or 2 may greatly reduce the computation time needed for large
Packit cb6d3d
# code bases. Also note that the size of a graph can be further restricted by
Packit cb6d3d
# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
Packit cb6d3d
Packit cb6d3d
MAX_DOT_GRAPH_DEPTH    = 0
Packit cb6d3d
Packit cb6d3d
# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
Packit cb6d3d
# background. This is disabled by default, because dot on Windows does not
Packit cb6d3d
# seem to support this out of the box. Warning: Depending on the platform used,
Packit cb6d3d
# enabling this option may lead to badly anti-aliased labels on the edges of
Packit cb6d3d
# a graph (i.e. they become hard to read).
Packit cb6d3d
Packit cb6d3d
DOT_TRANSPARENT        = NO
Packit cb6d3d
Packit cb6d3d
# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
Packit cb6d3d
# files in one run (i.e. multiple -o and -T options on the command line). This
Packit cb6d3d
# makes dot run faster, but since only newer versions of dot (>1.8.10)
Packit cb6d3d
# support this, this feature is disabled by default.
Packit cb6d3d
Packit cb6d3d
DOT_MULTI_TARGETS      = NO
Packit cb6d3d
Packit cb6d3d
# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
Packit cb6d3d
# generate a legend page explaining the meaning of the various boxes and
Packit cb6d3d
# arrows in the dot generated graphs.
Packit cb6d3d
Packit cb6d3d
GENERATE_LEGEND        = YES
Packit cb6d3d
Packit cb6d3d
# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
Packit cb6d3d
# remove the intermediate dot files that are used to generate
Packit cb6d3d
# the various graphs.
Packit cb6d3d
Packit cb6d3d
DOT_CLEANUP            = YES