Blame mpich-doxygen.in

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