Blame ETL/doxygen.cfg.in

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