Blame ACM/tinyxml/dox

Packit 47f805
# Doxyfile 1.2.2
Packit 47f805
Packit 47f805
# This file describes the settings to be used by doxygen for a project
Packit 47f805
#
Packit 47f805
# All text after a hash (#) is considered a comment and will be ignored
Packit 47f805
# The format is:
Packit 47f805
#       TAG = value [value, ...]
Packit 47f805
# For lists items can also be appended using:
Packit 47f805
#       TAG += value [value, ...]
Packit 47f805
# Values that contain spaces should be placed between quotes (" ")
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# General configuration options
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 
Packit 47f805
# by quotes) that should identify the project. 
Packit 47f805
Packit 47f805
PROJECT_NAME           = TinyXml
Packit 47f805
Packit 47f805
# The PROJECT_NUMBER tag can be used to enter a project or revision number. 
Packit 47f805
# This could be handy for archiving the generated documentation or 
Packit 47f805
# if some version control system is used.
Packit 47f805
Packit 47f805
PROJECT_NUMBER         = 
Packit 47f805
Packit 47f805
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
Packit 47f805
# base path where the generated documentation will be put. 
Packit 47f805
# If a relative path is entered, it will be relative to the location 
Packit 47f805
# where doxygen was started. If left blank the current directory will be used.
Packit 47f805
Packit 47f805
OUTPUT_DIRECTORY       = ./docs
Packit 47f805
Packit 47f805
# The OUTPUT_LANGUAGE tag is used to specify the language in which all 
Packit 47f805
# documentation generated by doxygen is written. Doxygen will use this 
Packit 47f805
# information to generate all constant output in the proper language. 
Packit 47f805
# The default language is English, other supported languages are: 
Packit 47f805
# Dutch, French, Italian, Czech, Swedish, German, Finnish, Japanese, 
Packit 47f805
# Korean, Hungarian, Spanish, Romanian, Russian, Croatian, Polish, and 
Packit 47f805
# Portuguese.
Packit 47f805
Packit 47f805
OUTPUT_LANGUAGE        = English
Packit 47f805
Packit 47f805
# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 
Packit 47f805
# documentation are documented, even if no documentation was available. 
Packit 47f805
# Private class members and static file members will be hidden unless 
Packit 47f805
# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 
Packit 47f805
Packit 47f805
EXTRACT_ALL            = NO
Packit 47f805
Packit 47f805
# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 
Packit 47f805
# will be included in the documentation. 
Packit 47f805
Packit 47f805
EXTRACT_PRIVATE        = NO
Packit 47f805
Packit 47f805
# If the EXTRACT_STATIC tag is set to YES all static members of a file 
Packit 47f805
# will be included in the documentation. 
Packit 47f805
Packit 47f805
EXTRACT_STATIC         = NO
Packit 47f805
Packit 47f805
# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 
Packit 47f805
# undocumented members of documented classes, files or namespaces. 
Packit 47f805
# If set to NO (the default) these members will be included in the 
Packit 47f805
# various overviews, but no documentation section is generated. 
Packit 47f805
# This option has no effect if EXTRACT_ALL is enabled. 
Packit 47f805
Packit 47f805
HIDE_UNDOC_MEMBERS     = YES
Packit 47f805
Packit 47f805
# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 
Packit 47f805
# undocumented classes that are normally visible in the class hierarchy. 
Packit 47f805
# If set to NO (the default) these class will be included in the various 
Packit 47f805
# overviews. This option has no effect if EXTRACT_ALL is enabled. 
Packit 47f805
Packit 47f805
HIDE_UNDOC_CLASSES     = YES
Packit 47f805
Packit 47f805
# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 
Packit 47f805
# include brief member descriptions after the members that are listed in 
Packit 47f805
# the file and class documentation (similar to JavaDoc). 
Packit 47f805
# Set to NO to disable this. 
Packit 47f805
Packit 47f805
BRIEF_MEMBER_DESC      = YES
Packit 47f805
Packit 47f805
# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 
Packit 47f805
# the brief description of a member or function before the detailed description. 
Packit 47f805
# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 
Packit 47f805
# brief descriptions will be completely suppressed. 
Packit 47f805
Packit 47f805
REPEAT_BRIEF           = YES
Packit 47f805
Packit 47f805
# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 
Packit 47f805
# Doxygen will generate a detailed section even if there is only a brief 
Packit 47f805
# description. 
Packit 47f805
Packit 47f805
ALWAYS_DETAILED_SEC    = NO
Packit 47f805
Packit 47f805
# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 
Packit 47f805
# path before files name in the file list and in the header files. If set 
Packit 47f805
# to NO the shortest path that makes the file name unique will be used. 
Packit 47f805
Packit 47f805
FULL_PATH_NAMES        = NO
Packit 47f805
Packit 47f805
# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 
Packit 47f805
# can be used to strip a user defined part of the path. Stripping is 
Packit 47f805
# only done if one of the specified strings matches the left-hand part of 
Packit 47f805
# the path. It is allowed to use relative paths in the argument list.
Packit 47f805
Packit 47f805
STRIP_FROM_PATH        = 
Packit 47f805
Packit 47f805
# The INTERNAL_DOCS tag determines if documentation 
Packit 47f805
# that is typed after a \internal command is included. If the tag is set 
Packit 47f805
# to NO (the default) then the documentation will be excluded. 
Packit 47f805
# Set it to YES to include the internal documentation. 
Packit 47f805
Packit 47f805
INTERNAL_DOCS          = NO
Packit 47f805
Packit 47f805
# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 
Packit 47f805
# generate a class diagram (in Html and LaTeX) for classes with base or 
Packit 47f805
# super classes. Setting the tag to NO turns the diagrams off. 
Packit 47f805
Packit 47f805
CLASS_DIAGRAMS         = YES
Packit 47f805
Packit 47f805
# If the SOURCE_BROWSER tag is set to YES then a list of source files will 
Packit 47f805
# be generated. Documented entities will be cross-referenced with these sources. 
Packit 47f805
Packit 47f805
SOURCE_BROWSER         = NO
Packit 47f805
Packit 47f805
# Setting the INLINE_SOURCES tag to YES will include the body 
Packit 47f805
# of functions and classes directly in the documentation. 
Packit 47f805
Packit 47f805
INLINE_SOURCES         = NO
Packit 47f805
Packit 47f805
# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 
Packit 47f805
# doxygen to hide any special comment blocks from generated source code 
Packit 47f805
# fragments. Normal C and C++ comments will always remain visible. 
Packit 47f805
Packit 47f805
STRIP_CODE_COMMENTS    = YES
Packit 47f805
Packit 47f805
# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 
Packit 47f805
# file names in lower case letters. If set to YES upper case letters are also 
Packit 47f805
# allowed. This is useful if you have classes or files whose names only differ 
Packit 47f805
# in case and if your file system supports case sensitive file names. Windows 
Packit 47f805
# users are adviced to set this option to NO.
Packit 47f805
Packit 47f805
CASE_SENSE_NAMES       = YES
Packit 47f805
Packit 47f805
# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 
Packit 47f805
# will show members with their full class and namespace scopes in the 
Packit 47f805
# documentation. If set to YES the scope will be hidden. 
Packit 47f805
Packit 47f805
HIDE_SCOPE_NAMES       = NO
Packit 47f805
Packit 47f805
# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 
Packit 47f805
# will generate a verbatim copy of the header file for each class for 
Packit 47f805
# which an include is specified. Set to NO to disable this. 
Packit 47f805
Packit 47f805
VERBATIM_HEADERS       = YES
Packit 47f805
Packit 47f805
# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 
Packit 47f805
# will put list of the files that are included by a file in the documentation 
Packit 47f805
# of that file. 
Packit 47f805
Packit 47f805
SHOW_INCLUDE_FILES     = YES
Packit 47f805
Packit 47f805
# If the JAVADOC_AUTOBRIEF tag is set to YES (the default) then Doxygen 
Packit 47f805
# will interpret the first line (until the first dot) of a JavaDoc-style 
Packit 47f805
# comment as the brief description. If set to NO, the Javadoc-style will 
Packit 47f805
# behave just like the Qt-style comments. 
Packit 47f805
Packit 47f805
JAVADOC_AUTOBRIEF      = YES
Packit 47f805
Packit 47f805
# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 
Packit 47f805
# member inherits the documentation from any documented member that it 
Packit 47f805
# reimplements. 
Packit 47f805
Packit 47f805
INHERIT_DOCS           = YES
Packit 47f805
Packit 47f805
# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 
Packit 47f805
# is inserted in the documentation for inline members. 
Packit 47f805
Packit 47f805
INLINE_INFO            = YES
Packit 47f805
Packit 47f805
# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 
Packit 47f805
# will sort the (detailed) documentation of file and class members 
Packit 47f805
# alphabetically by member name. If set to NO the members will appear in 
Packit 47f805
# declaration order. 
Packit 47f805
Packit 47f805
SORT_MEMBER_DOCS       = YES
Packit 47f805
Packit 47f805
# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 
Packit 47f805
# tag is set to YES, then doxygen will reuse the documentation of the first 
Packit 47f805
# member in the group (if any) for the other members of the group. By default 
Packit 47f805
# all members of a group must be documented explicitly.
Packit 47f805
Packit 47f805
DISTRIBUTE_GROUP_DOC   = NO
Packit 47f805
Packit 47f805
# The TAB_SIZE tag can be used to set the number of spaces in a tab. 
Packit 47f805
# Doxygen uses this value to replace tabs by spaces in code fragments. 
Packit 47f805
Packit 47f805
TAB_SIZE               = 4
Packit 47f805
Packit 47f805
# The ENABLE_SECTIONS tag can be used to enable conditional 
Packit 47f805
# documentation sections, marked by \if sectionname ... \endif. 
Packit 47f805
Packit 47f805
ENABLED_SECTIONS       = 
Packit 47f805
Packit 47f805
# The GENERATE_TODOLIST tag can be used to enable (YES) or 
Packit 47f805
# disable (NO) the todo list. This list is created by putting \todo 
Packit 47f805
# commands in the documentation.
Packit 47f805
Packit 47f805
GENERATE_TODOLIST      = YES
Packit 47f805
Packit 47f805
# The GENERATE_TESTLIST tag can be used to enable (YES) or 
Packit 47f805
# disable (NO) the test list. This list is created by putting \test 
Packit 47f805
# commands in the documentation.
Packit 47f805
Packit 47f805
GENERATE_TESTLIST      = YES
Packit 47f805
Packit 47f805
# This tag can be used to specify a number of aliases that acts 
Packit 47f805
# as commands in the documentation. An alias has the form "name=value". 
Packit 47f805
# For example adding "sideeffect=\par Side Effects:\n" will allow you to 
Packit 47f805
# put the command \sideeffect (or @sideeffect) in the documentation, which 
Packit 47f805
# will result in a user defined paragraph with heading "Side Effects:". 
Packit 47f805
# You can put \n's in the value part of an alias to insert newlines. 
Packit 47f805
Packit 47f805
ALIASES                = 
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# configuration options related to warning and progress messages
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# The QUIET tag can be used to turn on/off the messages that are generated 
Packit 47f805
# by doxygen. Possible values are YES and NO. If left blank NO is used. 
Packit 47f805
Packit 47f805
QUIET                  = NO
Packit 47f805
Packit 47f805
# The WARNINGS tag can be used to turn on/off the warning messages that are 
Packit 47f805
# generated by doxygen. Possible values are YES and NO. If left blank 
Packit 47f805
# NO is used. 
Packit 47f805
Packit 47f805
WARNINGS               = YES
Packit 47f805
Packit 47f805
# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 
Packit 47f805
# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 
Packit 47f805
# automatically be disabled. 
Packit 47f805
Packit 47f805
WARN_IF_UNDOCUMENTED   = YES
Packit 47f805
Packit 47f805
# The WARN_FORMAT tag determines the format of the warning messages that 
Packit 47f805
# doxygen can produce. The string should contain the $file, $line, and $text 
Packit 47f805
# tags, which will be replaced by the file and line number from which the 
Packit 47f805
# warning originated and the warning text. 
Packit 47f805
Packit 47f805
WARN_FORMAT            = "$file:$line: $text"
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# configuration options related to the input files
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# The INPUT tag can be used to specify the files and/or directories that contain 
Packit 47f805
# documented source files. You may enter file names like "myfile.cpp" or 
Packit 47f805
# directories like "/usr/src/myproject". Separate the files or directories 
Packit 47f805
# with spaces. 
Packit 47f805
Packit 47f805
INPUT                  = . "readme.txt"
Packit 47f805
Packit 47f805
# If the value of the INPUT tag contains directories, you can use the 
Packit 47f805
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
Packit 47f805
# and *.h) to filter out the source-files in the directories. If left 
Packit 47f805
# blank all files are included. 
Packit 47f805
Packit 47f805
FILE_PATTERNS          = *.h
Packit 47f805
Packit 47f805
# The RECURSIVE tag can be used to turn specify whether or not subdirectories 
Packit 47f805
# should be searched for input files as well. Possible values are YES and NO. 
Packit 47f805
# If left blank NO is used. 
Packit 47f805
Packit 47f805
RECURSIVE              = NO
Packit 47f805
Packit 47f805
# The EXCLUDE tag can be used to specify files and/or directories that should 
Packit 47f805
# excluded from the INPUT source files. This way you can easily exclude a 
Packit 47f805
# subdirectory from a directory tree whose root is specified with the INPUT tag. 
Packit 47f805
Packit 47f805
EXCLUDE                = 
Packit 47f805
Packit 47f805
# If the value of the INPUT tag contains directories, you can use the 
Packit 47f805
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 
Packit 47f805
# certain files from those directories. 
Packit 47f805
Packit 47f805
EXCLUDE_PATTERNS       = 
Packit 47f805
Packit 47f805
# The EXAMPLE_PATH tag can be used to specify one or more files or 
Packit 47f805
# directories that contain example code fragments that are included (see 
Packit 47f805
# the \include command). 
Packit 47f805
Packit 47f805
EXAMPLE_PATH           = 
Packit 47f805
Packit 47f805
# If the value of the EXAMPLE_PATH tag contains directories, you can use the 
Packit 47f805
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
Packit 47f805
# and *.h) to filter out the source-files in the directories. If left 
Packit 47f805
# blank all files are included. 
Packit 47f805
Packit 47f805
EXAMPLE_PATTERNS       = 
Packit 47f805
Packit 47f805
# The IMAGE_PATH tag can be used to specify one or more files or 
Packit 47f805
# directories that contain image that are included in the documentation (see 
Packit 47f805
# the \image command). 
Packit 47f805
Packit 47f805
IMAGE_PATH             = 
Packit 47f805
Packit 47f805
# The INPUT_FILTER tag can be used to specify a program that doxygen should 
Packit 47f805
# invoke to filter for each input file. Doxygen will invoke the filter program 
Packit 47f805
# by executing (via popen()) the command <filter> <input-file>, where <filter> 
Packit 47f805
# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 
Packit 47f805
# input file. Doxygen will then use the output that the filter program writes 
Packit 47f805
# to standard output. 
Packit 47f805
Packit 47f805
INPUT_FILTER           = 
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# configuration options related to the alphabetical class index
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 
Packit 47f805
# of all compounds will be generated. Enable this if the project 
Packit 47f805
# contains a lot of classes, structs, unions or interfaces. 
Packit 47f805
Packit 47f805
ALPHABETICAL_INDEX     = NO
Packit 47f805
Packit 47f805
# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 
Packit 47f805
# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 
Packit 47f805
# in which this list will be split (can be a number in the range [1..20]) 
Packit 47f805
Packit 47f805
COLS_IN_ALPHA_INDEX    = 5
Packit 47f805
Packit 47f805
# In case all classes in a project start with a common prefix, all 
Packit 47f805
# classes will be put under the same header in the alphabetical index. 
Packit 47f805
# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 
Packit 47f805
# should be ignored while generating the index headers. 
Packit 47f805
Packit 47f805
IGNORE_PREFIX          = 
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# configuration options related to the HTML output
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 
Packit 47f805
# generate HTML output. 
Packit 47f805
Packit 47f805
GENERATE_HTML          = YES
Packit 47f805
Packit 47f805
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 
Packit 47f805
# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
Packit 47f805
# put in front of it. If left blank `html' will be used as the default path. 
Packit 47f805
Packit 47f805
HTML_OUTPUT            = .
Packit 47f805
Packit 47f805
# The HTML_HEADER tag can be used to specify a personal HTML header for 
Packit 47f805
# each generated HTML page. If it is left blank doxygen will generate a 
Packit 47f805
# standard header.
Packit 47f805
Packit 47f805
HTML_HEADER            = 
Packit 47f805
Packit 47f805
# The HTML_FOOTER tag can be used to specify a personal HTML footer for 
Packit 47f805
# each generated HTML page. If it is left blank doxygen will generate a 
Packit 47f805
# standard footer.
Packit 47f805
Packit 47f805
HTML_FOOTER            = 
Packit 47f805
Packit 47f805
# The HTML_STYLESHEET tag can be used to specify a user defined cascading 
Packit 47f805
# style sheet that is used by each HTML page. It can be used to 
Packit 47f805
# fine-tune the look of the HTML output. If the tag is left blank doxygen 
Packit 47f805
# will generate a default style sheet 
Packit 47f805
Packit 47f805
HTML_STYLESHEET        = 
Packit 47f805
Packit 47f805
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 
Packit 47f805
# files or namespaces will be aligned in HTML using tables. If set to 
Packit 47f805
# NO a bullet list will be used. 
Packit 47f805
Packit 47f805
HTML_ALIGN_MEMBERS     = YES
Packit 47f805
Packit 47f805
# If the GENERATE_HTMLHELP tag is set to YES, additional index files 
Packit 47f805
# will be generated that can be used as input for tools like the 
Packit 47f805
# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 
Packit 47f805
# of the generated HTML documentation. 
Packit 47f805
Packit 47f805
GENERATE_HTMLHELP      = NO
Packit 47f805
Packit 47f805
# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 
Packit 47f805
# top of each HTML page. The value NO (the default) enables the index and 
Packit 47f805
# the value YES disables it. 
Packit 47f805
Packit 47f805
DISABLE_INDEX          = NO
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# configuration options related to the LaTeX output
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 
Packit 47f805
# generate Latex output. 
Packit 47f805
Packit 47f805
GENERATE_LATEX         = NO
Packit 47f805
Packit 47f805
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 
Packit 47f805
# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
Packit 47f805
# put in front of it. If left blank `latex' will be used as the default path. 
Packit 47f805
Packit 47f805
LATEX_OUTPUT           = latex
Packit 47f805
Packit 47f805
# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 
Packit 47f805
# LaTeX documents. This may be useful for small projects and may help to 
Packit 47f805
# save some trees in general. 
Packit 47f805
Packit 47f805
COMPACT_LATEX          = NO
Packit 47f805
Packit 47f805
# The PAPER_TYPE tag can be used to set the paper type that is used 
Packit 47f805
# by the printer. Possible values are: a4, a4wide, letter, legal and 
Packit 47f805
# executive. If left blank a4wide will be used. 
Packit 47f805
Packit 47f805
PAPER_TYPE             = a4wide
Packit 47f805
Packit 47f805
# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 
Packit 47f805
# packages that should be included in the LaTeX output. 
Packit 47f805
Packit 47f805
EXTRA_PACKAGES         = 
Packit 47f805
Packit 47f805
# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 
Packit 47f805
# the generated latex document. The header should contain everything until 
Packit 47f805
# the first chapter. If it is left blank doxygen will generate a 
Packit 47f805
# standard header. Notice: only use this tag if you know what you are doing! 
Packit 47f805
Packit 47f805
LATEX_HEADER           = 
Packit 47f805
Packit 47f805
# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 
Packit 47f805
# is prepared for conversion to pdf (using ps2pdf). The pdf file will 
Packit 47f805
# contain links (just like the HTML output) instead of page references 
Packit 47f805
# This makes the output suitable for online browsing using a pdf viewer. 
Packit 47f805
Packit 47f805
PDF_HYPERLINKS         = NO
Packit 47f805
Packit 47f805
# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 
Packit 47f805
# plain latex in the generated Makefile. Set this option to YES to get a 
Packit 47f805
# higher quality PDF documentation. 
Packit 47f805
Packit 47f805
USE_PDFLATEX           = NO
Packit 47f805
Packit 47f805
# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 
Packit 47f805
# command to the generated LaTeX files. This will instruct LaTeX to keep 
Packit 47f805
# running if errors occur, instead of asking the user for help. 
Packit 47f805
# This option is also used when generating formulas in HTML. 
Packit 47f805
Packit 47f805
LATEX_BATCHMODE        = NO
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# configuration options related to the RTF output
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 
Packit 47f805
# The RTF output is optimised for Word 97 and may not look very pretty with 
Packit 47f805
# other RTF readers or editors.
Packit 47f805
Packit 47f805
GENERATE_RTF           = NO
Packit 47f805
Packit 47f805
# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 
Packit 47f805
# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
Packit 47f805
# put in front of it. If left blank `rtf' will be used as the default path. 
Packit 47f805
Packit 47f805
RTF_OUTPUT             = rtf
Packit 47f805
Packit 47f805
# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 
Packit 47f805
# RTF documents. This may be useful for small projects and may help to 
Packit 47f805
# save some trees in general. 
Packit 47f805
Packit 47f805
COMPACT_RTF            = NO
Packit 47f805
Packit 47f805
# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 
Packit 47f805
# will contain hyperlink fields. The RTF file will 
Packit 47f805
# contain links (just like the HTML output) instead of page references. 
Packit 47f805
# This makes the output suitable for online browsing using a WORD or other. 
Packit 47f805
# programs which support those fields. 
Packit 47f805
# Note: wordpad (write) and others do not support links. 
Packit 47f805
Packit 47f805
RTF_HYPERLINKS         = NO
Packit 47f805
Packit 47f805
# Load stylesheet definitions from file. Syntax is similar to doxygen's 
Packit 47f805
# config file, i.e. a series of assigments. You only have to provide 
Packit 47f805
# replacements, missing definitions are set to their default value. 
Packit 47f805
Packit 47f805
RTF_STYLESHEET_FILE    = 
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# configuration options related to the man page output
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 
Packit 47f805
# generate man pages 
Packit 47f805
Packit 47f805
GENERATE_MAN           = NO
Packit 47f805
Packit 47f805
# The MAN_OUTPUT tag is used to specify where the man pages will be put. 
Packit 47f805
# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
Packit 47f805
# put in front of it. If left blank `man' will be used as the default path. 
Packit 47f805
Packit 47f805
MAN_OUTPUT             = man
Packit 47f805
Packit 47f805
# The MAN_EXTENSION tag determines the extension that is added to 
Packit 47f805
# the generated man pages (default is the subroutine's section .3) 
Packit 47f805
Packit 47f805
MAN_EXTENSION          = .3
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# configuration options related to the XML output
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# If the GENERATE_XML tag is set to YES Doxygen will 
Packit 47f805
# generate an XML file that captures the structure of 
Packit 47f805
# the code including all documentation. Warning: This feature 
Packit 47f805
# is still experimental and very incomplete.
Packit 47f805
Packit 47f805
GENERATE_XML           = NO
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# Configuration options related to the preprocessor   
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 
Packit 47f805
# evaluate all C-preprocessor directives found in the sources and include 
Packit 47f805
# files. 
Packit 47f805
Packit 47f805
ENABLE_PREPROCESSING   = YES
Packit 47f805
Packit 47f805
# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 
Packit 47f805
# names in the source code. If set to NO (the default) only conditional 
Packit 47f805
# compilation will be performed. Macro expansion can be done in a controlled 
Packit 47f805
# way by setting EXPAND_ONLY_PREDEF to YES. 
Packit 47f805
Packit 47f805
MACRO_EXPANSION        = NO
Packit 47f805
Packit 47f805
# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 
Packit 47f805
# then the macro expansion is limited to the macros specified with the 
Packit 47f805
# PREDEFINED and EXPAND_AS_PREDEFINED tags. 
Packit 47f805
Packit 47f805
EXPAND_ONLY_PREDEF     = NO
Packit 47f805
Packit 47f805
# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 
Packit 47f805
# in the INCLUDE_PATH (see below) will be search if a #include is found. 
Packit 47f805
Packit 47f805
SEARCH_INCLUDES        = YES
Packit 47f805
Packit 47f805
# The INCLUDE_PATH tag can be used to specify one or more directories that 
Packit 47f805
# contain include files that are not input files but should be processed by 
Packit 47f805
# the preprocessor. 
Packit 47f805
Packit 47f805
INCLUDE_PATH           = 
Packit 47f805
Packit 47f805
# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 
Packit 47f805
# patterns (like *.h and *.hpp) to filter out the header-files in the 
Packit 47f805
# directories. If left blank, the patterns specified with FILE_PATTERNS will 
Packit 47f805
# be used. 
Packit 47f805
Packit 47f805
INCLUDE_FILE_PATTERNS  = 
Packit 47f805
Packit 47f805
# The PREDEFINED tag can be used to specify one or more macro names that 
Packit 47f805
# are defined before the preprocessor is started (similar to the -D option of 
Packit 47f805
# gcc). The argument of the tag is a list of macros of the form: name 
Packit 47f805
# or name=definition (no spaces). If the definition and the = are 
Packit 47f805
# omitted =1 is assumed. 
Packit 47f805
Packit 47f805
PREDEFINED             = 
Packit 47f805
Packit 47f805
# If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then 
Packit 47f805
# this tag can be used to specify a list of macro names that should be expanded. 
Packit 47f805
# The macro definition that is found in the sources will be used. 
Packit 47f805
# Use the PREDEFINED tag if you want to use a different macro definition. 
Packit 47f805
Packit 47f805
EXPAND_AS_DEFINED      = 
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# Configuration::addtions related to external references   
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# The TAGFILES tag can be used to specify one or more tagfiles. 
Packit 47f805
Packit 47f805
TAGFILES               = 
Packit 47f805
Packit 47f805
# When a file name is specified after GENERATE_TAGFILE, doxygen will create 
Packit 47f805
# a tag file that is based on the input files it reads. 
Packit 47f805
Packit 47f805
GENERATE_TAGFILE       = 
Packit 47f805
Packit 47f805
# If the ALLEXTERNALS tag is set to YES all external classes will be listed 
Packit 47f805
# in the class index. If set to NO only the inherited external classes 
Packit 47f805
# will be listed. 
Packit 47f805
Packit 47f805
ALLEXTERNALS           = NO
Packit 47f805
Packit 47f805
# The PERL_PATH should be the absolute path and name of the perl script 
Packit 47f805
# interpreter (i.e. the result of `which perl'). 
Packit 47f805
Packit 47f805
PERL_PATH              = /usr/bin/perl
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# Configuration options related to the dot tool   
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 
Packit 47f805
# available from the path. This tool is part of Graphviz, a graph visualization 
Packit 47f805
# toolkit from AT&T and Lucent Bell Labs. The other options in this section 
Packit 47f805
# have no effect if this option is set to NO (the default) 
Packit 47f805
Packit 47f805
HAVE_DOT               = NO
Packit 47f805
Packit 47f805
# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 
Packit 47f805
# will generate a graph for each documented class showing the direct and 
Packit 47f805
# indirect inheritance relations. Setting this tag to YES will force the 
Packit 47f805
# the CLASS_DIAGRAMS tag to NO.
Packit 47f805
Packit 47f805
CLASS_GRAPH            = YES
Packit 47f805
Packit 47f805
# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 
Packit 47f805
# will generate a graph for each documented class showing the direct and 
Packit 47f805
# indirect implementation dependencies (inheritance, containment, and 
Packit 47f805
# class references variables) of the class with other documented classes. 
Packit 47f805
Packit 47f805
COLLABORATION_GRAPH    = YES
Packit 47f805
Packit 47f805
# If the ENABLE_PREPROCESSING, INCLUDE_GRAPH, and HAVE_DOT tags are set to 
Packit 47f805
# YES then doxygen will generate a graph for each documented file showing 
Packit 47f805
# the direct and indirect include dependencies of the file with other 
Packit 47f805
# documented files. 
Packit 47f805
Packit 47f805
INCLUDE_GRAPH          = YES
Packit 47f805
Packit 47f805
# If the ENABLE_PREPROCESSING, INCLUDED_BY_GRAPH, and HAVE_DOT tags are set to 
Packit 47f805
# YES then doxygen will generate a graph for each documented header file showing 
Packit 47f805
# the documented files that directly or indirectly include this file 
Packit 47f805
Packit 47f805
INCLUDED_BY_GRAPH      = YES
Packit 47f805
Packit 47f805
# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 
Packit 47f805
# will graphical hierarchy of all classes instead of a textual one. 
Packit 47f805
Packit 47f805
GRAPHICAL_HIERARCHY    = YES
Packit 47f805
Packit 47f805
# The tag DOT_PATH can be used to specify the path where the dot tool can be 
Packit 47f805
# found. If left blank, it is assumed the dot tool can be found on the path. 
Packit 47f805
Packit 47f805
DOT_PATH               = 
Packit 47f805
Packit 47f805
# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 
Packit 47f805
# (in pixels) of the graphs generated by dot. If a graph becomes larger than 
Packit 47f805
# this value, doxygen will try to truncate the graph, so that it fits within 
Packit 47f805
# the specified constraint. Beware that most browsers cannot cope with very 
Packit 47f805
# large images. 
Packit 47f805
Packit 47f805
MAX_DOT_GRAPH_WIDTH    = 1024
Packit 47f805
Packit 47f805
# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 
Packit 47f805
# (in pixels) of the graphs generated by dot. If a graph becomes larger than 
Packit 47f805
# this value, doxygen will try to truncate the graph, so that it fits within 
Packit 47f805
# the specified constraint. Beware that most browsers cannot cope with very 
Packit 47f805
# large images. 
Packit 47f805
Packit 47f805
MAX_DOT_GRAPH_HEIGHT   = 1024
Packit 47f805
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
# Configuration::addtions related to the search engine   
Packit 47f805
#---------------------------------------------------------------------------
Packit 47f805
Packit 47f805
# The SEARCHENGINE tag specifies whether or not a search engine should be 
Packit 47f805
# used. If set to NO the values of all tags below this one will be ignored. 
Packit 47f805
Packit 47f805
SEARCHENGINE           = NO
Packit 47f805
Packit 47f805
# The CGI_NAME tag should be the name of the CGI script that 
Packit 47f805
# starts the search engine (doxysearch) with the correct parameters. 
Packit 47f805
# A script with this name will be generated by doxygen. 
Packit 47f805
Packit 47f805
CGI_NAME               = search.cgi
Packit 47f805
Packit 47f805
# The CGI_URL tag should be the absolute URL to the directory where the 
Packit 47f805
# cgi binaries are located. See the documentation of your http daemon for 
Packit 47f805
# details. 
Packit 47f805
Packit 47f805
CGI_URL                = 
Packit 47f805
Packit 47f805
# The DOC_URL tag should be the absolute URL to the directory where the 
Packit 47f805
# documentation is located. If left blank the absolute path to the 
Packit 47f805
# documentation, with file:// prepended to it, will be used. 
Packit 47f805
Packit 47f805
DOC_URL                = 
Packit 47f805
Packit 47f805
# The DOC_ABSPATH tag should be the absolute path to the directory where the 
Packit 47f805
# documentation is located. If left blank the directory on the local machine 
Packit 47f805
# will be used. 
Packit 47f805
Packit 47f805
DOC_ABSPATH            = 
Packit 47f805
Packit 47f805
# The BIN_ABSPATH tag must point to the directory where the doxysearch binary 
Packit 47f805
# is installed. 
Packit 47f805
Packit 47f805
BIN_ABSPATH            = /usr/local/bin/
Packit 47f805
Packit 47f805
# The EXT_DOC_PATHS tag can be used to specify one or more paths to 
Packit 47f805
# documentation generated for other projects. This allows doxysearch to search 
Packit 47f805
# the documentation for these projects as well. 
Packit 47f805
Packit 47f805
EXT_DOC_PATHS          =