@@ -1956,182 +1956,7 @@ EXTRA_SEARCH_MAPPINGS =
19561956# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
19571957# The default value is: YES.
19581958
1959- GENERATE_LATEX = YES
1960-
1961- # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
1962- # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1963- # it.
1964- # The default directory is: latex.
1965- # This tag requires that the tag GENERATE_LATEX is set to YES.
1966-
1967- LATEX_OUTPUT = latex
1968-
1969- # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
1970- # invoked.
1971- #
1972- # Note that when not enabling USE_PDFLATEX the default is latex when enabling
1973- # USE_PDFLATEX the default is pdflatex and when in the later case latex is
1974- # chosen this is overwritten by pdflatex. For specific output languages the
1975- # default can have been set differently, this depends on the implementation of
1976- # the output language.
1977- # This tag requires that the tag GENERATE_LATEX is set to YES.
1978-
1979- LATEX_CMD_NAME =
1980-
1981- # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
1982- # index for LaTeX.
1983- # Note: This tag is used in the Makefile / make.bat.
1984- # See also: LATEX_MAKEINDEX_CMD for the part in the generated output file
1985- # (.tex).
1986- # The default file is: makeindex.
1987- # This tag requires that the tag GENERATE_LATEX is set to YES.
1988-
1989- MAKEINDEX_CMD_NAME = makeindex
1990-
1991- # The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to
1992- # generate index for LaTeX. In case there is no backslash (\) as first character
1993- # it will be automatically added in the LaTeX code.
1994- # Note: This tag is used in the generated output file (.tex).
1995- # See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat.
1996- # The default value is: makeindex.
1997- # This tag requires that the tag GENERATE_LATEX is set to YES.
1998-
1999- LATEX_MAKEINDEX_CMD = makeindex
2000-
2001- # If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX
2002- # documents. This may be useful for small projects and may help to save some
2003- # trees in general.
2004- # The default value is: NO.
2005- # This tag requires that the tag GENERATE_LATEX is set to YES.
2006-
2007- COMPACT_LATEX = NO
2008-
2009- # The PAPER_TYPE tag can be used to set the paper type that is used by the
2010- # printer.
2011- # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
2012- # 14 inches) and executive (7.25 x 10.5 inches).
2013- # The default value is: a4.
2014- # This tag requires that the tag GENERATE_LATEX is set to YES.
2015-
2016- PAPER_TYPE = a4
2017-
2018- # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
2019- # that should be included in the LaTeX output. The package can be specified just
2020- # by its name or with the correct syntax as to be used with the LaTeX
2021- # \usepackage command. To get the times font for instance you can specify :
2022- # EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}
2023- # To use the option intlimits with the amsmath package you can specify:
2024- # EXTRA_PACKAGES=[intlimits]{amsmath}
2025- # If left blank no extra packages will be included.
2026- # This tag requires that the tag GENERATE_LATEX is set to YES.
2027-
2028- EXTRA_PACKAGES =
2029-
2030- # The LATEX_HEADER tag can be used to specify a user-defined LaTeX header for
2031- # the generated LaTeX document. The header should contain everything until the
2032- # first chapter. If it is left blank doxygen will generate a standard header. It
2033- # is highly recommended to start with a default header using
2034- # doxygen -w latex new_header.tex new_footer.tex new_stylesheet.sty
2035- # and then modify the file new_header.tex. See also section "Doxygen usage" for
2036- # information on how to generate the default header that doxygen normally uses.
2037- #
2038- # Note: Only use a user-defined header if you know what you are doing!
2039- # Note: The header is subject to change so you typically have to regenerate the
2040- # default header when upgrading to a newer version of doxygen. The following
2041- # commands have a special meaning inside the header (and footer): For a
2042- # description of the possible markers and block names see the documentation.
2043- # This tag requires that the tag GENERATE_LATEX is set to YES.
2044-
2045- LATEX_HEADER =
2046-
2047- # The LATEX_FOOTER tag can be used to specify a user-defined LaTeX footer for
2048- # the generated LaTeX document. The footer should contain everything after the
2049- # last chapter. If it is left blank doxygen will generate a standard footer. See
2050- # LATEX_HEADER for more information on how to generate a default footer and what
2051- # special commands can be used inside the footer. See also section "Doxygen
2052- # usage" for information on how to generate the default footer that doxygen
2053- # normally uses. Note: Only use a user-defined footer if you know what you are
2054- # doing!
2055- # This tag requires that the tag GENERATE_LATEX is set to YES.
2056-
2057- LATEX_FOOTER =
2058-
2059- # The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined
2060- # LaTeX style sheets that are included after the standard style sheets created
2061- # by doxygen. Using this option one can overrule certain style aspects. Doxygen
2062- # will copy the style sheet files to the output directory.
2063- # Note: The order of the extra style sheet files is of importance (e.g. the last
2064- # style sheet in the list overrules the setting of the previous ones in the
2065- # list).
2066- # This tag requires that the tag GENERATE_LATEX is set to YES.
2067-
2068- LATEX_EXTRA_STYLESHEET =
2069-
2070- # The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
2071- # other source files which should be copied to the LATEX_OUTPUT output
2072- # directory. Note that the files will be copied as-is; there are no commands or
2073- # markers available.
2074- # This tag requires that the tag GENERATE_LATEX is set to YES.
2075-
2076- LATEX_EXTRA_FILES =
2077-
2078- # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
2079- # prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
2080- # contain links (just like the HTML output) instead of page references. This
2081- # makes the output suitable for online browsing using a PDF viewer.
2082- # The default value is: YES.
2083- # This tag requires that the tag GENERATE_LATEX is set to YES.
2084-
2085- PDF_HYPERLINKS = YES
2086-
2087- # If the USE_PDFLATEX tag is set to YES, doxygen will use the engine as
2088- # specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX
2089- # files. Set this option to YES, to get a higher quality PDF documentation.
2090- #
2091- # See also section LATEX_CMD_NAME for selecting the engine.
2092- # The default value is: YES.
2093- # This tag requires that the tag GENERATE_LATEX is set to YES.
2094-
2095- USE_PDFLATEX = YES
2096-
2097- # The LATEX_BATCHMODE tag signals the behavior of LaTeX in case of an error.
2098- # Possible values are: NO same as ERROR_STOP, YES same as BATCH, BATCH In batch
2099- # mode nothing is printed on the terminal, errors are scrolled as if <return> is
2100- # hit at every error; missing files that TeX tries to input or request from
2101- # keyboard input (\read on a not open input stream) cause the job to abort,
2102- # NON_STOP In nonstop mode the diagnostic message will appear on the terminal,
2103- # but there is no possibility of user interaction just like in batch mode,
2104- # SCROLL In scroll mode, TeX will stop only for missing files to input or if
2105- # keyboard input is necessary and ERROR_STOP In errorstop mode, TeX will stop at
2106- # each error, asking for user intervention.
2107- # The default value is: NO.
2108- # This tag requires that the tag GENERATE_LATEX is set to YES.
2109-
2110- LATEX_BATCHMODE = NO
2111-
2112- # If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
2113- # index chapters (such as File Index, Compound Index, etc.) in the output.
2114- # The default value is: NO.
2115- # This tag requires that the tag GENERATE_LATEX is set to YES.
2116-
2117- LATEX_HIDE_INDICES = NO
2118-
2119- # The LATEX_BIB_STYLE tag can be used to specify the style to use for the
2120- # bibliography, e.g. plainnat, or ieeetr. See
2121- # https://en.wikipedia.org/wiki/BibTeX and \cite for more info.
2122- # The default value is: plain.
2123- # This tag requires that the tag GENERATE_LATEX is set to YES.
2124-
2125- LATEX_BIB_STYLE = plain
2126-
2127- # The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute)
2128- # path from which the emoji images will be read. If a relative path is entered,
2129- # it will be relative to the LATEX_OUTPUT directory. If left blank the
2130- # LATEX_OUTPUT directory will be used.
2131- # This tag requires that the tag GENERATE_LATEX is set to YES.
2132-
2133- LATEX_EMOJI_DIRECTORY =
2134-
1959+ GENERATE_LATEX = NO
21351960#---------------------------------------------------------------------------
21361961# Configuration options related to the RTF output
21371962#---------------------------------------------------------------------------
@@ -2143,51 +1968,6 @@ LATEX_EMOJI_DIRECTORY =
21431968
21441969GENERATE_RTF = NO
21451970
2146- # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
2147- # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
2148- # it.
2149- # The default directory is: rtf.
2150- # This tag requires that the tag GENERATE_RTF is set to YES.
2151-
2152- RTF_OUTPUT = rtf
2153-
2154- # If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF
2155- # documents. This may be useful for small projects and may help to save some
2156- # trees in general.
2157- # The default value is: NO.
2158- # This tag requires that the tag GENERATE_RTF is set to YES.
2159-
2160- COMPACT_RTF = NO
2161-
2162- # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
2163- # contain hyperlink fields. The RTF file will contain links (just like the HTML
2164- # output) instead of page references. This makes the output suitable for online
2165- # browsing using Word or some other Word compatible readers that support those
2166- # fields.
2167- #
2168- # Note: WordPad (write) and others do not support links.
2169- # The default value is: NO.
2170- # This tag requires that the tag GENERATE_RTF is set to YES.
2171-
2172- RTF_HYPERLINKS = NO
2173-
2174- # Load stylesheet definitions from file. Syntax is similar to doxygen's
2175- # configuration file, i.e. a series of assignments. You only have to provide
2176- # replacements, missing definitions are set to their default value.
2177- #
2178- # See also section "Doxygen usage" for information on how to generate the
2179- # default style sheet that doxygen normally uses.
2180- # This tag requires that the tag GENERATE_RTF is set to YES.
2181-
2182- RTF_STYLESHEET_FILE =
2183-
2184- # Set optional variables used in the generation of an RTF document. Syntax is
2185- # similar to doxygen's configuration file. A template extensions file can be
2186- # generated using doxygen -e rtf extensionFile.
2187- # This tag requires that the tag GENERATE_RTF is set to YES.
2188-
2189- RTF_EXTENSIONS_FILE =
2190-
21911971#---------------------------------------------------------------------------
21921972# Configuration options related to the man page output
21931973#---------------------------------------------------------------------------
@@ -2198,40 +1978,6 @@ RTF_EXTENSIONS_FILE =
21981978
21991979GENERATE_MAN = NO
22001980
2201- # The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
2202- # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
2203- # it. A directory man3 will be created inside the directory specified by
2204- # MAN_OUTPUT.
2205- # The default directory is: man.
2206- # This tag requires that the tag GENERATE_MAN is set to YES.
2207-
2208- MAN_OUTPUT = man
2209-
2210- # The MAN_EXTENSION tag determines the extension that is added to the generated
2211- # man pages. In case the manual section does not start with a number, the number
2212- # 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
2213- # optional.
2214- # The default value is: .3.
2215- # This tag requires that the tag GENERATE_MAN is set to YES.
2216-
2217- MAN_EXTENSION = .3
2218-
2219- # The MAN_SUBDIR tag determines the name of the directory created within
2220- # MAN_OUTPUT in which the man pages are placed. If defaults to man followed by
2221- # MAN_EXTENSION with the initial . removed.
2222- # This tag requires that the tag GENERATE_MAN is set to YES.
2223-
2224- MAN_SUBDIR =
2225-
2226- # If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
2227- # will generate one additional man file for each entity documented in the real
2228- # man page(s). These additional files only source the real man page, but without
2229- # them the man command would be unable to find the correct page.
2230- # The default value is: NO.
2231- # This tag requires that the tag GENERATE_MAN is set to YES.
2232-
2233- MAN_LINKS = NO
2234-
22351981#---------------------------------------------------------------------------
22361982# Configuration options related to the XML output
22371983#---------------------------------------------------------------------------
@@ -2242,29 +1988,6 @@ MAN_LINKS = NO
22421988
22431989GENERATE_XML = NO
22441990
2245- # The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
2246- # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
2247- # it.
2248- # The default directory is: xml.
2249- # This tag requires that the tag GENERATE_XML is set to YES.
2250-
2251- XML_OUTPUT = xml
2252-
2253- # If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program
2254- # listings (including syntax highlighting and cross-referencing information) to
2255- # the XML output. Note that enabling this will significantly increase the size
2256- # of the XML output.
2257- # The default value is: YES.
2258- # This tag requires that the tag GENERATE_XML is set to YES.
2259-
2260- XML_PROGRAMLISTING = YES
2261-
2262- # If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include
2263- # namespace members in file scope as well, matching the HTML output.
2264- # The default value is: NO.
2265- # This tag requires that the tag GENERATE_XML is set to YES.
2266-
2267- XML_NS_MEMB_FILE_SCOPE = NO
22681991
22691992#---------------------------------------------------------------------------
22701993# Configuration options related to the DOCBOOK output
@@ -2276,13 +1999,6 @@ XML_NS_MEMB_FILE_SCOPE = NO
22761999
22772000GENERATE_DOCBOOK = NO
22782001
2279- # The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
2280- # If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
2281- # front of it.
2282- # The default directory is: docbook.
2283- # This tag requires that the tag GENERATE_DOCBOOK is set to YES.
2284-
2285- DOCBOOK_OUTPUT = docbook
22862002
22872003#---------------------------------------------------------------------------
22882004# Configuration options for the AutoGen Definitions output
@@ -2306,22 +2022,6 @@ GENERATE_AUTOGEN_DEF = NO
23062022
23072023GENERATE_SQLITE3 = NO
23082024
2309- # The SQLITE3_OUTPUT tag is used to specify where the Sqlite3 database will be
2310- # put. If a relative path is entered the value of OUTPUT_DIRECTORY will be put
2311- # in front of it.
2312- # The default directory is: sqlite3.
2313- # This tag requires that the tag GENERATE_SQLITE3 is set to YES.
2314-
2315- SQLITE3_OUTPUT = sqlite3
2316-
2317- # The SQLITE3_RECREATE_DB tag is set to YES, the existing doxygen_sqlite3.db
2318- # database file will be recreated with each doxygen run. If set to NO, doxygen
2319- # will warn if a database file is already found and not modify it.
2320- # The default value is: YES.
2321- # This tag requires that the tag GENERATE_SQLITE3 is set to YES.
2322-
2323- SQLITE3_RECREATE_DB = YES
2324-
23252025#---------------------------------------------------------------------------
23262026# Configuration options related to the Perl module output
23272027#---------------------------------------------------------------------------
@@ -2334,32 +2034,6 @@ SQLITE3_RECREATE_DB = YES
23342034
23352035GENERATE_PERLMOD = NO
23362036
2337- # If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary
2338- # Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
2339- # output from the Perl module output.
2340- # The default value is: NO.
2341- # This tag requires that the tag GENERATE_PERLMOD is set to YES.
2342-
2343- PERLMOD_LATEX = NO
2344-
2345- # If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely
2346- # formatted so it can be parsed by a human reader. This is useful if you want to
2347- # understand what is going on. On the other hand, if this tag is set to NO, the
2348- # size of the Perl module output will be much smaller and Perl will parse it
2349- # just the same.
2350- # The default value is: YES.
2351- # This tag requires that the tag GENERATE_PERLMOD is set to YES.
2352-
2353- PERLMOD_PRETTY = YES
2354-
2355- # The names of the make variables in the generated doxyrules.make file are
2356- # prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
2357- # so different doxyrules.make files included by the same Makefile don't
2358- # overwrite each other's variables.
2359- # This tag requires that the tag GENERATE_PERLMOD is set to YES.
2360-
2361- PERLMOD_MAKEVAR_PREFIX =
2362-
23632037#---------------------------------------------------------------------------
23642038# Configuration options related to the preprocessor
23652039#---------------------------------------------------------------------------
0 commit comments