| 1 |
< |
# Doxyfile 1.8.6 |
| 1 |
> |
# Doxyfile 1.8.8 |
| 2 |
> |
# $Id$ |
| 3 |
|
|
| 4 |
|
# This file describes the settings to be used by the documentation system |
| 5 |
|
# doxygen (www.doxygen.org) for a project. |
| 71 |
|
|
| 72 |
|
CREATE_SUBDIRS = NO |
| 73 |
|
|
| 74 |
+ |
# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII |
| 75 |
+ |
# characters to appear in the names of generated files. If set to NO, non-ASCII |
| 76 |
+ |
# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode |
| 77 |
+ |
# U+3044. |
| 78 |
+ |
# The default value is: NO. |
| 79 |
+ |
|
| 80 |
+ |
ALLOW_UNICODE_NAMES = NO |
| 81 |
+ |
|
| 82 |
|
# The OUTPUT_LANGUAGE tag is used to specify the language in which all |
| 83 |
|
# documentation generated by doxygen is written. Doxygen will use this |
| 84 |
|
# information to generate all constant output in the proper language. |
| 270 |
|
# extension. Doxygen has a built-in mapping, but you can override or extend it |
| 271 |
|
# using this tag. The format is ext=language, where ext is a file extension, and |
| 272 |
|
# language is one of the parsers supported by doxygen: IDL, Java, Javascript, |
| 273 |
< |
# C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make |
| 274 |
< |
# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C |
| 275 |
< |
# (default is Fortran), use: inc=Fortran f=C. |
| 273 |
> |
# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: |
| 274 |
> |
# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: |
| 275 |
> |
# Fortran. In the later case the parser tries to guess whether the code is fixed |
| 276 |
> |
# or free formatted code, this is the default for Fortran type files), VHDL. For |
| 277 |
> |
# instance to make doxygen treat .inc files as Fortran files (default is PHP), |
| 278 |
> |
# and .f files as C (default is Fortran), use: inc=Fortran f=C. |
| 279 |
|
# |
| 280 |
|
# Note For files without extension you can use no_extension as a placeholder. |
| 281 |
|
# |
| 681 |
|
# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. |
| 682 |
|
# For LaTeX the style of the bibliography can be controlled using |
| 683 |
|
# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the |
| 684 |
< |
# search path. Do not use file names with spaces, bibtex cannot handle them. See |
| 673 |
< |
# also \cite for info how to create references. |
| 684 |
> |
# search path. See also \cite for info how to create references. |
| 685 |
|
|
| 686 |
|
CITE_BIB_FILES = |
| 687 |
|
|
| 983 |
|
|
| 984 |
|
VERBATIM_HEADERS = YES |
| 985 |
|
|
| 986 |
+ |
# If the CLANG_ASSISTED_PARSING tag is set to YES, then doxygen will use the |
| 987 |
+ |
# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the |
| 988 |
+ |
# cost of reduced performance. This can be particularly helpful with template |
| 989 |
+ |
# rich C++ code for which doxygen's built-in parser lacks the necessary type |
| 990 |
+ |
# information. |
| 991 |
+ |
# Note: The availability of this option depends on whether or not doxygen was |
| 992 |
+ |
# compiled with the --with-libclang option. |
| 993 |
+ |
# The default value is: NO. |
| 994 |
+ |
|
| 995 |
+ |
CLANG_ASSISTED_PARSING = NO |
| 996 |
+ |
|
| 997 |
+ |
# If clang assisted parsing is enabled you can provide the compiler with command |
| 998 |
+ |
# line options that you would normally use when invoking the compiler. Note that |
| 999 |
+ |
# the include paths will already be set by doxygen for the files and directories |
| 1000 |
+ |
# specified with INPUT and INCLUDE_PATH. |
| 1001 |
+ |
# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. |
| 1002 |
+ |
|
| 1003 |
+ |
CLANG_OPTIONS = |
| 1004 |
+ |
|
| 1005 |
|
#--------------------------------------------------------------------------- |
| 1006 |
|
# Configuration options related to the alphabetical class index |
| 1007 |
|
#--------------------------------------------------------------------------- |
| 1094 |
|
|
| 1095 |
|
HTML_STYLESHEET = |
| 1096 |
|
|
| 1097 |
< |
# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user- |
| 1098 |
< |
# defined cascading style sheet that is included after the standard style sheets |
| 1097 |
> |
# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined |
| 1098 |
> |
# cascading style sheets that are included after the standard style sheets |
| 1099 |
|
# created by doxygen. Using this option one can overrule certain style aspects. |
| 1100 |
|
# This is preferred over using HTML_STYLESHEET since it does not replace the |
| 1101 |
|
# standard style sheet and is therefor more robust against future updates. |
| 1102 |
< |
# Doxygen will copy the style sheet file to the output directory. For an example |
| 1103 |
< |
# see the documentation. |
| 1102 |
> |
# Doxygen will copy the style sheet files to the output directory. |
| 1103 |
> |
# Note: The order of the extra stylesheet files is of importance (e.g. the last |
| 1104 |
> |
# stylesheet in the list overrules the setting of the previous ones in the |
| 1105 |
> |
# list). For an example see the documentation. |
| 1106 |
|
# This tag requires that the tag GENERATE_HTML is set to YES. |
| 1107 |
|
|
| 1108 |
|
HTML_EXTRA_STYLESHEET = |
| 1267 |
|
CHM_INDEX_ENCODING = |
| 1268 |
|
|
| 1269 |
|
# The BINARY_TOC flag controls whether a binary table of contents is generated ( |
| 1270 |
< |
# YES) or a normal table of contents ( NO) in the .chm file. |
| 1270 |
> |
# YES) or a normal table of contents ( NO) in the .chm file. Furthermore it |
| 1271 |
> |
# enables the Previous and Next buttons. |
| 1272 |
|
# The default value is: NO. |
| 1273 |
|
# This tag requires that the tag GENERATE_HTMLHELP is set to YES. |
| 1274 |
|
|
| 1508 |
|
|
| 1509 |
|
# When the SERVER_BASED_SEARCH tag is enabled the search engine will be |
| 1510 |
|
# implemented using a web server instead of a web client using Javascript. There |
| 1511 |
< |
# are two flavours of web server based searching depending on the |
| 1512 |
< |
# EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for |
| 1513 |
< |
# searching and an index file used by the script. When EXTERNAL_SEARCH is |
| 1514 |
< |
# enabled the indexing and searching needs to be provided by external tools. See |
| 1515 |
< |
# the section "External Indexing and Searching" for details. |
| 1511 |
> |
# are two flavors of web server based searching depending on the EXTERNAL_SEARCH |
| 1512 |
> |
# setting. When disabled, doxygen will generate a PHP script for searching and |
| 1513 |
> |
# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing |
| 1514 |
> |
# and searching needs to be provided by external tools. See the section |
| 1515 |
> |
# "External Indexing and Searching" for details. |
| 1516 |
|
# The default value is: NO. |
| 1517 |
|
# This tag requires that the tag SEARCHENGINE is set to YES. |
| 1518 |
|
|
| 1640 |
|
# |
| 1641 |
|
# Note: Only use a user-defined header if you know what you are doing! The |
| 1642 |
|
# following commands have a special meaning inside the header: $title, |
| 1643 |
< |
# $datetime, $date, $doxygenversion, $projectname, $projectnumber. Doxygen will |
| 1644 |
< |
# replace them by respectively the title of the page, the current date and time, |
| 1645 |
< |
# only the current date, the version number of doxygen, the project name (see |
| 1646 |
< |
# PROJECT_NAME), or the project number (see PROJECT_NUMBER). |
| 1643 |
> |
# $datetime, $date, $doxygenversion, $projectname, $projectnumber, |
| 1644 |
> |
# $projectbrief, $projectlogo. Doxygen will replace $title with the empy string, |
| 1645 |
> |
# for the replacement values of the other commands the user is refered to |
| 1646 |
> |
# HTML_HEADER. |
| 1647 |
|
# This tag requires that the tag GENERATE_LATEX is set to YES. |
| 1648 |
|
|
| 1649 |
|
LATEX_HEADER = |
| 1650 |
|
|
| 1651 |
|
# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the |
| 1652 |
|
# generated LaTeX document. The footer should contain everything after the last |
| 1653 |
< |
# chapter. If it is left blank doxygen will generate a standard footer. |
| 1653 |
> |
# chapter. If it is left blank doxygen will generate a standard footer. See |
| 1654 |
> |
# LATEX_HEADER for more information on how to generate a default footer and what |
| 1655 |
> |
# special commands can be used inside the footer. |
| 1656 |
|
# |
| 1657 |
|
# Note: Only use a user-defined footer if you know what you are doing! |
| 1658 |
|
# This tag requires that the tag GENERATE_LATEX is set to YES. |
| 1676 |
|
|
| 1677 |
|
PDF_HYPERLINKS = YES |
| 1678 |
|
|
| 1679 |
< |
# If the LATEX_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate |
| 1679 |
> |
# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate |
| 1680 |
|
# the PDF file directly from the LaTeX files. Set this option to YES to get a |
| 1681 |
|
# higher quality PDF documentation. |
| 1682 |
|
# The default value is: YES. |
| 1802 |
|
|
| 1803 |
|
MAN_EXTENSION = .3 |
| 1804 |
|
|
| 1805 |
+ |
# The MAN_SUBDIR tag determines the name of the directory created within |
| 1806 |
+ |
# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by |
| 1807 |
+ |
# MAN_EXTENSION with the initial . removed. |
| 1808 |
+ |
# This tag requires that the tag GENERATE_MAN is set to YES. |
| 1809 |
+ |
|
| 1810 |
+ |
MAN_SUBDIR = |
| 1811 |
+ |
|
| 1812 |
|
# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it |
| 1813 |
|
# will generate one additional man file for each entity documented in the real |
| 1814 |
|
# man page(s). These additional files only source the real man page, but without |
| 1836 |
|
|
| 1837 |
|
XML_OUTPUT = xml |
| 1838 |
|
|
| 1797 |
– |
# The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a |
| 1798 |
– |
# validating XML parser to check the syntax of the XML files. |
| 1799 |
– |
# This tag requires that the tag GENERATE_XML is set to YES. |
| 1800 |
– |
|
| 1801 |
– |
XML_SCHEMA = |
| 1802 |
– |
|
| 1803 |
– |
# The XML_DTD tag can be used to specify a XML DTD, which can be used by a |
| 1804 |
– |
# validating XML parser to check the syntax of the XML files. |
| 1805 |
– |
# This tag requires that the tag GENERATE_XML is set to YES. |
| 1806 |
– |
|
| 1807 |
– |
XML_DTD = |
| 1808 |
– |
|
| 1839 |
|
# If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program |
| 1840 |
|
# listings (including syntax highlighting and cross-referencing information) to |
| 1841 |
|
# the XML output. Note that enabling this will significantly increase the size |
| 1863 |
|
|
| 1864 |
|
DOCBOOK_OUTPUT = docbook |
| 1865 |
|
|
| 1866 |
+ |
# If the DOCBOOK_PROGRAMLISTING tag is set to YES doxygen will include the |
| 1867 |
+ |
# program listings (including syntax highlighting and cross-referencing |
| 1868 |
+ |
# information) to the DOCBOOK output. Note that enabling this will significantly |
| 1869 |
+ |
# increase the size of the DOCBOOK output. |
| 1870 |
+ |
# The default value is: NO. |
| 1871 |
+ |
# This tag requires that the tag GENERATE_DOCBOOK is set to YES. |
| 1872 |
+ |
|
| 1873 |
+ |
DOCBOOK_PROGRAMLISTING = NO |
| 1874 |
+ |
|
| 1875 |
|
#--------------------------------------------------------------------------- |
| 1876 |
|
# Configuration options for the AutoGen Definitions output |
| 1877 |
|
#--------------------------------------------------------------------------- |
| 1991 |
|
EXPAND_AS_DEFINED = |
| 1992 |
|
|
| 1993 |
|
# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will |
| 1994 |
< |
# remove all refrences to function-like macros that are alone on a line, have an |
| 1995 |
< |
# all uppercase name, and do not end with a semicolon. Such function macros are |
| 1996 |
< |
# typically used for boiler-plate code, and will confuse the parser if not |
| 1994 |
> |
# remove all references to function-like macros that are alone on a line, have |
| 1995 |
> |
# an all uppercase name, and do not end with a semicolon. Such function macros |
| 1996 |
> |
# are typically used for boiler-plate code, and will confuse the parser if not |
| 1997 |
|
# removed. |
| 1998 |
|
# The default value is: YES. |
| 1999 |
|
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. |
| 2013 |
|
# where loc1 and loc2 can be relative or absolute paths or URLs. See the |
| 2014 |
|
# section "Linking to external documentation" for more information about the use |
| 2015 |
|
# of tag files. |
| 2016 |
< |
# Note: Each tag file must have an unique name (where the name does NOT include |
| 2016 |
> |
# Note: Each tag file must have a unique name (where the name does NOT include |
| 2017 |
|
# the path). If a tag file is not located in the directory in which doxygen is |
| 2018 |
|
# run, you must also specify the path to the tagfile here. |
| 2019 |
|
|
| 2091 |
|
# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent |
| 2092 |
|
# Bell Labs. The other options in this section have no effect if this option is |
| 2093 |
|
# set to NO |
| 2094 |
< |
# The default value is: NO. |
| 2094 |
> |
# The default value is: YES. |
| 2095 |
|
|
| 2096 |
|
HAVE_DOT = YES |
| 2097 |
|
|
| 2105 |
|
|
| 2106 |
|
DOT_NUM_THREADS = 0 |
| 2107 |
|
|
| 2108 |
< |
# When you want a differently looking font n the dot files that doxygen |
| 2108 |
> |
# When you want a differently looking font in the dot files that doxygen |
| 2109 |
|
# generates you can specify the font name using DOT_FONTNAME. You need to make |
| 2110 |
|
# sure dot is able to find the font, which can be done by putting it in a |
| 2111 |
|
# standard location or by setting the DOTFONTPATH environment variable or by |
| 2243 |
|
# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order |
| 2244 |
|
# to make the SVG files visible in IE 9+ (other browsers do not have this |
| 2245 |
|
# requirement). |
| 2246 |
< |
# Possible values are: png, jpg, gif and svg. |
| 2246 |
> |
# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, |
| 2247 |
> |
# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, |
| 2248 |
> |
# gif:cairo:gd, gif:gd, gif:gd:gd and svg. |
| 2249 |
|
# The default value is: png. |
| 2250 |
|
# This tag requires that the tag HAVE_DOT is set to YES. |
| 2251 |
|
|
| 2288 |
|
|
| 2289 |
|
DIAFILE_DIRS = |
| 2290 |
|
|
| 2291 |
+ |
# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the |
| 2292 |
+ |
# path where java can find the plantuml.jar file. If left blank, it is assumed |
| 2293 |
+ |
# PlantUML is not used or called during a preprocessing step. Doxygen will |
| 2294 |
+ |
# generate a warning when it encounters a \startuml command in this case and |
| 2295 |
+ |
# will not generate output for the diagram. |
| 2296 |
+ |
# This tag requires that the tag HAVE_DOT is set to YES. |
| 2297 |
+ |
|
| 2298 |
+ |
PLANTUML_JAR_PATH = |
| 2299 |
+ |
|
| 2300 |
|
# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes |
| 2301 |
|
# that will be shown in the graph. If the number of nodes in a graph becomes |
| 2302 |
|
# larger than this value, doxygen will truncate the graph, which is visualized |