Blame doc/xcb.doxygen.in

Packit 071ada
# Doxyfile 1.5.0
Packit 071ada
Packit 071ada
# This file describes the settings to be used by the documentation system
Packit 071ada
# doxygen (www.doxygen.org) for a project
Packit 071ada
#
Packit 071ada
# All text after a hash (#) is considered a comment and will be ignored
Packit 071ada
# The format is:
Packit 071ada
#       TAG = value [value, ...]
Packit 071ada
# For lists items can also be appended using:
Packit 071ada
#       TAG += value [value, ...]
Packit 071ada
# Values that contain spaces should be placed between quotes (" ")
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# Project related configuration options
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
Packit 071ada
# by quotes) that should identify the project.
Packit 071ada
Packit 071ada
PROJECT_NAME           = "XCB"
Packit 071ada
Packit 071ada
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
Packit 071ada
# This could be handy for archiving the generated documentation or
Packit 071ada
# if some version control system is used.
Packit 071ada
Packit 071ada
PROJECT_NUMBER         = @VERSION@
Packit 071ada
Packit 071ada
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
Packit 071ada
# base path where the generated documentation will be put.
Packit 071ada
# If a relative path is entered, it will be relative to the location
Packit 071ada
# where doxygen was started. If left blank the current directory will be used.
Packit 071ada
Packit 071ada
OUTPUT_DIRECTORY       = @top_builddir@/doc
Packit 071ada
Packit 071ada
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
Packit 071ada
# 4096 sub-directories (in 2 levels) under the output directory of each output
Packit 071ada
# format and will distribute the generated files over these directories.
Packit 071ada
# Enabling this option can be useful when feeding doxygen a huge amount of
Packit 071ada
# source files, where putting all generated files in the same directory would
Packit 071ada
# otherwise cause performance problems for the file system.
Packit 071ada
Packit 071ada
CREATE_SUBDIRS         = NO
Packit 071ada
Packit 071ada
# The OUTPUT_LANGUAGE tag is used to specify the language in which all
Packit 071ada
# documentation generated by doxygen is written. Doxygen will use this
Packit 071ada
# information to generate all constant output in the proper language.
Packit 071ada
# The default language is English, other supported languages are:
Packit 071ada
# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
Packit 071ada
# Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian,
Packit 071ada
# Italian, Japanese, Japanese-en (Japanese with English messages), Korean,
Packit 071ada
# Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian,
Packit 071ada
# Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.
Packit 071ada
Packit 071ada
OUTPUT_LANGUAGE        = English
Packit 071ada
Packit 071ada
# This tag can be used to specify the encoding used in the generated output.
Packit 071ada
# The encoding is not always determined by the language that is chosen,
Packit 071ada
# but also whether or not the output is meant for Windows or non-Windows users.
Packit 071ada
# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
Packit 071ada
# forces the Windows encoding (this is the default for the Windows binary),
Packit 071ada
# whereas setting the tag to NO uses a Unix-style encoding (the default for
Packit 071ada
# all platforms other than Windows).
Packit 071ada
Packit 071ada
USE_WINDOWS_ENCODING   = NO
Packit 071ada
Packit 071ada
# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
Packit 071ada
# include brief member descriptions after the members that are listed in
Packit 071ada
# the file and class documentation (similar to JavaDoc).
Packit 071ada
# Set to NO to disable this.
Packit 071ada
Packit 071ada
BRIEF_MEMBER_DESC      = YES
Packit 071ada
Packit 071ada
# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
Packit 071ada
# the brief description of a member or function before the detailed description.
Packit 071ada
# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
Packit 071ada
# brief descriptions will be completely suppressed.
Packit 071ada
Packit 071ada
REPEAT_BRIEF           = YES
Packit 071ada
Packit 071ada
# This tag implements a quasi-intelligent brief description abbreviator
Packit 071ada
# that is used to form the text in various listings. Each string
Packit 071ada
# in this list, if found as the leading text of the brief description, will be
Packit 071ada
# stripped from the text and the result after processing the whole list, is
Packit 071ada
# used as the annotated text. Otherwise, the brief description is used as-is.
Packit 071ada
# If left blank, the following values are used ("$name" is automatically
Packit 071ada
# replaced with the name of the entity): "The $name class" "The $name widget"
Packit 071ada
# "The $name file" "is" "provides" "specifies" "contains"
Packit 071ada
# "represents" "a" "an" "the"
Packit 071ada
Packit 071ada
ABBREVIATE_BRIEF       =
Packit 071ada
Packit 071ada
# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
Packit 071ada
# Doxygen will generate a detailed section even if there is only a brief
Packit 071ada
# description.
Packit 071ada
Packit 071ada
ALWAYS_DETAILED_SEC    = NO
Packit 071ada
Packit 071ada
# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
Packit 071ada
# inherited members of a class in the documentation of that class as if those
Packit 071ada
# members were ordinary class members. Constructors, destructors and assignment
Packit 071ada
# operators of the base classes will not be shown.
Packit 071ada
Packit 071ada
INLINE_INHERITED_MEMB  = NO
Packit 071ada
Packit 071ada
# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
Packit 071ada
# path before files name in the file list and in the header files. If set
Packit 071ada
# to NO the shortest path that makes the file name unique will be used.
Packit 071ada
Packit 071ada
FULL_PATH_NAMES        = NO
Packit 071ada
Packit 071ada
# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
Packit 071ada
# can be used to strip a user-defined part of the path. Stripping is
Packit 071ada
# only done if one of the specified strings matches the left-hand part of
Packit 071ada
# the path. The tag can be used to show relative paths in the file list.
Packit 071ada
# If left blank the directory from which doxygen is run is used as the
Packit 071ada
# path to strip.
Packit 071ada
Packit 071ada
STRIP_FROM_PATH        =
Packit 071ada
Packit 071ada
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
Packit 071ada
# the path mentioned in the documentation of a class, which tells
Packit 071ada
# the reader which header file to include in order to use a class.
Packit 071ada
# If left blank only the name of the header file containing the class
Packit 071ada
# definition is used. Otherwise one should specify the include paths that
Packit 071ada
# are normally passed to the compiler using the -I flag.
Packit 071ada
Packit 071ada
STRIP_FROM_INC_PATH    =
Packit 071ada
Packit 071ada
# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
Packit 071ada
# (but less readable) file names. This can be useful is your file systems
Packit 071ada
# doesn't support long names like on DOS, Mac, or CD-ROM.
Packit 071ada
Packit 071ada
SHORT_NAMES            = NO
Packit 071ada
Packit 071ada
# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
Packit 071ada
# will interpret the first line (until the first dot) of a JavaDoc-style
Packit 071ada
# comment as the brief description. If set to NO, the JavaDoc
Packit 071ada
# comments will behave just like the Qt-style comments (thus requiring an
Packit 071ada
# explicit @brief command for a brief description.
Packit 071ada
Packit 071ada
JAVADOC_AUTOBRIEF      = NO
Packit 071ada
Packit 071ada
# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
Packit 071ada
# treat a multi-line C++ special comment block (i.e. a block of //! or ///
Packit 071ada
# comments) as a brief description. This used to be the default behaviour.
Packit 071ada
# The new default is to treat a multi-line C++ comment block as a detailed
Packit 071ada
# description. Set this tag to YES if you prefer the old behaviour instead.
Packit 071ada
Packit 071ada
MULTILINE_CPP_IS_BRIEF = NO
Packit 071ada
Packit 071ada
# If the DETAILS_AT_TOP tag is set to YES then Doxygen
Packit 071ada
# will output the detailed description near the top, like JavaDoc.
Packit 071ada
# If set to NO, the detailed description appears after the member
Packit 071ada
# documentation.
Packit 071ada
Packit 071ada
DETAILS_AT_TOP         = NO
Packit 071ada
Packit 071ada
# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
Packit 071ada
# member inherits the documentation from any documented member that it
Packit 071ada
# re-implements.
Packit 071ada
Packit 071ada
INHERIT_DOCS           = YES
Packit 071ada
Packit 071ada
# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
Packit 071ada
# a new page for each member. If set to NO, the documentation of a member will
Packit 071ada
# be part of the file/class/namespace that contains it.
Packit 071ada
Packit 071ada
SEPARATE_MEMBER_PAGES  = NO
Packit 071ada
Packit 071ada
# The TAB_SIZE tag can be used to set the number of spaces in a tab.
Packit 071ada
# Doxygen uses this value to replace tabs by spaces in code fragments.
Packit 071ada
Packit 071ada
TAB_SIZE               = 8
Packit 071ada
Packit 071ada
# This tag can be used to specify a number of aliases that acts
Packit 071ada
# as commands in the documentation. An alias has the form "name=value".
Packit 071ada
# For example adding "sideeffect=\par Side Effects:\n" will allow you to
Packit 071ada
# put the command \sideeffect (or @sideeffect) in the documentation, which
Packit 071ada
# will result in a user-defined paragraph with heading "Side Effects:".
Packit 071ada
# You can put \n's in the value part of an alias to insert newlines.
Packit 071ada
Packit 071ada
ALIASES                =
Packit 071ada
Packit 071ada
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
Packit 071ada
# sources only. Doxygen will then generate output that is more tailored for C.
Packit 071ada
# For instance, some of the names that are used will be different. The list
Packit 071ada
# of all members will be omitted, etc.
Packit 071ada
Packit 071ada
OPTIMIZE_OUTPUT_FOR_C  = YES
Packit 071ada
Packit 071ada
# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
Packit 071ada
# sources only. Doxygen will then generate output that is more tailored for Java.
Packit 071ada
# For instance, namespaces will be presented as packages, qualified scopes
Packit 071ada
# will look different, etc.
Packit 071ada
Packit 071ada
OPTIMIZE_OUTPUT_JAVA   = NO
Packit 071ada
Packit 071ada
# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to
Packit 071ada
# include (a tag file for) the STL sources as input, then you should
Packit 071ada
# set this tag to YES in order to let doxygen match functions declarations and
Packit 071ada
# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
Packit 071ada
# func(std::string) {}). This also make the inheritance and collaboration
Packit 071ada
# diagrams that involve STL classes more complete and accurate.
Packit 071ada
Packit 071ada
BUILTIN_STL_SUPPORT    = NO
Packit 071ada
Packit 071ada
# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
Packit 071ada
# tag is set to YES, then doxygen will reuse the documentation of the first
Packit 071ada
# member in the group (if any) for the other members of the group. By default
Packit 071ada
# all members of a group must be documented explicitly.
Packit 071ada
Packit 071ada
DISTRIBUTE_GROUP_DOC   = NO
Packit 071ada
Packit 071ada
# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
Packit 071ada
# the same type (for instance a group of public functions) to be put as a
Packit 071ada
# subgroup of that type (e.g. under the Public Functions section). Set it to
Packit 071ada
# NO to prevent subgrouping. Alternatively, this can be done per class using
Packit 071ada
# the \nosubgrouping command.
Packit 071ada
Packit 071ada
SUBGROUPING            = YES
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# Build related configuration options
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
Packit 071ada
# documentation are documented, even if no documentation was available.
Packit 071ada
# Private class members and static file members will be hidden unless
Packit 071ada
# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
Packit 071ada
Packit 071ada
EXTRACT_ALL            = NO
Packit 071ada
Packit 071ada
# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
Packit 071ada
# will be included in the documentation.
Packit 071ada
Packit 071ada
EXTRACT_PRIVATE        = NO
Packit 071ada
Packit 071ada
# If the EXTRACT_STATIC tag is set to YES all static members of a file
Packit 071ada
# will be included in the documentation.
Packit 071ada
Packit 071ada
EXTRACT_STATIC         = NO
Packit 071ada
Packit 071ada
# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
Packit 071ada
# defined locally in source files will be included in the documentation.
Packit 071ada
# If set to NO only classes defined in header files are included.
Packit 071ada
Packit 071ada
EXTRACT_LOCAL_CLASSES  = YES
Packit 071ada
Packit 071ada
# This flag is only useful for Objective-C code. When set to YES local
Packit 071ada
# methods, which are defined in the implementation section but not in
Packit 071ada
# the interface are included in the documentation.
Packit 071ada
# If set to NO (the default) only methods in the interface are included.
Packit 071ada
Packit 071ada
EXTRACT_LOCAL_METHODS  = NO
Packit 071ada
Packit 071ada
# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
Packit 071ada
# undocumented members of documented classes, files or namespaces.
Packit 071ada
# If set to NO (the default) these members will be included in the
Packit 071ada
# various overviews, but no documentation section is generated.
Packit 071ada
# This option has no effect if EXTRACT_ALL is enabled.
Packit 071ada
Packit 071ada
HIDE_UNDOC_MEMBERS     = NO
Packit 071ada
Packit 071ada
# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
Packit 071ada
# undocumented classes that are normally visible in the class hierarchy.
Packit 071ada
# If set to NO (the default) these classes will be included in the various
Packit 071ada
# overviews. This option has no effect if EXTRACT_ALL is enabled.
Packit 071ada
Packit 071ada
HIDE_UNDOC_CLASSES     = NO
Packit 071ada
Packit 071ada
# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
Packit 071ada
# friend (class|struct|union) declarations.
Packit 071ada
# If set to NO (the default) these declarations will be included in the
Packit 071ada
# documentation.
Packit 071ada
Packit 071ada
HIDE_FRIEND_COMPOUNDS  = NO
Packit 071ada
Packit 071ada
# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
Packit 071ada
# documentation blocks found inside the body of a function.
Packit 071ada
# If set to NO (the default) these blocks will be appended to the
Packit 071ada
# function's detailed documentation block.
Packit 071ada
Packit 071ada
HIDE_IN_BODY_DOCS      = NO
Packit 071ada
Packit 071ada
# The INTERNAL_DOCS tag determines if documentation
Packit 071ada
# that is typed after a \internal command is included. If the tag is set
Packit 071ada
# to NO (the default) then the documentation will be excluded.
Packit 071ada
# Set it to YES to include the internal documentation.
Packit 071ada
Packit 071ada
INTERNAL_DOCS          = NO
Packit 071ada
Packit 071ada
# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
Packit 071ada
# file names in lower-case letters. If set to YES upper-case letters are also
Packit 071ada
# allowed. This is useful if you have classes or files whose names only differ
Packit 071ada
# in case and if your file system supports case sensitive file names. Windows
Packit 071ada
# and Mac users are advised to set this option to NO.
Packit 071ada
Packit 071ada
CASE_SENSE_NAMES       = YES
Packit 071ada
Packit 071ada
# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
Packit 071ada
# will show members with their full class and namespace scopes in the
Packit 071ada
# documentation. If set to YES the scope will be hidden.
Packit 071ada
Packit 071ada
HIDE_SCOPE_NAMES       = NO
Packit 071ada
Packit 071ada
# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
Packit 071ada
# will put a list of the files that are included by a file in the documentation
Packit 071ada
# of that file.
Packit 071ada
Packit 071ada
SHOW_INCLUDE_FILES     = YES
Packit 071ada
Packit 071ada
# If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
Packit 071ada
# is inserted in the documentation for inline members.
Packit 071ada
Packit 071ada
INLINE_INFO            = YES
Packit 071ada
Packit 071ada
# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
Packit 071ada
# will sort the (detailed) documentation of file and class members
Packit 071ada
# alphabetically by member name. If set to NO the members will appear in
Packit 071ada
# declaration order.
Packit 071ada
Packit 071ada
SORT_MEMBER_DOCS       = YES
Packit 071ada
Packit 071ada
# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
Packit 071ada
# brief documentation of file, namespace and class members alphabetically
Packit 071ada
# by member name. If set to NO (the default) the members will appear in
Packit 071ada
# declaration order.
Packit 071ada
Packit 071ada
SORT_BRIEF_DOCS        = NO
Packit 071ada
Packit 071ada
# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
Packit 071ada
# sorted by fully-qualified names, including namespaces. If set to
Packit 071ada
# NO (the default), the class list will be sorted only by class name,
Packit 071ada
# not including the namespace part.
Packit 071ada
# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
Packit 071ada
# Note: This option applies only to the class list, not to the
Packit 071ada
# alphabetical list.
Packit 071ada
Packit 071ada
SORT_BY_SCOPE_NAME     = NO
Packit 071ada
Packit 071ada
# The GENERATE_TODOLIST tag can be used to enable (YES) or
Packit 071ada
# disable (NO) the todo list. This list is created by putting \todo
Packit 071ada
# commands in the documentation.
Packit 071ada
Packit 071ada
GENERATE_TODOLIST      = YES
Packit 071ada
Packit 071ada
# The GENERATE_TESTLIST tag can be used to enable (YES) or
Packit 071ada
# disable (NO) the test list. This list is created by putting \test
Packit 071ada
# commands in the documentation.
Packit 071ada
Packit 071ada
GENERATE_TESTLIST      = YES
Packit 071ada
Packit 071ada
# The GENERATE_BUGLIST tag can be used to enable (YES) or
Packit 071ada
# disable (NO) the bug list. This list is created by putting \bug
Packit 071ada
# commands in the documentation.
Packit 071ada
Packit 071ada
GENERATE_BUGLIST       = YES
Packit 071ada
Packit 071ada
# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
Packit 071ada
# disable (NO) the deprecated list. This list is created by putting
Packit 071ada
# \deprecated commands in the documentation.
Packit 071ada
Packit 071ada
GENERATE_DEPRECATEDLIST= YES
Packit 071ada
Packit 071ada
# The ENABLED_SECTIONS tag can be used to enable conditional
Packit 071ada
# documentation sections, marked by \if sectionname ... \endif.
Packit 071ada
Packit 071ada
ENABLED_SECTIONS       =
Packit 071ada
Packit 071ada
# The MAX_INITIALIZER_LINES tag determines the maximum number of lines
Packit 071ada
# the initial value of a variable or define consists of for it to appear in
Packit 071ada
# the documentation. If the initializer consists of more lines than specified
Packit 071ada
# here it will be hidden. Use a value of 0 to hide initializers completely.
Packit 071ada
# The appearance of the initializer of individual variables and defines in the
Packit 071ada
# documentation can be controlled using \showinitializer or \hideinitializer
Packit 071ada
# command in the documentation regardless of this setting.
Packit 071ada
Packit 071ada
MAX_INITIALIZER_LINES  = 30
Packit 071ada
Packit 071ada
# Set the SHOW_USED_FILES tag to NO to disable the list of files generated
Packit 071ada
# at the bottom of the documentation of classes and structs. If set to YES the
Packit 071ada
# list will mention the files that were used to generate the documentation.
Packit 071ada
Packit 071ada
SHOW_USED_FILES        = YES
Packit 071ada
Packit 071ada
# If the sources in your project are distributed over multiple directories
Packit 071ada
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
Packit 071ada
# in the documentation. The default is NO.
Packit 071ada
Packit 071ada
SHOW_DIRECTORIES       = NO
Packit 071ada
Packit 071ada
# The FILE_VERSION_FILTER tag can be used to specify a program or script that
Packit 071ada
# doxygen should invoke to get the current version for each file (typically from the
Packit 071ada
# version control system). Doxygen will invoke the program by executing (via
Packit 071ada
# popen()) the command <command> <input-file>, where <command> is the value of
Packit 071ada
# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
Packit 071ada
# provided by doxygen. Whatever the program writes to standard output
Packit 071ada
# is used as the file version. See the manual for examples.
Packit 071ada
Packit 071ada
FILE_VERSION_FILTER    =
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# configuration options related to warning and progress messages
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# The QUIET tag can be used to turn on/off the messages that are generated
Packit 071ada
# by doxygen. Possible values are YES and NO. If left blank NO is used.
Packit 071ada
Packit 071ada
QUIET                  = YES
Packit 071ada
Packit 071ada
# The WARNINGS tag can be used to turn on/off the warning messages that are
Packit 071ada
# generated by doxygen. Possible values are YES and NO. If left blank
Packit 071ada
# NO is used.
Packit 071ada
Packit 071ada
WARNINGS               = YES
Packit 071ada
Packit 071ada
# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
Packit 071ada
# for undocumented members. If EXTRACT_ALL is set to YES then this flag will
Packit 071ada
# automatically be disabled.
Packit 071ada
Packit 071ada
# XXX: In the future this should be turned on. For now it generates too much noise.
Packit 071ada
WARN_IF_UNDOCUMENTED   = NO
Packit 071ada
Packit 071ada
# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
Packit 071ada
# potential errors in the documentation, such as not documenting some
Packit 071ada
# parameters in a documented function, or documenting parameters that
Packit 071ada
# don't exist or using markup commands wrongly.
Packit 071ada
Packit 071ada
WARN_IF_DOC_ERROR      = YES
Packit 071ada
Packit 071ada
# This WARN_NO_PARAMDOC option can be abled to get warnings for
Packit 071ada
# functions that are documented, but have no documentation for their parameters
Packit 071ada
# or return value. If set to NO (the default) doxygen will only warn about
Packit 071ada
# wrong or incomplete parameter documentation, but not about the absence of
Packit 071ada
# documentation.
Packit 071ada
Packit 071ada
WARN_NO_PARAMDOC       = YES
Packit 071ada
Packit 071ada
# The WARN_FORMAT tag determines the format of the warning messages that
Packit 071ada
# doxygen can produce. The string should contain the $file, $line, and $text
Packit 071ada
# tags, which will be replaced by the file and line number from which the
Packit 071ada
# warning originated and the warning text. Optionally the format may contain
Packit 071ada
# $version, which will be replaced by the version of the file (if it could
Packit 071ada
# be obtained via FILE_VERSION_FILTER)
Packit 071ada
Packit 071ada
WARN_FORMAT            = "$file:$line: $text"
Packit 071ada
Packit 071ada
# The WARN_LOGFILE tag can be used to specify a file to which warning
Packit 071ada
# and error messages should be written. If left blank the output is written
Packit 071ada
# to stderr.
Packit 071ada
Packit 071ada
WARN_LOGFILE           =
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# configuration options related to the input files
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# The INPUT tag can be used to specify the files and/or directories that contain
Packit 071ada
# documented source files. You may enter file names like "myfile.cpp" or
Packit 071ada
# directories like "/usr/src/myproject". Separate the files or directories
Packit 071ada
# with spaces.
Packit 071ada
Packit 071ada
INPUT                  = @top_srcdir@/src @top_builddir@/src
Packit 071ada
Packit 071ada
# If the value of the INPUT tag contains directories, you can use the
Packit 071ada
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
Packit 071ada
# and *.h) to filter out the source-files in the directories. If left
Packit 071ada
# blank the following patterns are tested:
Packit 071ada
# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
Packit 071ada
# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py
Packit 071ada
Packit 071ada
FILE_PATTERNS          =
Packit 071ada
Packit 071ada
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
Packit 071ada
# should be searched for input files as well. Possible values are YES and NO.
Packit 071ada
# If left blank NO is used.
Packit 071ada
Packit 071ada
RECURSIVE              = NO
Packit 071ada
Packit 071ada
# The EXCLUDE tag can be used to specify files and/or directories that should
Packit 071ada
# excluded from the INPUT source files. This way you can easily exclude a
Packit 071ada
# subdirectory from a directory tree whose root is specified with the INPUT tag.
Packit 071ada
Packit 071ada
EXCLUDE                =
Packit 071ada
Packit 071ada
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
Packit 071ada
# directories that are symbolic links (a Unix filesystem feature) are excluded
Packit 071ada
# from the input.
Packit 071ada
Packit 071ada
EXCLUDE_SYMLINKS       = NO
Packit 071ada
Packit 071ada
# If the value of the INPUT tag contains directories, you can use the
Packit 071ada
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
Packit 071ada
# certain files from those directories. Note that the wildcards are matched
Packit 071ada
# against the file with absolute path, so to exclude all test directories
Packit 071ada
# for example use the pattern */test/*
Packit 071ada
Packit 071ada
EXCLUDE_PATTERNS       =
Packit 071ada
Packit 071ada
# The EXAMPLE_PATH tag can be used to specify one or more files or
Packit 071ada
# directories that contain example code fragments that are included (see
Packit 071ada
# the \include command).
Packit 071ada
Packit 071ada
EXAMPLE_PATH           =
Packit 071ada
Packit 071ada
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
Packit 071ada
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
Packit 071ada
# and *.h) to filter out the source-files in the directories. If left
Packit 071ada
# blank all files are included.
Packit 071ada
Packit 071ada
EXAMPLE_PATTERNS       =
Packit 071ada
Packit 071ada
# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
Packit 071ada
# searched for input files to be used with the \include or \dontinclude
Packit 071ada
# commands irrespective of the value of the RECURSIVE tag.
Packit 071ada
# Possible values are YES and NO. If left blank NO is used.
Packit 071ada
Packit 071ada
EXAMPLE_RECURSIVE      = NO
Packit 071ada
Packit 071ada
# The IMAGE_PATH tag can be used to specify one or more files or
Packit 071ada
# directories that contain image that are included in the documentation (see
Packit 071ada
# the \image command).
Packit 071ada
Packit 071ada
IMAGE_PATH             =
Packit 071ada
Packit 071ada
# The INPUT_FILTER tag can be used to specify a program that doxygen should
Packit 071ada
# invoke to filter for each input file. Doxygen will invoke the filter program
Packit 071ada
# by executing (via popen()) the command <filter> <input-file>, where <filter>
Packit 071ada
# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
Packit 071ada
# input file. Doxygen will then use the output that the filter program writes
Packit 071ada
# to standard output.  If FILTER_PATTERNS is specified, this tag will be
Packit 071ada
# ignored.
Packit 071ada
Packit 071ada
INPUT_FILTER           =
Packit 071ada
Packit 071ada
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
Packit 071ada
# basis.  Doxygen will compare the file name with each pattern and apply the
Packit 071ada
# filter if there is a match.  The filters are a list of the form:
Packit 071ada
# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
Packit 071ada
# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
Packit 071ada
# is applied to all files.
Packit 071ada
Packit 071ada
FILTER_PATTERNS        =
Packit 071ada
Packit 071ada
# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
Packit 071ada
# INPUT_FILTER) will be used to filter the input files when producing source
Packit 071ada
# files to browse (i.e. when SOURCE_BROWSER is set to YES).
Packit 071ada
Packit 071ada
FILTER_SOURCE_FILES    = NO
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# configuration options related to source browsing
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# If the SOURCE_BROWSER tag is set to YES then a list of source files will
Packit 071ada
# be generated. Documented entities will be cross-referenced with these sources.
Packit 071ada
# Note: To get rid of all source code in the generated output, make sure also
Packit 071ada
# VERBATIM_HEADERS is set to NO.
Packit 071ada
Packit 071ada
SOURCE_BROWSER         = NO
Packit 071ada
Packit 071ada
# Setting the INLINE_SOURCES tag to YES will include the body
Packit 071ada
# of functions and classes directly in the documentation.
Packit 071ada
Packit 071ada
INLINE_SOURCES         = NO
Packit 071ada
Packit 071ada
# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
Packit 071ada
# doxygen to hide any special comment blocks from generated source code
Packit 071ada
# fragments. Normal C and C++ comments will always remain visible.
Packit 071ada
Packit 071ada
STRIP_CODE_COMMENTS    = YES
Packit 071ada
Packit 071ada
# If the REFERENCED_BY_RELATION tag is set to YES (the default)
Packit 071ada
# then for each documented function all documented
Packit 071ada
# functions referencing it will be listed.
Packit 071ada
Packit 071ada
REFERENCED_BY_RELATION = YES
Packit 071ada
Packit 071ada
# If the REFERENCES_RELATION tag is set to YES (the default)
Packit 071ada
# then for each documented function all documented entities
Packit 071ada
# called/used by that function will be listed.
Packit 071ada
Packit 071ada
REFERENCES_RELATION    = YES
Packit 071ada
Packit 071ada
# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
Packit 071ada
# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
Packit 071ada
# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
Packit 071ada
# link to the source code.  Otherwise they will link to the documentstion.
Packit 071ada
Packit 071ada
REFERENCES_LINK_SOURCE = YES
Packit 071ada
Packit 071ada
# If the USE_HTAGS tag is set to YES then the references to source code
Packit 071ada
# will point to the HTML generated by the htags(1) tool instead of doxygen
Packit 071ada
# built-in source browser. The htags tool is part of GNU's global source
Packit 071ada
# tagging system (see http://www.gnu.org/software/global/global.html). You
Packit 071ada
# will need version 4.8.6 or higher.
Packit 071ada
Packit 071ada
USE_HTAGS              = NO
Packit 071ada
Packit 071ada
# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
Packit 071ada
# will generate a verbatim copy of the header file for each class for
Packit 071ada
# which an include is specified. Set to NO to disable this.
Packit 071ada
Packit 071ada
VERBATIM_HEADERS       = YES
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# configuration options related to the alphabetical class index
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
Packit 071ada
# of all compounds will be generated. Enable this if the project
Packit 071ada
# contains a lot of classes, structs, unions or interfaces.
Packit 071ada
Packit 071ada
ALPHABETICAL_INDEX     = NO
Packit 071ada
Packit 071ada
# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
Packit 071ada
# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
Packit 071ada
# in which this list will be split (can be a number in the range [1..20])
Packit 071ada
Packit 071ada
COLS_IN_ALPHA_INDEX    = 5
Packit 071ada
Packit 071ada
# In case all classes in a project start with a common prefix, all
Packit 071ada
# classes will be put under the same header in the alphabetical index.
Packit 071ada
# The IGNORE_PREFIX tag can be used to specify one or more prefixes that
Packit 071ada
# should be ignored while generating the index headers.
Packit 071ada
Packit 071ada
IGNORE_PREFIX          =
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# configuration options related to the HTML output
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
Packit 071ada
# generate HTML output.
Packit 071ada
Packit 071ada
GENERATE_HTML          = YES
Packit 071ada
Packit 071ada
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
Packit 071ada
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
Packit 071ada
# put in front of it. If left blank `html' will be used as the default path.
Packit 071ada
Packit 071ada
HTML_OUTPUT            = manual
Packit 071ada
Packit 071ada
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
Packit 071ada
# each generated HTML page (for example: .htm,.php,.asp). If it is left blank
Packit 071ada
# doxygen will generate files with .html extension.
Packit 071ada
Packit 071ada
HTML_FILE_EXTENSION    = .html
Packit 071ada
Packit 071ada
# The HTML_HEADER tag can be used to specify a personal HTML header for
Packit 071ada
# each generated HTML page. If it is left blank doxygen will generate a
Packit 071ada
# standard header.
Packit 071ada
Packit 071ada
HTML_HEADER            =
Packit 071ada
Packit 071ada
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
Packit 071ada
# each generated HTML page. If it is left blank doxygen will generate a
Packit 071ada
# standard footer.
Packit 071ada
Packit 071ada
HTML_FOOTER            =
Packit 071ada
Packit 071ada
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
Packit 071ada
# style sheet that is used by each HTML page. It can be used to
Packit 071ada
# fine-tune the look of the HTML output. If the tag is left blank doxygen
Packit 071ada
# will generate a default style sheet. Note that doxygen will try to copy
Packit 071ada
# the style sheet file to the HTML output directory, so don't put your own
Packit 071ada
# stylesheet in the HTML output directory as well, or it will be erased!
Packit 071ada
Packit 071ada
HTML_STYLESHEET        =
Packit 071ada
Packit 071ada
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
Packit 071ada
# files or namespaces will be aligned in HTML using tables. If set to
Packit 071ada
# NO a bullet list will be used.
Packit 071ada
Packit 071ada
HTML_ALIGN_MEMBERS     = YES
Packit 071ada
Packit 071ada
# If the GENERATE_HTMLHELP tag is set to YES, additional index files
Packit 071ada
# will be generated that can be used as input for tools like the
Packit 071ada
# Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
Packit 071ada
# of the generated HTML documentation.
Packit 071ada
Packit 071ada
GENERATE_HTMLHELP      = NO
Packit 071ada
Packit 071ada
# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
Packit 071ada
# be used to specify the file name of the resulting .chm file. You
Packit 071ada
# can add a path in front of the file if the result should not be
Packit 071ada
# written to the html output directory.
Packit 071ada
Packit 071ada
CHM_FILE               =
Packit 071ada
Packit 071ada
# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
Packit 071ada
# be used to specify the location (absolute path including file name) of
Packit 071ada
# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
Packit 071ada
# the HTML help compiler on the generated index.hhp.
Packit 071ada
Packit 071ada
HHC_LOCATION           =
Packit 071ada
Packit 071ada
# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
Packit 071ada
# controls if a separate .chi index file is generated (YES) or that
Packit 071ada
# it should be included in the master .chm file (NO).
Packit 071ada
Packit 071ada
GENERATE_CHI           = NO
Packit 071ada
Packit 071ada
# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
Packit 071ada
# controls whether a binary table of contents is generated (YES) or a
Packit 071ada
# normal table of contents (NO) in the .chm file.
Packit 071ada
Packit 071ada
BINARY_TOC             = NO
Packit 071ada
Packit 071ada
# The TOC_EXPAND flag can be set to YES to add extra items for group members
Packit 071ada
# to the contents of the HTML help documentation and to the tree view.
Packit 071ada
Packit 071ada
TOC_EXPAND             = NO
Packit 071ada
Packit 071ada
# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
Packit 071ada
# top of each HTML page. The value NO (the default) enables the index and
Packit 071ada
# the value YES disables it.
Packit 071ada
Packit 071ada
DISABLE_INDEX          = NO
Packit 071ada
Packit 071ada
# This tag can be used to set the number of enum values (range [1..20])
Packit 071ada
# that doxygen will group on one line in the generated HTML documentation.
Packit 071ada
Packit 071ada
ENUM_VALUES_PER_LINE   = 4
Packit 071ada
Packit 071ada
# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
Packit 071ada
# generated containing a tree-like index structure (just like the one that
Packit 071ada
# is generated for HTML Help). For this to work a browser that supports
Packit 071ada
# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,
Packit 071ada
# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
Packit 071ada
# probably better off using the HTML help feature.
Packit 071ada
Packit 071ada
GENERATE_TREEVIEW      = NO
Packit 071ada
Packit 071ada
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
Packit 071ada
# used to set the initial width (in pixels) of the frame in which the tree
Packit 071ada
# is shown.
Packit 071ada
Packit 071ada
TREEVIEW_WIDTH         = 250
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# configuration options related to the LaTeX output
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
Packit 071ada
# generate Latex output.
Packit 071ada
Packit 071ada
GENERATE_LATEX         = NO
Packit 071ada
Packit 071ada
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
Packit 071ada
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
Packit 071ada
# put in front of it. If left blank `latex' will be used as the default path.
Packit 071ada
Packit 071ada
LATEX_OUTPUT           = latex
Packit 071ada
Packit 071ada
# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
Packit 071ada
# invoked. If left blank `latex' will be used as the default command name.
Packit 071ada
Packit 071ada
LATEX_CMD_NAME         = latex
Packit 071ada
Packit 071ada
# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
Packit 071ada
# generate index for LaTeX. If left blank `makeindex' will be used as the
Packit 071ada
# default command name.
Packit 071ada
Packit 071ada
MAKEINDEX_CMD_NAME     = makeindex
Packit 071ada
Packit 071ada
# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
Packit 071ada
# LaTeX documents. This may be useful for small projects and may help to
Packit 071ada
# save some trees in general.
Packit 071ada
Packit 071ada
COMPACT_LATEX          = NO
Packit 071ada
Packit 071ada
# The PAPER_TYPE tag can be used to set the paper type that is used
Packit 071ada
# by the printer. Possible values are: a4, a4wide, letter, legal and
Packit 071ada
# executive. If left blank a4wide will be used.
Packit 071ada
Packit 071ada
PAPER_TYPE             = a4wide
Packit 071ada
Packit 071ada
# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
Packit 071ada
# packages that should be included in the LaTeX output.
Packit 071ada
Packit 071ada
EXTRA_PACKAGES         =
Packit 071ada
Packit 071ada
# The LATEX_HEADER tag can be used to specify a personal LaTeX header for
Packit 071ada
# the generated latex document. The header should contain everything until
Packit 071ada
# the first chapter. If it is left blank doxygen will generate a
Packit 071ada
# standard header. Notice: only use this tag if you know what you are doing!
Packit 071ada
Packit 071ada
LATEX_HEADER           =
Packit 071ada
Packit 071ada
# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
Packit 071ada
# is prepared for conversion to pdf (using ps2pdf). The pdf file will
Packit 071ada
# contain links (just like the HTML output) instead of page references
Packit 071ada
# This makes the output suitable for online browsing using a pdf viewer.
Packit 071ada
Packit 071ada
PDF_HYPERLINKS         = NO
Packit 071ada
Packit 071ada
# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
Packit 071ada
# plain latex in the generated Makefile. Set this option to YES to get a
Packit 071ada
# higher quality PDF documentation.
Packit 071ada
Packit 071ada
USE_PDFLATEX           = NO
Packit 071ada
Packit 071ada
# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
Packit 071ada
# command to the generated LaTeX files. This will instruct LaTeX to keep
Packit 071ada
# running if errors occur, instead of asking the user for help.
Packit 071ada
# This option is also used when generating formulas in HTML.
Packit 071ada
Packit 071ada
LATEX_BATCHMODE        = NO
Packit 071ada
Packit 071ada
# If LATEX_HIDE_INDICES is set to YES then doxygen will not
Packit 071ada
# include the index chapters (such as File Index, Compound Index, etc.)
Packit 071ada
# in the output.
Packit 071ada
Packit 071ada
LATEX_HIDE_INDICES     = NO
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# configuration options related to the RTF output
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
Packit 071ada
# The RTF output is optimized for Word 97 and may not look very pretty with
Packit 071ada
# other RTF readers or editors.
Packit 071ada
Packit 071ada
GENERATE_RTF           = NO
Packit 071ada
Packit 071ada
# The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
Packit 071ada
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
Packit 071ada
# put in front of it. If left blank `rtf' will be used as the default path.
Packit 071ada
Packit 071ada
RTF_OUTPUT             = rtf
Packit 071ada
Packit 071ada
# If the COMPACT_RTF tag is set to YES Doxygen generates more compact
Packit 071ada
# RTF documents. This may be useful for small projects and may help to
Packit 071ada
# save some trees in general.
Packit 071ada
Packit 071ada
COMPACT_RTF            = NO
Packit 071ada
Packit 071ada
# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
Packit 071ada
# will contain hyperlink fields. The RTF file will
Packit 071ada
# contain links (just like the HTML output) instead of page references.
Packit 071ada
# This makes the output suitable for online browsing using WORD or other
Packit 071ada
# programs which support those fields.
Packit 071ada
# Note: wordpad (write) and others do not support links.
Packit 071ada
Packit 071ada
RTF_HYPERLINKS         = NO
Packit 071ada
Packit 071ada
# Load stylesheet definitions from file. Syntax is similar to doxygen's
Packit 071ada
# config file, i.e. a series of assignments. You only have to provide
Packit 071ada
# replacements, missing definitions are set to their default value.
Packit 071ada
Packit 071ada
RTF_STYLESHEET_FILE    =
Packit 071ada
Packit 071ada
# Set optional variables used in the generation of an rtf document.
Packit 071ada
# Syntax is similar to doxygen's config file.
Packit 071ada
Packit 071ada
RTF_EXTENSIONS_FILE    =
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# configuration options related to the man page output
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# If the GENERATE_MAN tag is set to YES (the default) Doxygen will
Packit 071ada
# generate man pages
Packit 071ada
Packit 071ada
GENERATE_MAN           = NO
Packit 071ada
Packit 071ada
# The MAN_OUTPUT tag is used to specify where the man pages will be put.
Packit 071ada
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
Packit 071ada
# put in front of it. If left blank `man' will be used as the default path.
Packit 071ada
Packit 071ada
MAN_OUTPUT             = man
Packit 071ada
Packit 071ada
# The MAN_EXTENSION tag determines the extension that is added to
Packit 071ada
# the generated man pages (default is the subroutine's section .3)
Packit 071ada
Packit 071ada
MAN_EXTENSION          = .3
Packit 071ada
Packit 071ada
# If the MAN_LINKS tag is set to YES and Doxygen generates man output,
Packit 071ada
# then it will generate one additional man file for each entity
Packit 071ada
# documented in the real man page(s). These additional files
Packit 071ada
# only source the real man page, but without them the man command
Packit 071ada
# would be unable to find the correct page. The default is NO.
Packit 071ada
Packit 071ada
MAN_LINKS              = NO
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# configuration options related to the XML output
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# If the GENERATE_XML tag is set to YES Doxygen will
Packit 071ada
# generate an XML file that captures the structure of
Packit 071ada
# the code including all documentation.
Packit 071ada
Packit 071ada
GENERATE_XML           = NO
Packit 071ada
Packit 071ada
# The XML_OUTPUT tag is used to specify where the XML pages will be put.
Packit 071ada
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
Packit 071ada
# put in front of it. If left blank `xml' will be used as the default path.
Packit 071ada
Packit 071ada
XML_OUTPUT             = xml
Packit 071ada
Packit 071ada
# The XML_SCHEMA tag can be used to specify an XML schema,
Packit 071ada
# which can be used by a validating XML parser to check the
Packit 071ada
# syntax of the XML files.
Packit 071ada
Packit 071ada
XML_SCHEMA             =
Packit 071ada
Packit 071ada
# The XML_DTD tag can be used to specify an XML DTD,
Packit 071ada
# which can be used by a validating XML parser to check the
Packit 071ada
# syntax of the XML files.
Packit 071ada
Packit 071ada
XML_DTD                =
Packit 071ada
Packit 071ada
# If the XML_PROGRAMLISTING tag is set to YES Doxygen will
Packit 071ada
# dump the program listings (including syntax highlighting
Packit 071ada
# and cross-referencing information) to the XML output. Note that
Packit 071ada
# enabling this will significantly increase the size of the XML output.
Packit 071ada
Packit 071ada
XML_PROGRAMLISTING     = YES
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# configuration options for the AutoGen Definitions output
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
Packit 071ada
# generate an AutoGen Definitions (see autogen.sf.net) file
Packit 071ada
# that captures the structure of the code including all
Packit 071ada
# documentation. Note that this feature is still experimental
Packit 071ada
# and incomplete at the moment.
Packit 071ada
Packit 071ada
GENERATE_AUTOGEN_DEF   = NO
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# configuration options related to the Perl module output
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# If the GENERATE_PERLMOD tag is set to YES Doxygen will
Packit 071ada
# generate a Perl module file that captures the structure of
Packit 071ada
# the code including all documentation. Note that this
Packit 071ada
# feature is still experimental and incomplete at the
Packit 071ada
# moment.
Packit 071ada
Packit 071ada
GENERATE_PERLMOD       = NO
Packit 071ada
Packit 071ada
# If the PERLMOD_LATEX tag is set to YES Doxygen will generate
Packit 071ada
# the necessary Makefile rules, Perl scripts and LaTeX code to be able
Packit 071ada
# to generate PDF and DVI output from the Perl module output.
Packit 071ada
Packit 071ada
PERLMOD_LATEX          = NO
Packit 071ada
Packit 071ada
# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
Packit 071ada
# nicely formatted so it can be parsed by a human reader.  This is useful
Packit 071ada
# if you want to understand what is going on.  On the other hand, if this
Packit 071ada
# tag is set to NO the size of the Perl module output will be much smaller
Packit 071ada
# and Perl will parse it just the same.
Packit 071ada
Packit 071ada
PERLMOD_PRETTY         = YES
Packit 071ada
Packit 071ada
# The names of the make variables in the generated doxyrules.make file
Packit 071ada
# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
Packit 071ada
# This is useful so different doxyrules.make files included by the same
Packit 071ada
# Makefile don't overwrite each other's variables.
Packit 071ada
Packit 071ada
PERLMOD_MAKEVAR_PREFIX =
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# Configuration options related to the preprocessor
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
Packit 071ada
# evaluate all C-preprocessor directives found in the sources and include
Packit 071ada
# files.
Packit 071ada
Packit 071ada
ENABLE_PREPROCESSING   = YES
Packit 071ada
Packit 071ada
# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
Packit 071ada
# names in the source code. If set to NO (the default) only conditional
Packit 071ada
# compilation will be performed. Macro expansion can be done in a controlled
Packit 071ada
# way by setting EXPAND_ONLY_PREDEF to YES.
Packit 071ada
Packit 071ada
MACRO_EXPANSION        = NO
Packit 071ada
Packit 071ada
# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
Packit 071ada
# then the macro expansion is limited to the macros specified with the
Packit 071ada
# PREDEFINED and EXPAND_AS_DEFINED tags.
Packit 071ada
Packit 071ada
EXPAND_ONLY_PREDEF     = NO
Packit 071ada
Packit 071ada
# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
Packit 071ada
# in the INCLUDE_PATH (see below) will be search if a #include is found.
Packit 071ada
Packit 071ada
SEARCH_INCLUDES        = YES
Packit 071ada
Packit 071ada
# The INCLUDE_PATH tag can be used to specify one or more directories that
Packit 071ada
# contain include files that are not input files but should be processed by
Packit 071ada
# the preprocessor.
Packit 071ada
Packit 071ada
INCLUDE_PATH           =
Packit 071ada
Packit 071ada
# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
Packit 071ada
# patterns (like *.h and *.hpp) to filter out the header-files in the
Packit 071ada
# directories. If left blank, the patterns specified with FILE_PATTERNS will
Packit 071ada
# be used.
Packit 071ada
Packit 071ada
INCLUDE_FILE_PATTERNS  =
Packit 071ada
Packit 071ada
# The PREDEFINED tag can be used to specify one or more macro names that
Packit 071ada
# are defined before the preprocessor is started (similar to the -D option of
Packit 071ada
# gcc). The argument of the tag is a list of macros of the form: name
Packit 071ada
# or name=definition (no spaces). If the definition and the = are
Packit 071ada
# omitted =1 is assumed. To prevent a macro definition from being
Packit 071ada
# undefined via #undef or recursively expanded use the := operator
Packit 071ada
# instead of the = operator.
Packit 071ada
Packit 071ada
PREDEFINED             =
Packit 071ada
Packit 071ada
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
Packit 071ada
# this tag can be used to specify a list of macro names that should be expanded.
Packit 071ada
# The macro definition that is found in the sources will be used.
Packit 071ada
# Use the PREDEFINED tag if you want to use a different macro definition.
Packit 071ada
Packit 071ada
EXPAND_AS_DEFINED      =
Packit 071ada
Packit 071ada
# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
Packit 071ada
# doxygen's preprocessor will remove all function-like macros that are alone
Packit 071ada
# on a line, have an all uppercase name, and do not end with a semicolon. Such
Packit 071ada
# function macros are typically used for boiler-plate code, and will confuse
Packit 071ada
# the parser if not removed.
Packit 071ada
Packit 071ada
SKIP_FUNCTION_MACROS   = YES
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# Configuration::additions related to external references
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# The TAGFILES option can be used to specify one or more tagfiles.
Packit 071ada
# Optionally an initial location of the external documentation
Packit 071ada
# can be added for each tagfile. The format of a tag file without
Packit 071ada
# this location is as follows:
Packit 071ada
#   TAGFILES = file1 file2 ...
Packit 071ada
# Adding location for the tag files is done as follows:
Packit 071ada
#   TAGFILES = file1=loc1 "file2 = loc2" ...
Packit 071ada
# where "loc1" and "loc2" can be relative or absolute paths or
Packit 071ada
# URLs. If a location is present for each tag, the installdox tool
Packit 071ada
# does not have to be run to correct the links.
Packit 071ada
# Note that each tag file must have a unique name
Packit 071ada
# (where the name does NOT include the path)
Packit 071ada
# If a tag file is not located in the directory in which doxygen
Packit 071ada
# is run, you must also specify the path to the tagfile here.
Packit 071ada
Packit 071ada
TAGFILES               =
Packit 071ada
Packit 071ada
# When a file name is specified after GENERATE_TAGFILE, doxygen will create
Packit 071ada
# a tag file that is based on the input files it reads.
Packit 071ada
Packit 071ada
GENERATE_TAGFILE       =
Packit 071ada
Packit 071ada
# If the ALLEXTERNALS tag is set to YES all external classes will be listed
Packit 071ada
# in the class index. If set to NO only the inherited external classes
Packit 071ada
# will be listed.
Packit 071ada
Packit 071ada
ALLEXTERNALS           = NO
Packit 071ada
Packit 071ada
# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
Packit 071ada
# in the modules index. If set to NO, only the current project's groups will
Packit 071ada
# be listed.
Packit 071ada
Packit 071ada
EXTERNAL_GROUPS        = YES
Packit 071ada
Packit 071ada
# The PERL_PATH should be the absolute path and name of the perl script
Packit 071ada
# interpreter (i.e. the result of `which perl').
Packit 071ada
Packit 071ada
PERL_PATH              = /usr/bin/perl
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# Configuration options related to the dot tool
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
Packit 071ada
# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
Packit 071ada
# or super classes. Setting the tag to NO turns the diagrams off. Note that
Packit 071ada
# this option is superseded by the HAVE_DOT option below. This is only a
Packit 071ada
# fallback. It is recommended to install and use dot, since it yields more
Packit 071ada
# powerful graphs.
Packit 071ada
Packit 071ada
CLASS_DIAGRAMS         = YES
Packit 071ada
Packit 071ada
# If set to YES, the inheritance and collaboration graphs will hide
Packit 071ada
# inheritance and usage relations if the target is undocumented
Packit 071ada
# or is not a class.
Packit 071ada
Packit 071ada
HIDE_UNDOC_RELATIONS   = YES
Packit 071ada
Packit 071ada
# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
Packit 071ada
# available from the path. This tool is part of Graphviz, a graph visualization
Packit 071ada
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
Packit 071ada
# have no effect if this option is set to NO (the default)
Packit 071ada
Packit 071ada
HAVE_DOT               = YES
Packit 071ada
Packit 071ada
# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
Packit 071ada
# will generate a graph for each documented class showing the direct and
Packit 071ada
# indirect inheritance relations. Setting this tag to YES will force the
Packit 071ada
# the CLASS_DIAGRAMS tag to NO.
Packit 071ada
Packit 071ada
CLASS_GRAPH            = YES
Packit 071ada
Packit 071ada
# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
Packit 071ada
# will generate a graph for each documented class showing the direct and
Packit 071ada
# indirect implementation dependencies (inheritance, containment, and
Packit 071ada
# class references variables) of the class with other documented classes.
Packit 071ada
Packit 071ada
COLLABORATION_GRAPH    = YES
Packit 071ada
Packit 071ada
# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
Packit 071ada
# will generate a graph for groups, showing the direct groups dependencies
Packit 071ada
Packit 071ada
GROUP_GRAPHS           = YES
Packit 071ada
Packit 071ada
# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
Packit 071ada
# collaboration diagrams in a style similar to the OMG's Unified Modeling
Packit 071ada
# Language.
Packit 071ada
Packit 071ada
UML_LOOK               = NO
Packit 071ada
Packit 071ada
# If set to YES, the inheritance and collaboration graphs will show the
Packit 071ada
# relations between templates and their instances.
Packit 071ada
Packit 071ada
TEMPLATE_RELATIONS     = NO
Packit 071ada
Packit 071ada
# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
Packit 071ada
# tags are set to YES then doxygen will generate a graph for each documented
Packit 071ada
# file showing the direct and indirect include dependencies of the file with
Packit 071ada
# other documented files.
Packit 071ada
Packit 071ada
INCLUDE_GRAPH          = YES
Packit 071ada
Packit 071ada
# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
Packit 071ada
# HAVE_DOT tags are set to YES then doxygen will generate a graph for each
Packit 071ada
# documented header file showing the documented files that directly or
Packit 071ada
# indirectly include this file.
Packit 071ada
Packit 071ada
INCLUDED_BY_GRAPH      = YES
Packit 071ada
Packit 071ada
# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
Packit 071ada
# generate a call dependency graph for every global function or class method.
Packit 071ada
# Note that enabling this option will significantly increase the time of a run.
Packit 071ada
# So in most cases it will be better to enable call graphs for selected
Packit 071ada
# functions only using the \callgraph command.
Packit 071ada
Packit 071ada
CALL_GRAPH             = NO
Packit 071ada
Packit 071ada
# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then doxygen will
Packit 071ada
# generate a caller dependency graph for every global function or class method.
Packit 071ada
# Note that enabling this option will significantly increase the time of a run.
Packit 071ada
# So in most cases it will be better to enable caller graphs for selected
Packit 071ada
# functions only using the \callergraph command.
Packit 071ada
Packit 071ada
CALLER_GRAPH           = NO
Packit 071ada
Packit 071ada
# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
Packit 071ada
# will graphical hierarchy of all classes instead of a textual one.
Packit 071ada
Packit 071ada
GRAPHICAL_HIERARCHY    = YES
Packit 071ada
Packit 071ada
# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
Packit 071ada
# then doxygen will show the dependencies a directory has on other directories
Packit 071ada
# in a graphical way. The dependency relations are determined by the #include
Packit 071ada
# relations between the files in the directories.
Packit 071ada
Packit 071ada
DIRECTORY_GRAPH        = YES
Packit 071ada
Packit 071ada
# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
Packit 071ada
# generated by dot. Possible values are png, jpg, or gif
Packit 071ada
# If left blank png will be used.
Packit 071ada
Packit 071ada
DOT_IMAGE_FORMAT       = png
Packit 071ada
Packit 071ada
# The tag DOT_PATH can be used to specify the path where the dot tool can be
Packit 071ada
# found. If left blank, it is assumed the dot tool can be found in the path.
Packit 071ada
Packit 071ada
DOT_PATH               =
Packit 071ada
Packit 071ada
# The DOTFILE_DIRS tag can be used to specify one or more directories that
Packit 071ada
# contain dot files that are included in the documentation (see the
Packit 071ada
# \dotfile command).
Packit 071ada
Packit 071ada
DOTFILE_DIRS           =
Packit 071ada
Packit 071ada
# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width
Packit 071ada
# (in pixels) of the graphs generated by dot. If a graph becomes larger than
Packit 071ada
# this value, doxygen will try to truncate the graph, so that it fits within
Packit 071ada
# the specified constraint. Beware that most browsers cannot cope with very
Packit 071ada
# large images.
Packit 071ada
Packit 071ada
MAX_DOT_GRAPH_WIDTH    = 1024
Packit 071ada
Packit 071ada
# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height
Packit 071ada
# (in pixels) of the graphs generated by dot. If a graph becomes larger than
Packit 071ada
# this value, doxygen will try to truncate the graph, so that it fits within
Packit 071ada
# the specified constraint. Beware that most browsers cannot cope with very
Packit 071ada
# large images.
Packit 071ada
Packit 071ada
MAX_DOT_GRAPH_HEIGHT   = 1024
Packit 071ada
Packit 071ada
# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
Packit 071ada
# graphs generated by dot. A depth value of 3 means that only nodes reachable
Packit 071ada
# from the root by following a path via at most 3 edges will be shown. Nodes
Packit 071ada
# that lay further from the root node will be omitted. Note that setting this
Packit 071ada
# option to 1 or 2 may greatly reduce the computation time needed for large
Packit 071ada
# code bases. Also note that a graph may be further truncated if the graph's
Packit 071ada
# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH
Packit 071ada
# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default),
Packit 071ada
# the graph is not depth-constrained.
Packit 071ada
Packit 071ada
MAX_DOT_GRAPH_DEPTH    = 0
Packit 071ada
Packit 071ada
# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
Packit 071ada
# background. This is disabled by default, which results in a white background.
Packit 071ada
# Warning: Depending on the platform used, enabling this option may lead to
Packit 071ada
# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
Packit 071ada
# read).
Packit 071ada
Packit 071ada
DOT_TRANSPARENT        = NO
Packit 071ada
Packit 071ada
# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
Packit 071ada
# files in one run (i.e. multiple -o and -T options on the command line). This
Packit 071ada
# makes dot run faster, but since only newer versions of dot (>1.8.10)
Packit 071ada
# support this, this feature is disabled by default.
Packit 071ada
Packit 071ada
DOT_MULTI_TARGETS      = NO
Packit 071ada
Packit 071ada
# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
Packit 071ada
# generate a legend page explaining the meaning of the various boxes and
Packit 071ada
# arrows in the dot generated graphs.
Packit 071ada
Packit 071ada
GENERATE_LEGEND        = YES
Packit 071ada
Packit 071ada
# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
Packit 071ada
# remove the intermediate dot files that are used to generate
Packit 071ada
# the various graphs.
Packit 071ada
Packit 071ada
DOT_CLEANUP            = YES
Packit 071ada
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
# Configuration::additions related to the search engine
Packit 071ada
#---------------------------------------------------------------------------
Packit 071ada
Packit 071ada
# The SEARCHENGINE tag specifies whether or not a search engine should be
Packit 071ada
# used. If set to NO the values of all tags below this one will be ignored.
Packit 071ada
Packit 071ada
SEARCHENGINE           = NO