Changeset 3683

Show
Ignore:
Timestamp:
2008-08-05 03:54:29 (5 months ago)
Author:
conrad
Message:

update Doxygen config for Doxygen 1.5.5

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • liboggz/trunk/doc/Doxyfile.in

    r346 r3683  
    1 # Doxyfile 1.3.4 
     1# Doxyfile 1.5.5 
    22 
    33# This file describes the settings to be used by the documentation system 
     
    1515#--------------------------------------------------------------------------- 
    1616 
     17# This tag specifies the encoding used for all characters in the config file  
     18# that follow. The default is UTF-8 which is also the encoding used for all  
     19# text before the first occurrence of this tag. Doxygen uses libiconv (or the  
     20# iconv built into libc) for the transcoding. See  
     21# http://www.gnu.org/software/libiconv for the list of possible encodings. 
     22 
     23DOXYFILE_ENCODING      = UTF-8 
     24 
    1725# The PROJECT_NAME tag is a single word (or a sequence of words surrounded  
    1826# by quotes) that should identify the project. 
     
    3341OUTPUT_DIRECTORY       = liboggz 
    3442 
     43# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create  
     44# 4096 sub-directories (in 2 levels) under the output directory of each output  
     45# format and will distribute the generated files over these directories.  
     46# Enabling this option can be useful when feeding doxygen a huge amount of  
     47# source files, where putting all generated files in the same directory would  
     48# otherwise cause performance problems for the file system. 
     49 
     50CREATE_SUBDIRS         = NO 
     51 
    3552# The OUTPUT_LANGUAGE tag is used to specify the language in which all  
    3653# documentation generated by doxygen is written. Doxygen will use this  
    3754# information to generate all constant output in the proper language.  
    3855# The default language is English, other supported languages are:  
    39 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch,  
    40 # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en  
    41 # (Japanese with English messages), Korean, Norwegian, Polish, Portuguese,  
    42 # Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian. 
     56# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,  
     57# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek,  
     58# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages),  
     59# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish,  
     60# Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish,  
     61# and Ukrainian. 
    4362 
    4463OUTPUT_LANGUAGE        = English 
    45  
    46 # This tag can be used to specify the encoding used in the generated output.  
    47 # The encoding is not always determined by the language that is chosen,  
    48 # but also whether or not the output is meant for Windows or non-Windows users.  
    49 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES  
    50 # forces the Windows encoding (this is the default for the Windows binary),  
    51 # whereas setting the tag to NO uses a Unix-style encoding (the default for  
    52 # all platforms other than Windows). 
    53  
    54 USE_WINDOWS_ENCODING   = NO 
    5564 
    5665# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will  
     
    6877REPEAT_BRIEF           = YES 
    6978 
     79# This tag implements a quasi-intelligent brief description abbreviator  
     80# that is used to form the text in various listings. Each string  
     81# in this list, if found as the leading text of the brief description, will be  
     82# stripped from the text and the result after processing the whole list, is  
     83# used as the annotated text. Otherwise, the brief description is used as-is.  
     84# If left blank, the following values are used ("$name" is automatically  
     85# replaced with the name of the entity): "The $name class" "The $name widget"  
     86# "The $name file" "is" "provides" "specifies" "contains"  
     87# "represents" "a" "an" "the" 
     88 
     89ABBREVIATE_BRIEF       =  
     90 
    7091# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then  
    7192# Doxygen will generate a detailed section even if there is only a brief  
     
    7495ALWAYS_DETAILED_SEC    = NO 
    7596 
    76 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited  
    77 # members of a class in the documentation of that class as if those members were  
    78 # ordinary class members. Constructors, destructors and assignment operators of  
    79 # the base classes will not be shown. 
     97# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all  
     98# inherited members of a class in the documentation of that class as if those  
     99# members were ordinary class members. Constructors, destructors and assignment  
     100# operators of the base classes will not be shown. 
    80101 
    81102INLINE_INHERITED_MEMB  = NO 
     
    90111# can be used to strip a user-defined part of the path. Stripping is  
    91112# only done if one of the specified strings matches the left-hand part of  
    92 # the path. It is allowed to use relative paths in the argument list. 
     113# the path. The tag can be used to show relative paths in the file list.  
     114# If left blank the directory from which doxygen is run is used as the  
     115# path to strip. 
    93116 
    94117STRIP_FROM_PATH        =  
     118 
     119# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of  
     120# the path mentioned in the documentation of a class, which tells  
     121# the reader which header file to include in order to use a class.  
     122# If left blank only the name of the header file containing the class  
     123# definition is used. Otherwise one should specify the include paths that  
     124# are normally passed to the compiler using the -I flag. 
     125 
     126STRIP_FROM_INC_PATH    =  
    95127 
    96128# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter  
     
    103135# will interpret the first line (until the first dot) of a JavaDoc-style  
    104136# comment as the brief description. If set to NO, the JavaDoc  
    105 # comments will behave just like the Qt-style comments (thus requiring an  
    106 # explict @brief command for a brief description. 
     137# comments will behave just like regular Qt-style comments  
     138# (thus requiring an explicit @brief command for a brief description.) 
    107139 
    108140JAVADOC_AUTOBRIEF      = YES 
     141 
     142# If the QT_AUTOBRIEF tag is set to YES then Doxygen will  
     143# interpret the first line (until the first dot) of a Qt-style  
     144# comment as the brief description. If set to NO, the comments  
     145# will behave just like regular Qt-style comments (thus requiring  
     146# an explicit \brief command for a brief description.) 
     147 
     148QT_AUTOBRIEF           = NO 
    109149 
    110150# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen  
     
    125165# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented  
    126166# member inherits the documentation from any documented member that it  
    127 # reimplements. 
     167# re-implements. 
    128168 
    129169INHERIT_DOCS           = YES 
    130170 
    131 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC  
    132 # tag is set to YES, then doxygen will reuse the documentation of the first  
    133 # member in the group (if any) for the other members of the group. By default  
    134 # all members of a group must be documented explicitly. 
    135  
    136 DISTRIBUTE_GROUP_DOC   = NO 
     171# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce  
     172# a new page for each member. If set to NO, the documentation of a member will  
     173# be part of the file/class/namespace that contains it. 
     174 
     175SEPARATE_MEMBER_PAGES  = NO 
    137176 
    138177# The TAB_SIZE tag can be used to set the number of spaces in a tab.  
     
    150189ALIASES                =  
    151190 
    152 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources  
    153 # only. Doxygen will then generate output that is more tailored for C.  
     191# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C  
     192# sources only. Doxygen will then generate output that is more tailored for C.  
    154193# For instance, some of the names that are used will be different. The list  
    155194# of all members will be omitted, etc. 
     
    157196OPTIMIZE_OUTPUT_FOR_C  = YES 
    158197 
    159 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources  
    160 # only. Doxygen will then generate output that is more tailored for Java.  
    161 # For instance, namespaces will be presented as packages, qualified scopes  
    162 # will look different, etc. 
     198# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java  
     199# sources only. Doxygen will then generate output that is more tailored for  
     200# Java. For instance, namespaces will be presented as packages, qualified  
     201# scopes will look different, etc. 
    163202 
    164203OPTIMIZE_OUTPUT_JAVA   = NO 
     204 
     205# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran  
     206# sources only. Doxygen will then generate output that is more tailored for  
     207# Fortran. 
     208 
     209OPTIMIZE_FOR_FORTRAN   = NO 
     210 
     211# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL  
     212# sources. Doxygen will then generate output that is tailored for  
     213# VHDL. 
     214 
     215OPTIMIZE_OUTPUT_VHDL   = NO 
     216 
     217# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want  
     218# to include (a tag file for) the STL sources as input, then you should  
     219# set this tag to YES in order to let doxygen match functions declarations and  
     220# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.  
     221# func(std::string) {}). This also make the inheritance and collaboration  
     222# diagrams that involve STL classes more complete and accurate. 
     223 
     224BUILTIN_STL_SUPPORT    = NO 
     225 
     226# If you use Microsoft's C++/CLI language, you should set this option to YES to 
     227# enable parsing support. 
     228 
     229CPP_CLI_SUPPORT        = NO 
     230 
     231# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.  
     232# Doxygen will parse them like normal C++ but will assume all classes use public  
     233# instead of private inheritance when no explicit protection keyword is present. 
     234 
     235SIP_SUPPORT            = NO 
     236 
     237# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC  
     238# tag is set to YES, then doxygen will reuse the documentation of the first  
     239# member in the group (if any) for the other members of the group. By default  
     240# all members of a group must be documented explicitly. 
     241 
     242DISTRIBUTE_GROUP_DOC   = NO 
    165243 
    166244# Set the SUBGROUPING tag to YES (the default) to allow class member groups of  
     
    172250SUBGROUPING            = YES 
    173251 
     252# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum  
     253# is documented as struct, union, or enum with the name of the typedef. So  
     254# typedef struct TypeS {} TypeT, will appear in the documentation as a struct  
     255# with name TypeT. When disabled the typedef will appear as a member of a file,  
     256# namespace, or class. And the struct will be named TypeS. This can typically  
     257# be useful for C code in case the coding convention dictates that all compound  
     258# types are typedef'ed and only the typedef is referenced, never the tag name. 
     259 
     260TYPEDEF_HIDES_STRUCT   = NO 
     261 
    174262#--------------------------------------------------------------------------- 
    175263# Build related configuration options 
     
    198286 
    199287EXTRACT_LOCAL_CLASSES  = YES 
     288 
     289# This flag is only useful for Objective-C code. When set to YES local  
     290# methods, which are defined in the implementation section but not in  
     291# the interface are included in the documentation.  
     292# If set to NO (the default) only methods in the interface are included. 
     293 
     294EXTRACT_LOCAL_METHODS  = NO 
     295 
     296# If this flag is set to YES, the members of anonymous namespaces will be  
     297# extracted and appear in the documentation as a namespace called  
     298# 'anonymous_namespace{file}', where file will be replaced with the base  
     299# name of the file that contains the anonymous namespace. By default  
     300# anonymous namespace are hidden. 
     301 
     302EXTRACT_ANON_NSPACES   = NO 
    200303 
    201304# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all  
     
    239342# allowed. This is useful if you have classes or files whose names only differ  
    240343# in case and if your file system supports case sensitive file names. Windows  
    241 # users are advised to set this option to NO. 
     344# and Mac users are advised to set this option to NO. 
    242345 
    243346CASE_SENSE_NAMES       = YES 
     
    266369 
    267370SORT_MEMBER_DOCS       = YES 
     371 
     372# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the  
     373# brief documentation of file, namespace and class members alphabetically  
     374# by member name. If set to NO (the default) the members will appear in  
     375# declaration order. 
     376 
     377SORT_BRIEF_DOCS        = NO 
     378 
     379# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the  
     380# hierarchy of group names into alphabetical order. If set to NO (the default)  
     381# the group names will appear in their defined order. 
     382 
     383SORT_GROUP_NAMES       = NO 
     384 
     385# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be  
     386# sorted by fully-qualified names, including namespaces. If set to  
     387# NO (the default), the class list will be sorted only by class name,  
     388# not including the namespace part.  
     389# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 
     390# Note: This option applies only to the class list, not to the  
     391# alphabetical list. 
     392 
     393SORT_BY_SCOPE_NAME     = NO 
    268394 
    269395# The GENERATE_TODOLIST tag can be used to enable (YES) or  
     
    312438SHOW_USED_FILES        = YES 
    313439 
     440# If the sources in your project are distributed over multiple directories  
     441# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy  
     442# in the documentation. The default is NO. 
     443 
     444SHOW_DIRECTORIES       = NO 
     445 
     446# The FILE_VERSION_FILTER tag can be used to specify a program or script that  
     447# doxygen should invoke to get the current version for each file (typically from  
     448# the version control system). Doxygen will invoke the program by executing (via  
     449# popen()) the command <command> <input-file>, where <command> is the value of  
     450# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file  
     451# provided by doxygen. Whatever the program writes to standard output  
     452# is used as the file version. See the manual for examples. 
     453 
     454FILE_VERSION_FILTER    =  
     455 
    314456#--------------------------------------------------------------------------- 
    315457# configuration options related to warning and progress messages 
     
    340482WARN_IF_DOC_ERROR      = YES 
    341483 
     484# This WARN_NO_PARAMDOC option can be abled to get warnings for  
     485# functions that are documented, but have no documentation for their parameters  
     486# or return value. If set to NO (the default) doxygen will only warn about  
     487# wrong or incomplete parameter documentation, but not about the absence of  
     488# documentation. 
     489 
     490WARN_NO_PARAMDOC       = NO 
     491 
    342492# The WARN_FORMAT tag determines the format of the warning messages that  
    343493# doxygen can produce. The string should contain the $file, $line, and $text  
    344494# tags, which will be replaced by the file and line number from which the  
    345 # warning originated and the warning text. 
     495# warning originated and the warning text. Optionally the format may contain  
     496# $version, which will be replaced by the version of the file (if it could  
     497# be obtained via FILE_VERSION_FILTER) 
    346498 
    347499WARN_FORMAT            = "$file:$line: $text" 
     
    364516INPUT                  = @top_srcdir@/include/oggz 
    365517 
     518# This tag can be used to specify the character encoding of the source files  
     519# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is  
     520# also the default input encoding. Doxygen uses libiconv (or the iconv built  
     521# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for  
     522# the list of possible encodings. 
     523 
     524INPUT_ENCODING         = UTF-8 
     525 
    366526# If the value of the INPUT tag contains directories, you can use the  
    367527# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp  
    368528# and *.h) to filter out the source-files in the directories. If left  
    369529# blank the following patterns are tested:  
    370 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp  
    371 # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc 
     530# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx  
     531# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 
    372532 
    373533FILE_PATTERNS          =  
     
    385545EXCLUDE                =  
    386546 
    387 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories  
    388 # that are symbolic links (a Unix filesystem feature) are excluded from the input. 
     547# The EXCLUDE_SYMLINKS tag can be used select whether or not files or  
     548# directories that are symbolic links (a Unix filesystem feature) are excluded  
     549# from the input. 
    389550 
    390551EXCLUDE_SYMLINKS       = NO 
     
    392553# If the value of the INPUT tag contains directories, you can use the  
    393554# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude  
    394 # certain files from those directories. 
     555# certain files from those directories. Note that the wildcards are matched  
     556# against the file with absolute path, so to exclude all test directories  
     557# for example use the pattern */test/* 
    395558 
    396559EXCLUDE_PATTERNS       =  
     560 
     561# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names  
     562# (namespaces, classes, functions, etc.) that should be excluded from the  
     563# output. The symbol name can be a fully qualified name, a word, or if the  
     564# wildcard * is used, a substring. Examples: ANamespace, AClass,  
     565# AClass::ANamespace, ANamespace::*Test 
     566 
     567EXCLUDE_SYMBOLS        =  
    397568 
    398569# The EXAMPLE_PATH tag can be used to specify one or more files or  
     
    400571# the \include command). 
    401572 
    402 EXAMPLE_PATH           = ../COPYING ../INSTALL ../src/examples 
     573EXAMPLE_PATH           = ../COPYING \ 
     574                         ../INSTALL \ 
     575                         ../src/examples 
    403576 
    404577# If the value of the EXAMPLE_PATH tag contains directories, you can use the  
     
    427600# is the value of the INPUT_FILTER tag, and <input-file> is the name of an  
    428601# input file. Doxygen will then use the output that the filter program writes  
    429 # to standard output. 
     602# to standard output.  If FILTER_PATTERNS is specified, this tag will be  
     603# ignored. 
    430604 
    431605INPUT_FILTER           =  
     606 
     607# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern  
     608# basis.  Doxygen will compare the file name with each pattern and apply the  
     609# filter if there is a match.  The filters are a list of the form:  
     610# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further  
     611# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER  
     612# is applied to all files. 
     613 
     614FILTER_PATTERNS        =  
    432615 
    433616# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using  
     
    442625 
    443626# If the SOURCE_BROWSER tag is set to YES then a list of source files will  
    444 # be generated. Documented entities will be cross-referenced with these sources. 
     627# be generated. Documented entities will be cross-referenced with these sources.  
     628# Note: To get rid of all source code in the generated output, make sure also  
     629# VERBATIM_HEADERS is set to NO. 
    445630 
    446631SOURCE_BROWSER         = NO 
     
    468653 
    469654REFERENCES_RELATION    = YES 
     655 
     656# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 
     657# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 
     658# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 
     659# link to the source code.  Otherwise they will link to the documentstion. 
     660 
     661REFERENCES_LINK_SOURCE = YES 
     662 
     663# If the USE_HTAGS tag is set to YES then the references to source code  
     664# will point to the HTML generated by the htags(1) tool instead of doxygen  
     665# built-in source browser. The htags tool is part of GNU's global source  
     666# tagging system (see http://www.gnu.org/software/global/global.html). You  
     667# will need version 4.8.6 or higher. 
     668 
     669USE_HTAGS              = NO 
    470670 
    471671# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen  
     
    534734# style sheet that is used by each HTML page. It can be used to  
    535735# fine-tune the look of the HTML output. If the tag is left blank doxygen  
    536 # will generate a default style sheet 
     736# will generate a default style sheet. Note that doxygen will try to copy  
     737# the style sheet file to the HTML output directory, so don't put your own  
     738# stylesheet in the HTML output directory as well, or it will be erased! 
    537739 
    538740HTML_STYLESHEET        =  
     
    546748# If the GENERATE_HTMLHELP tag is set to YES, additional index files  
    547749# will be generated that can be used as input for tools like the  
    548 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm)  
     750# Microsoft HTML help workshop to generate a compiled HTML help file (.chm)  
    549751# of the generated HTML documentation. 
    550752 
    551753GENERATE_HTMLHELP      = NO 
     754 
     755# If the GENERATE_DOCSET tag is set to YES, additional index files  
     756# will be generated that can be used as input for Apple's Xcode 3  
     757# integrated development environment, introduced with OSX 10.5 (Leopard).  
     758# To create a documentation set, doxygen will generate a Makefile in the  
     759# HTML output directory. Running make will produce the docset in that  
     760# directory and running "make install" will install the docset in  
     761# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find  
     762# it at startup. 
     763 
     764GENERATE_DOCSET        = NO 
     765 
     766# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the  
     767# feed. A documentation feed provides an umbrella under which multiple  
     768# documentation sets from a single provider (such as a company or product suite)  
     769# can be grouped. 
     770 
     771DOCSET_FEEDNAME        = "Doxygen generated docs" 
     772 
     773# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that  
     774# should uniquely identify the documentation set bundle. This should be a  
     775# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen  
     776# will append .docset to the name. 
     777 
     778DOCSET_BUNDLE_ID       = org.doxygen.Project 
     779 
     780# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML  
     781# documentation will contain sections that can be hidden and shown after the  
     782# page has loaded. For this to work a browser that supports  
     783# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox  
     784# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). 
     785 
     786HTML_DYNAMIC_SECTIONS  = NO 
    552787 
    553788# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can  
    554789# be used to specify the file name of the resulting .chm file. You  
    555790# can add a path in front of the file if the result should not be  
    556 # written to the html output dir
     791# written to the html output directory
    557792 
    558793CHM_FILE               =  
     
    689924 
    690925# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output  
    691 # The RTF output is optimised for Word 97 and may not look very pretty with  
     926# The RTF output is optimized for Word 97 and may not look very pretty with  
    692927# other RTF readers or editors. 
    693928 
     
    716951 
    717952# Load stylesheet definitions from file. Syntax is similar to doxygen's  
    718 # config file, i.e. a series of assigments. You only have to provide  
     953# config file, i.e. a series of assignments. You only have to provide  
    719954# replacements, missing definitions are set to their default value. 
    720955 
     
    760995# If the GENERATE_XML tag is set to YES Doxygen will  
    761996# generate an XML file that captures the structure of  
    762 # the code including all documentation. Note that this  
    763 # feature is still experimental and incomplete at the  
    764 # moment. 
     997# the code including all documentation. 
    765998 
    766999GENERATE_XML           = NO 
     
    7831016 
    7841017XML_DTD                =  
     1018 
     1019# If the XML_PROGRAMLISTING tag is set to YES Doxygen will  
     1020# dump the program listings (including syntax highlighting  
     1021# and cross-referencing information) to the XML output. Note that  
     1022# enabling this will significantly increase the size of the XML output. 
     1023 
     1024XML_PROGRAMLISTING     = YES 
    7851025 
    7861026#--------------------------------------------------------------------------- 
     
    8481088# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES  
    8491089# then the macro expansion is limited to the macros specified with the  
    850 # PREDEFINED and EXPAND_AS_PREDEFINED tags. 
     1090# PREDEFINED and EXPAND_AS_DEFINED tags. 
    8511091 
    8521092EXPAND_ONLY_PREDEF     = NO 
     
    8741114# gcc). The argument of the tag is a list of macros of the form: name  
    8751115# or name=definition (no spaces). If the definition and the = are  
    876 # omitted =1 is assumed. 
     1116# omitted =1 is assumed. To prevent a macro definition from being  
     1117# undefined via #undef or recursively expanded use the := operator  
     1118# instead of the = operator. 
    8771119 
    8781120PREDEFINED             =  
     
    8881130# doxygen's preprocessor will remove all function-like macros that are alone  
    8891131# on a line, have an all uppercase name, and do not end with a semicolon. Such  
    890 # function macros are typically used for boiler-plate code, and will confuse the  
    891 # parser if not removed. 
     1132# function macros are typically used for boiler-plate code, and will confuse  
     1133# the parser if not removed. 
    8921134 
    8931135SKIP_FUNCTION_MACROS   = YES 
    8941136 
    8951137#--------------------------------------------------------------------------- 
    896 # Configuration::addtions related to external references    
     1138# Configuration::additions related to external references    
    8971139#--------------------------------------------------------------------------- 
    8981140 
     
    9411183 
    9421184# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will  
    943 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base or  
    944 # super classes. Setting the tag to NO turns the diagrams off. Note that this  
    945 # option is superceded by the HAVE_DOT option below. This is only a fallback. It is  
    946 # recommended to install and use dot, since it yields more powerful graphs. 
     1185# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base  
     1186# or super classes. Setting the tag to NO turns the diagrams off. Note that  
     1187# this option is superseded by the HAVE_DOT option below. This is only a  
     1188# fallback. It is recommended to install and use dot, since it yields more  
     1189# powerful graphs. 
    9471190 
    9481191CLASS_DIAGRAMS         = YES 
     1192 
     1193# You can define message sequence charts within doxygen comments using the \msc  
     1194# command. Doxygen will then run the mscgen tool (see  
     1195# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the  
     1196# documentation. The MSCGEN_PATH tag allows you to specify the directory where  
     1197# the mscgen tool resides. If left empty the tool is assumed to be found in the  
     1198# default search path. 
     1199 
     1200MSCGEN_PATH            =  
    9491201 
    9501202# If set to YES, the inheritance and collaboration graphs will hide  
     
    9751227COLLABORATION_GRAPH    = YES 
    9761228 
     1229# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen  
     1230# will generate a graph for groups, showing the direct groups dependencies 
     1231 
     1232GROUP_GRAPHS           = YES 
     1233 
    9771234# If the UML_LOOK tag is set to YES doxygen will generate inheritance and  
    978 # collaboration diagrams in a style similiar to the OMG's Unified Modeling  
     1235# collaboration diagrams in a style similar to the OMG's Unified Modeling  
    9791236# Language. 
    9801237 
     
    10001257INCLUDED_BY_GRAPH      = YES 
    10011258 
    1002 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will  
    1003 # generate a call dependency graph for every global function or class method.  
    1004 # Note that enabling this option will significantly increase the time of a run.  
    1005 # So in most cases it will be better to enable call graphs for selected  
    1006 # functions only using the \callgraph command. 
     1259# If the CALL_GRAPH and HAVE_DOT options are set to YES then  
     1260# doxygen will generate a call dependency graph for every global function  
     1261# or class method. Note that enabling this option will significantly increase  
     1262# the time of a run. So in most cases it will be better to enable call graphs  
     1263# for selected functions only using the \callgraph command. 
    10071264 
    10081265CALL_GRAPH             = NO 
     1266 
     1267# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then  
     1268# doxygen will generate a caller dependency graph for every global function  
     1269# or class method. Note that enabling this option will significantly increase  
     1270# the time of a run. So in most cases it will be better to enable caller  
     1271# graphs for selected functions only using the \callergraph command. 
     1272 
     1273CALLER_GRAPH           = NO 
    10091274 
    10101275# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen  
     
    10121277 
    10131278GRAPHICAL_HIERARCHY    = YES 
     1279 
     1280# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES  
     1281# then doxygen will show the dependencies a directory has on other directories  
     1282# in a graphical way. The dependency relations are determined by the #include 
     1283# relations between the files in the directories. 
     1284 
     1285DIRECTORY_GRAPH        = YES 
    10141286 
    10151287# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images  
     
    10201292 
    10211293# The tag DOT_PATH can be used to specify the path where the dot tool can be  
    1022 # found. If left blank, it is assumed the dot tool can be found on the path. 
     1294# found. If left blank, it is assumed the dot tool can be found in the path. 
    10231295 
    10241296DOT_PATH               =  
     
    10301302DOTFILE_DIRS           =  
    10311303 
    1032 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width  
    1033 # (in pixels) of the graphs generated by dot. If a graph becomes larger than  
    1034 # this value, doxygen will try to truncate the graph, so that it fits within  
    1035 # the specified constraint. Beware that most browsers cannot cope with very  
    1036 # large images. 
    1037  
    1038 MAX_DOT_GRAPH_WIDTH    = 1024 
    1039  
    1040 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height  
    1041 # (in pixels) of the graphs generated by dot. If a graph becomes larger than  
    1042 # this value, doxygen will try to truncate the graph, so that it fits within  
    1043 # the specified constraint. Beware that most browsers cannot cope with very  
    1044 # large images. 
    1045  
    1046 MAX_DOT_GRAPH_HEIGHT   = 1024 
     1304# The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of  
     1305# nodes that will be shown in the graph. If the number of nodes in a graph  
     1306# becomes larger than this value, doxygen will truncate the graph, which is  
     1307# visualized by representing a node as a red box. Note that doxygen if the  
     1308# number of direct children of the root node in a graph is already larger than  
     1309# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note  
     1310# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 
     1311 
     1312DOT_GRAPH_MAX_NODES    = 50 
    10471313 
    10481314# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the  
    10491315# graphs generated by dot. A depth value of 3 means that only nodes reachable  
    1050 # from the root by following a path via at most 3 edges will be shown. Nodes that  
    1051 # lay further from the root node will be omitted. Note that setting this option to  
    1052 # 1 or 2 may greatly reduce the computation time needed for large code bases. Also  
    1053 # note that a graph may be further truncated if the graph's image dimensions are  
    1054 # not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH and MAX_DOT_GRAPH_HEIGHT).  
    1055 # If 0 is used for the depth value (the default), the graph is not depth-constrained. 
     1316# from the root by following a path via at most 3 edges will be shown. Nodes  
     1317# that lay further from the root node will be omitted. Note that setting this  
     1318# option to 1 or 2 may greatly reduce the computation time needed for large  
     1319# code bases. Also note that the size of a graph can be further restricted by  
     1320# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 
    10561321 
    10571322MAX_DOT_GRAPH_DEPTH    = 0 
     1323 
     1324# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent  
     1325# background. This is enabled by default, which results in a transparent  
     1326# background. Warning: Depending on the platform used, enabling this option  
     1327# may lead to badly anti-aliased labels on the edges of a graph (i.e. they  
     1328# become hard to read). 
     1329 
     1330DOT_TRANSPARENT        = YES 
     1331 
     1332# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output  
     1333# files in one run (i.e. multiple -o and -T options on the command line). This  
     1334# makes dot run faster, but since only newer versions of dot (>1.8.10)  
     1335# support this, this feature is disabled by default. 
     1336 
     1337DOT_MULTI_TARGETS      = NO 
    10581338 
    10591339# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will  
     
    10701350 
    10711351#--------------------------------------------------------------------------- 
    1072 # Configuration::addtions related to the search engine    
     1352# Configuration::additions related to the search engine    
    10731353#--------------------------------------------------------------------------- 
    10741354