Blame libiscsi/libiscsi.doxy

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