source: trunk/doc/doxygen.config.in

Last change on this file was 4252, checked in by Peter, 11 months ago

merge 0.20 release into trunk

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 36.3 KB
Line 
1# $Id: doxygen.config.in 4252 2022-11-18 02:54:04Z peter $
2
3# Copyright (C) 2003, 2004 Jari Häkkinen
4# Copyright (C) 2005 Peter Johansson
5# Copyright (C) 2006, 2007 Jari Häkkinen, Peter Johansson
6# Copyright (C) 2008 Jari Häkkinen, Peter Johansson, Markus Ringnér
7# Copyright (C) 2009, 2010, 2012, 2014, 2017, 2018, 2020 Peter Johansson
8#
9# This file is part of the yat library, http://dev.thep.lu.se/yat
10#
11# The yat library is free software; you can redistribute it
12# and/or modify it under the terms of the GNU General Public License as
13# published by the Free Software Foundation; either version 3 of the
14# License, or (at your option) any later version.
15#
16# The yat library is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19# General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with yat. If not, see <http://www.gnu.org/licenses/>.
23#
24
25# Doxyfile 1.2.13.1
26
27# This file describes the settings to be used by the documentation system
28# doxygen (www.doxygen.org) for a project
29#
30# All text after a hash (#) is considered a comment and will be ignored
31# The format is:
32#       TAG = value [value, ...]
33# For lists items can also be appended using:
34#       TAG += value [value, ...]
35# Values that contain spaces should be placed between quotes (" ")
36
37#---------------------------------------------------------------------------
38# General configuration options
39#---------------------------------------------------------------------------
40
41# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
42# by quotes) that should identify the project.
43
44PROJECT_NAME           = "@PACKAGE@"
45
46# The PROJECT_NUMBER tag can be used to enter a project or revision number.
47# This could be handy for archiving the generated documentation or
48# if some version control system is used.
49
50PROJECT_NUMBER         = @PACKAGE_VERSION@
51
52# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
53# base path where the generated documentation will be put.
54# If a relative path is entered, it will be relative to the location
55# where doxygen was started. If left blank the current directory will be used.
56
57OUTPUT_DIRECTORY       = doc
58
59# The OUTPUT_LANGUAGE tag is used to specify the language in which all
60# documentation generated by doxygen is written. Doxygen will use this
61# information to generate all constant output in the proper language.
62# The default language is English, other supported languages are:
63# Brazilian, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French,
64# German, Greek, Hungarian, Italian, Japanese, Korean, Norwegian, Polish,
65# Portuguese, Romanian, Russian, Slovak, Slovene, Spanish and Swedish.
66
67OUTPUT_LANGUAGE        = English
68
69# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
70# documentation are documented, even if no documentation was available.
71# Private class members and static file members will be hidden unless
72# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
73
74EXTRACT_ALL            = NO
75
76# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
77# will be included in the documentation.
78
79EXTRACT_PRIVATE        = NO
80
81# If the EXTRACT_STATIC tag is set to YES all static members of a file
82# will be included in the documentation.
83
84EXTRACT_STATIC         = NO
85
86# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
87# defined locally in source files will be included in the documentation.
88# If set to NO only classes defined in header files are included.
89
90EXTRACT_LOCAL_CLASSES  = YES
91
92# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
93# undocumented classes that are normally visible in the class hierarchy.
94# If set to NO (the default) these class will be included in the various
95# overviews. This option has no effect if EXTRACT_ALL is enabled.
96
97HIDE_UNDOC_CLASSES     = NO
98
99# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
100# include brief member descriptions after the members that are listed in
101# the file and class documentation (similar to JavaDoc).
102# Set to NO to disable this.
103
104BRIEF_MEMBER_DESC      = YES
105
106# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
107# the brief description of a member or function before the detailed description.
108# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
109# brief descriptions will be completely suppressed.
110
111REPEAT_BRIEF           = YES
112
113# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
114# Doxygen will generate a detailed section even if there is only a brief
115# description.
116
117ALWAYS_DETAILED_SEC    = NO
118
119# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited
120# members of a class in the documentation of that class as if those members were
121# ordinary class members. Constructors, destructors and assignment operators of
122# the base classes will not be shown.
123
124INLINE_INHERITED_MEMB  = YES
125
126# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
127# path before files name in the file list and in the header files. If set
128# to NO the shortest path that makes the file name unique will be used.
129
130FULL_PATH_NAMES        = YES
131
132# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
133# can be used to strip a user defined part of the path. Stripping is
134# only done if one of the specified strings matches the left-hand part of
135# the path. It is allowed to use relative paths in the argument list.
136
137STRIP_FROM_PATH        = @canonical_abs_top_srcdir@
138
139# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
140# the path mentioned in the documentation of a class, which tells
141# the reader which header file to include in order to use a class.
142# If left blank only the name of the header file containing the class
143# definition is used. Otherwise one should specify the include paths that
144# are normally passed to the compiler using the -I flag.
145
146STRIP_FROM_INC_PATH    = @canonical_abs_top_srcdir@
147
148# The INTERNAL_DOCS tag determines if documentation
149# that is typed after a \internal command is included. If the tag is set
150# to NO (the default) then the documentation will be excluded.
151# Set it to YES to include the internal documentation.
152
153INTERNAL_DOCS          = YES
154
155# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
156# doxygen to hide any special comment blocks from generated source code
157# fragments. Normal C and C++ comments will always remain visible.
158
159STRIP_CODE_COMMENTS    = YES
160
161# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
162# file names in lower case letters. If set to YES upper case letters are also
163# allowed. This is useful if you have classes or files whose names only differ
164# in case and if your file system supports case sensitive file names. Windows
165# users are adviced to set this option to NO.
166
167CASE_SENSE_NAMES       = YES
168
169# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
170# (but less readable) file names. This can be useful is your file systems
171# doesn't support long names like on DOS, Mac, or CD-ROM.
172
173SHORT_NAMES            = NO
174
175# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
176# will show members with their full class and namespace scopes in the
177# documentation. If set to YES the scope will be hidden.
178
179HIDE_SCOPE_NAMES       = NO
180
181# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
182# will generate a verbatim copy of the header file for each class for
183# which an include is specified. Set to NO to disable this.
184
185VERBATIM_HEADERS       = YES
186
187# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
188# will put list of the files that are included by a file in the documentation
189# of that file.
190
191SHOW_INCLUDE_FILES     = YES
192
193# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
194# will interpret the first line (until the first dot) of a JavaDoc-style
195# comment as the brief description. If set to NO, the JavaDoc
196# comments  will behave just like the Qt-style comments (thus requiring an
197# explict @brief command for a brief description.
198
199JAVADOC_AUTOBRIEF      = NO
200
201# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
202# member inherits the documentation from any documented member that it
203# reimplements.
204
205INHERIT_DOCS           = YES
206
207# If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
208# is inserted in the documentation for inline members.
209
210INLINE_INFO            = YES
211
212# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
213# will sort the (detailed) documentation of file and class members
214# alphabetically by member name. If set to NO the members will appear in
215# declaration order.
216
217SORT_MEMBER_DOCS       = YES
218
219# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
220# sorted by fully-qualified names, including namespaces. If set to
221# NO (the default), the class list will be sorted only by class name,
222# not including the namespace part.
223# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
224# Note: This option applies only to the class list, not to the
225# alphabetical list.
226
227SORT_BY_SCOPE_NAME     = YES
228
229# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
230# tag is set to YES, then doxygen will reuse the documentation of the first
231# member in the group (if any) for the other members of the group. By default
232# all members of a group must be documented explicitly.
233
234DISTRIBUTE_GROUP_DOC   = YES
235
236# The TAB_SIZE tag can be used to set the number of spaces in a tab.
237# Doxygen uses this value to replace tabs by spaces in code fragments.
238
239TAB_SIZE               = 2
240
241# The GENERATE_TODOLIST tag can be used to enable (YES) or
242# disable (NO) the todo list. This list is created by putting \todo
243# commands in the documentation.
244
245GENERATE_TODOLIST      = NO
246
247# The GENERATE_TESTLIST tag can be used to enable (YES) or
248# disable (NO) the test list. This list is created by putting \test
249# commands in the documentation.
250
251GENERATE_TESTLIST      = NO
252
253# The GENERATE_BUGLIST tag can be used to enable (YES) or
254# disable (NO) the bug list. This list is created by putting \bug
255# commands in the documentation.
256
257GENERATE_BUGLIST       = NO
258
259# This tag can be used to specify a number of aliases that acts
260# as commands in the documentation. An alias has the form "name=value".
261# For example adding "sideeffect=\par Side Effects:\n" will allow you to
262# put the command \sideeffect (or @sideeffect) in the documentation, which
263# will result in a user defined paragraph with heading "Side Effects:".
264# You can put \n's in the value part of an alias to insert newlines.
265
266ALIASES += "input_iterator=<a href=\"https://www.boost.org/doc/libs/1_68_0/doc/html/InputIterator.html\">Input Iterator</a>"
267ALIASES += "output_iterator=<a href=\"https://www.boost.org/doc/libs/1_68_0/doc/html/OutputIterator.html\">Output Iterator</a>"
268ALIASES += "forward_iterator=<a href=\"https://www.boost.org/doc/libs/1_68_0/doc/html/ForwardIterator.html\">Forward Iterator</a>"
269ALIASES += "bidirectional_iterator=<a href=\"https://www.boost.org/doc/libs/1_68_0/doc/html/BidirectionalIterator.html\">Bidirectional Iterator</a>"
270ALIASES += "random_access_iterator=<a href=\"https://www.boost.org/doc/libs/1_68_0/doc/html/RandomAccessIterator.html\">Random Access Iterator</a>"
271ALIASES += "boost_url=http://www.boost.org/doc/libs/1_35_0/libs"
272
273# Links to boost's iterator concepts
274ALIASES += "readable_iterator=<a href=\"http://www.boost.org/doc/libs/1_55_0/libs/iterator/doc/new-iter-concepts.html#readable-iterators-lib-readable-iterators\">Readable Iterator</a>"
275
276ALIASES += "writable_iterator=<a href=\"http://www.boost.org/doc/libs/1_55_0/libs/iterator/doc/new-iter-concepts.html#writable-iterators-lib-writable-iterators\">Writable Iterator</a>"
277
278ALIASES += "swappable_iterator=<a href=\"http://www.boost.org/doc/libs/1_55_0/libs/iterator/doc/new-iter-concepts.html#swappable-iterators-lib-swappable-iterators\">Swappable Iterator</a>"
279
280ALIASES += "lvalue_iterator=<a href=\"http://www.boost.org/doc/libs/1_55_0/libs/iterator/doc/new-iter-concepts.html#lvalue-iterators-lib-lvalue-iterators\">Lvalue Iterator</a>"
281
282ALIASES += "incrementable_iterator=<a href=\"http://www.boost.org/doc/libs/1_55_0/libs/iterator/doc/new-iter-concepts.html#incrementable-iterators-lib-incrementable-iterators\">Incrementable Iterator</a>"
283ALIASES += "single_pass_iterator=<a href=\"http://www.boost.org/doc/libs/1_55_0/libs/iterator/doc/new-iter-concepts.html#single-pass-iterators-lib-single-pass-iterators\">Single Pass Iterator</a>"
284ALIASES += "forward_traversal_iterator=<a href=\"http://www.boost.org/doc/libs/1_55_0/libs/iterator/doc/new-iter-concepts.html#forward-traversal-iterators-lib-forward-traversal-iterators\">Forward Traversal Iterator</a>"
285ALIASES += "bidirectional_traversal_iterator=<a href=\"http://www.boost.org/doc/libs/1_55_0/libs/iterator/doc/new-iter-concepts.html#bidirectional-traversal-iterators-lib-bidirectional-traversal-iterators\">Bidirectional Traversal Iterator</a>"
286ALIASES += "random_access_traversal_iterator=<a href=\"http://www.boost.org/doc/libs/1_55_0/libs/iterator/doc/new-iter-concepts.html#random-access-traversal-iterators-lib-random-access-traversal-iterators\">Random Access Traversal Iterator</a>"
287
288ALIASES += "gsl_url=http://www.gnu.org/software/gsl/manual/html_node"
289
290# The ENABLED_SECTIONS tag can be used to enable conditional
291# documentation sections, marked by \if sectionname ... \endif.
292
293ENABLED_SECTIONS       =
294
295# The MAX_INITIALIZER_LINES tag determines the maximum number of lines
296# the initial value of a variable or define consist of for it to appear in
297# the documentation. If the initializer consists of more lines than specified
298# here it will be hidden. Use a value of 0 to hide initializers completely.
299# The appearance of the initializer of individual variables and defines in the
300# documentation can be controlled using \showinitializer or \hideinitializer
301# command in the documentation regardless of this setting.
302
303MAX_INITIALIZER_LINES  = 30
304
305# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
306# only. Doxygen will then generate output that is more tailored for C.
307# For instance some of the names that are used will be different. The list
308# of all members will be omitted, etc.
309
310OPTIMIZE_OUTPUT_FOR_C  = NO
311
312#---------------------------------------------------------------------------
313# configuration options related to warning and progress messages
314#---------------------------------------------------------------------------
315
316# The QUIET tag can be used to turn on/off the messages that are generated
317# by doxygen. Possible values are YES and NO. If left blank NO is used.
318
319QUIET                  = NO
320
321# The WARNINGS tag can be used to turn on/off the warning messages that are
322# generated by doxygen. Possible values are YES and NO. If left blank
323# NO is used.
324
325WARNINGS               = YES
326
327# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
328# for undocumented members. If EXTRACT_ALL is set to YES then this flag will
329# automatically be disabled.
330
331WARN_IF_UNDOCUMENTED   = YES
332
333# The WARN_FORMAT tag determines the format of the warning messages that
334# doxygen can produce. The string should contain the $file, $line, and $text
335# tags, which will be replaced by the file and line number from which the
336# warning originated and the warning text.
337
338WARN_FORMAT            =
339
340# The WARN_LOGFILE tag can be used to specify a file to which warning
341# and error messages should be written. If left blank the output is written
342# to stderr.
343
344WARN_LOGFILE           = doc/doxygen.error
345
346#---------------------------------------------------------------------------
347# configuration options related to the input files
348#---------------------------------------------------------------------------
349
350# The RECURSIVE tag can be used to turn specify whether or not subdirectories
351# should be searched for input files as well. Possible values are YES and NO.
352# If left blank NO is used.
353
354RECURSIVE              = YES
355
356# The EXCLUDE tag can be used to specify files and/or directories that should
357# excluded from the INPUT source files. This way you can easily exclude a
358# subdirectory from a directory tree whose root is specified with the INPUT tag.
359
360EXCLUDE                =
361
362# If the value of the INPUT tag contains directories, you can use the
363# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
364# certain files from those directories.
365
366EXCLUDE_PATTERNS       = .svn .deps .libs .svndigest
367
368# The EXAMPLE_PATH tag can be used to specify one or more files or
369# directories that contain example code fragments that are included (see
370# the \include command).
371
372EXAMPLE_PATH           =
373
374# If the value of the EXAMPLE_PATH tag contains directories, you can use the
375# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
376# and *.h) to filter out the source-files in the directories. If left
377# blank all files are included.
378
379EXAMPLE_PATTERNS       =
380
381# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
382# searched for input files to be used with the \include or \dontinclude
383# commands irrespective of the value of the RECURSIVE tag.
384# Possible values are YES and NO. If left blank NO is used.
385
386EXAMPLE_RECURSIVE      = NO
387
388# The IMAGE_PATH tag can be used to specify one or more files or
389# directories that contain image that are included in the documentation (see
390# the \image command).
391
392IMAGE_PATH             =
393
394# The INPUT_FILTER tag can be used to specify a program that doxygen should
395# invoke to filter for each input file. Doxygen will invoke the filter program
396# by executing (via popen()) the command <filter> <input-file>, where <filter>
397# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
398# input file. Doxygen will then use the output that the filter program writes
399# to standard output.
400
401INPUT_FILTER           =
402
403# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
404# INPUT_FILTER) will be used to filter the input files when producing source
405# files to browse.
406
407FILTER_SOURCE_FILES    = NO
408
409#---------------------------------------------------------------------------
410# configuration options related to source browsing
411#---------------------------------------------------------------------------
412
413# If the SOURCE_BROWSER tag is set to YES then a list of source files will
414# be generated. Documented entities will be cross-referenced with these sources.
415
416SOURCE_BROWSER         = NO
417
418# Setting the INLINE_SOURCES tag to YES will include the body
419# of functions and classes directly in the documentation.
420
421INLINE_SOURCES         = NO
422
423# If the REFERENCED_BY_RELATION tag is set to YES (the default)
424# then for each documented function all documented
425# functions referencing it will be listed.
426
427REFERENCED_BY_RELATION = NO
428
429# If the REFERENCES_RELATION tag is set to YES (the default)
430# then for each documented function all documented entities
431# called/used by that function will be listed.
432
433REFERENCES_RELATION    = NO
434
435#---------------------------------------------------------------------------
436# configuration options related to the alphabetical class index
437#---------------------------------------------------------------------------
438
439# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
440# of all compounds will be generated. Enable this if the project
441# contains a lot of classes, structs, unions or interfaces.
442
443ALPHABETICAL_INDEX     = YES
444
445# In case all classes in a project start with a common prefix, all
446# classes will be put under the same header in the alphabetical index.
447# The IGNORE_PREFIX tag can be used to specify one or more prefixes that
448# should be ignored while generating the index headers.
449
450IGNORE_PREFIX          =
451
452#---------------------------------------------------------------------------
453# configuration options related to the HTML output
454#---------------------------------------------------------------------------
455
456# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
457# generate HTML output.
458
459GENERATE_HTML          = YES
460
461# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
462# If a relative path is entered the value of OUTPUT_DIRECTORY will be
463# put in front of it. If left blank `html' will be used as the default path.
464
465HTML_OUTPUT            = html
466
467# The HTML_HEADER tag can be used to specify a personal HTML header for
468# each generated HTML page. If it is left blank doxygen will generate a
469# standard header.
470
471HTML_HEADER            =
472
473# The HTML_FOOTER tag can be used to specify a personal HTML footer for
474# each generated HTML page. If it is left blank doxygen will generate a
475# standard footer.
476
477HTML_FOOTER            = @abs_top_srcdir@/doc/footer.html
478
479# The HTML_STYLESHEET tag can be used to specify a user defined cascading
480# style sheet that is used by each HTML page. It can be used to
481# fine-tune the look of the HTML output. If the tag is left blank doxygen
482# will generate a default style sheet
483
484HTML_STYLESHEET        =
485
486# If the GENERATE_HTMLHELP tag is set to YES, additional index files
487# will be generated that can be used as input for tools like the
488# Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
489# of the generated HTML documentation.
490
491GENERATE_HTMLHELP      = NO
492
493# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
494# controls if a separate .chi index file is generated (YES) or that
495# it should be included in the master .chm file (NO).
496
497GENERATE_CHI           = NO
498
499# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
500# controls whether a binary table of contents is generated (YES) or a
501# normal table of contents (NO) in the .chm file.
502
503BINARY_TOC             = NO
504
505# The TOC_EXPAND flag can be set to YES to add extra items for group members
506# to the contents of the Html help documentation and to the tree view.
507
508TOC_EXPAND             = NO
509
510# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
511# top of each HTML page. The value NO (the default) enables the index and
512# the value YES disables it.
513
514DISABLE_INDEX          = NO
515
516# This tag can be used to set the number of enum values (range [1..20])
517# that doxygen will group on one line in the generated HTML documentation.
518
519ENUM_VALUES_PER_LINE   = 4
520
521# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
522# generated containing a tree-like index structure (just like the one that
523# is generated for HTML Help). For this to work a browser that supports
524# JavaScript and frames is required (for instance Mozilla, Netscape 4.0+,
525# or Internet explorer 4.0+). Note that for large projects the tree generation
526# can take a very long time. In such cases it is better to disable this feature.
527# Windows users are probably better off using the HTML help feature.
528
529GENERATE_TREEVIEW      = NO
530
531# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
532# used to set the initial width (in pixels) of the frame in which the tree
533# is shown.
534
535TREEVIEW_WIDTH         = 250
536
537#---------------------------------------------------------------------------
538# configuration options related to the LaTeX output
539#---------------------------------------------------------------------------
540
541# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
542# generate Latex output.
543
544GENERATE_LATEX         = NO
545
546# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
547# If a relative path is entered the value of OUTPUT_DIRECTORY will be
548# put in front of it. If left blank `latex' will be used as the default path.
549
550LATEX_OUTPUT           =
551
552# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
553# LaTeX documents. This may be useful for small projects and may help to
554# save some trees in general.
555
556COMPACT_LATEX          = NO
557
558# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
559# packages that should be included in the LaTeX output.
560
561EXTRA_PACKAGES         =
562
563# The LATEX_HEADER tag can be used to specify a personal LaTeX header for
564# the generated latex document. The header should contain everything until
565# the first chapter. If it is left blank doxygen will generate a
566# standard header. Notice: only use this tag if you know what you are doing!
567
568LATEX_HEADER           =
569
570# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
571# is prepared for conversion to pdf (using ps2pdf). The pdf file will
572# contain links (just like the HTML output) instead of page references
573# This makes the output suitable for online browsing using a pdf viewer.
574
575PDF_HYPERLINKS         = YES
576
577# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
578# plain latex in the generated Makefile. Set this option to YES to get a
579# higher quality PDF documentation.
580
581USE_PDFLATEX           = YES
582
583# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
584# command to the generated LaTeX files. This will instruct LaTeX to keep
585# running if errors occur, instead of asking the user for help.
586# This option is also used when generating formulas in HTML.
587
588LATEX_BATCHMODE        = NO
589
590#---------------------------------------------------------------------------
591# configuration options related to the RTF output
592#---------------------------------------------------------------------------
593
594# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
595# The RTF output is optimised for Word 97 and may not look very pretty with
596# other RTF readers or editors.
597
598GENERATE_RTF           = NO
599
600# The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
601# If a relative path is entered the value of OUTPUT_DIRECTORY will be
602# put in front of it. If left blank `rtf' will be used as the default path.
603
604RTF_OUTPUT             =
605
606# If the COMPACT_RTF tag is set to YES Doxygen generates more compact
607# RTF documents. This may be useful for small projects and may help to
608# save some trees in general.
609
610COMPACT_RTF            = NO
611
612# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
613# will contain hyperlink fields. The RTF file will
614# contain links (just like the HTML output) instead of page references.
615# This makes the output suitable for online browsing using WORD or other
616# programs which support those fields.
617# Note: wordpad (write) and others do not support links.
618
619RTF_HYPERLINKS         = NO
620
621# Load stylesheet definitions from file. Syntax is similar to doxygen's
622# config file, i.e. a series of assigments. You only have to provide
623# replacements, missing definitions are set to their default value.
624
625RTF_STYLESHEET_FILE    =
626
627# Set optional variables used in the generation of an rtf document.
628# Syntax is similar to doxygen's config file.
629
630RTF_EXTENSIONS_FILE    =
631
632#---------------------------------------------------------------------------
633# configuration options related to the man page output
634#---------------------------------------------------------------------------
635
636# If the GENERATE_MAN tag is set to YES (the default) Doxygen will
637# generate man pages
638
639GENERATE_MAN           = NO
640
641# The MAN_OUTPUT tag is used to specify where the man pages will be put.
642# If a relative path is entered the value of OUTPUT_DIRECTORY will be
643# put in front of it. If left blank `man' will be used as the default path.
644
645MAN_OUTPUT             =
646
647# The MAN_EXTENSION tag determines the extension that is added to
648# the generated man pages (default is the subroutine's section .3)
649
650MAN_EXTENSION          =
651
652# If the MAN_LINKS tag is set to YES and Doxygen generates man output,
653# then it will generate one additional man file for each entity
654# documented in the real man page(s). These additional files
655# only source the real man page, but without them the man command
656# would be unable to find the correct page. The default is NO.
657
658MAN_LINKS              = NO
659
660#---------------------------------------------------------------------------
661# configuration options related to the XML output
662#---------------------------------------------------------------------------
663
664# If the GENERATE_XML tag is set to YES Doxygen will
665# generate an XML file that captures the structure of
666# the code including all documentation. Note that this
667# feature is still experimental and incomplete at the
668# moment.
669
670GENERATE_XML           = NO
671
672#---------------------------------------------------------------------------
673# configuration options for the AutoGen Definitions output
674#---------------------------------------------------------------------------
675
676# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
677# generate an AutoGen Definitions (see autogen.sf.net) file
678# that captures the structure of the code including all
679# documentation. Note that this feature is still experimental
680# and incomplete at the moment.
681
682GENERATE_AUTOGEN_DEF   = NO
683
684#---------------------------------------------------------------------------
685# Configuration options related to the preprocessor
686#---------------------------------------------------------------------------
687
688# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
689# evaluate all C-preprocessor directives found in the sources and include
690# files.
691
692ENABLE_PREPROCESSING   = YES
693
694# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
695# names in the source code. If set to NO (the default) only conditional
696# compilation will be performed. Macro expansion can be done in a controlled
697# way by setting EXPAND_ONLY_PREDEF to YES.
698
699MACRO_EXPANSION        = YES
700
701# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
702# then the macro expansion is limited to the macros specified with the
703# PREDEFINED and EXPAND_AS_PREDEFINED tags.
704
705EXPAND_ONLY_PREDEF     = YES
706
707# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
708# in the INCLUDE_PATH (see below) will be search if a #include is found.
709
710SEARCH_INCLUDES        = YES
711
712# The INCLUDE_PATH tag can be used to specify one or more directories that
713# contain include files that are not input files but should be processed by
714# the preprocessor.
715
716INCLUDE_PATH           =
717
718# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
719# patterns (like *.h and *.hpp) to filter out the header-files in the
720# directories. If left blank, the patterns specified with FILE_PATTERNS will
721# be used.
722
723INCLUDE_FILE_PATTERNS  =
724
725# The PREDEFINED tag can be used to specify one or more macro names that
726# are defined before the preprocessor is started (similar to the -D option of
727# gcc). The argument of the tag is a list of macros of the form: name
728# or name=definition (no spaces). If the definition and the = are
729# omitted =1 is assumed.
730
731PREDEFINED             = YAT_DEPRECATE=
732
733# If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then
734# this tag can be used to specify a list of macro names that should be expanded.
735# The macro definition that is found in the sources will be used.
736# Use the PREDEFINED tag if you want to use a different macro definition.
737
738EXPAND_AS_DEFINED      =
739
740# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
741# doxygen's preprocessor will remove all function-like macros that are alone
742# on a line and do not end with a semicolon. Such function macros are typically
743# used for boiler-plate code, and will confuse the parser if not removed.
744
745SKIP_FUNCTION_MACROS   = YES
746
747#---------------------------------------------------------------------------
748# Configuration::addtions related to external references
749#---------------------------------------------------------------------------
750
751# The TAGFILES tag can be used to specify one or more tagfiles.
752
753TAGFILES               =
754
755# When a file name is specified after GENERATE_TAGFILE, doxygen will create
756# a tag file that is based on the input files it reads.
757
758GENERATE_TAGFILE       =
759
760# If the ALLEXTERNALS tag is set to YES all external classes will be listed
761# in the class index. If set to NO only the inherited external classes
762# will be listed.
763
764ALLEXTERNALS           = NO
765
766#---------------------------------------------------------------------------
767# Configuration options related to the dot tool
768#---------------------------------------------------------------------------
769
770# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
771# generate a inheritance diagram (in Html, RTF and LaTeX) for classes with base or
772# super classes. Setting the tag to NO turns the diagrams off. Note that this
773# option is superceded by the HAVE_DOT option below. This is only a fallback. It is
774# recommended to install and use dot, since it yield more powerful graphs.
775
776CLASS_DIAGRAMS         = YES
777
778# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
779# available from the path. This tool is part of Graphviz, a graph visualization
780# toolkit from AT&T and Lucent Bell Labs. The other options in this section
781# have no effect if this option is set to NO (the default)
782
783HAVE_DOT               = NO
784
785# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
786# will generate a graph for each documented class showing the direct and
787# indirect inheritance relations. Setting this tag to YES will force the
788# the CLASS_DIAGRAMS tag to NO.
789
790CLASS_GRAPH            = YES
791
792# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
793# will generate a graph for each documented class showing the direct and
794# indirect implementation dependencies (inheritance, containment, and
795# class references variables) of the class with other documented classes.
796
797COLLABORATION_GRAPH    = YES
798
799# If set to YES, the inheritance and collaboration graphs will show the
800# relations between templates and their instances.
801
802TEMPLATE_RELATIONS     = YES
803
804# If set to YES, the inheritance and collaboration graphs will hide
805# inheritance and usage relations if the target is undocumented
806# or is not a class.
807
808HIDE_UNDOC_RELATIONS   = YES
809
810# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
811# tags are set to YES then doxygen will generate a graph for each documented
812# file showing the direct and indirect include dependencies of the file with
813# other documented files.
814
815INCLUDE_GRAPH          = YES
816
817# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
818# HAVE_DOT tags are set to YES then doxygen will generate a graph for each
819# documented header file showing the documented files that directly or
820# indirectly include this file.
821
822INCLUDED_BY_GRAPH      = YES
823
824# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
825# will graphical hierarchy of all classes instead of a textual one.
826
827GRAPHICAL_HIERARCHY    = YES
828
829# The tag DOT_PATH can be used to specify the path where the dot tool can be
830# found. If left blank, it is assumed the dot tool can be found on the path.
831
832DOT_PATH               =
833
834# The DOTFILE_DIRS tag can be used to specify one or more directories that
835# contain dot files that are included in the documentation (see the
836# \dotfile command).
837
838DOTFILE_DIRS           =
839
840# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
841# generate a legend page explaining the meaning of the various boxes and
842# arrows in the dot generated graphs.
843
844GENERATE_LEGEND        = YES
845
846# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
847# remove the intermedate dot files that are used to generate
848# the various graphs.
849
850DOT_CLEANUP            = YES
851
852#---------------------------------------------------------------------------
853# Configuration::addtions related to the search engine
854#---------------------------------------------------------------------------
855
856# The SEARCHENGINE tag specifies whether or not a search engine should be
857# used. If set to NO the values of all tags below this one will be ignored.
858
859SEARCHENGINE           = NO
860
861# The CGI_NAME tag should be the name of the CGI script that
862# starts the search engine (doxysearch) with the correct parameters.
863# A script with this name will be generated by doxygen.
864
865#CGI_NAME               =
866
867# The CGI_URL tag should be the absolute URL to the directory where the
868# cgi binaries are located. See the documentation of your http daemon for
869# details.
870
871#CGI_URL                =
872
873# The DOC_URL tag should be the absolute URL to the directory where the
874# documentation is located. If left blank the absolute path to the
875# documentation, with file:// prepended to it, will be used.
876
877#DOC_URL                =
878
879# The DOC_ABSPATH tag should be the absolute path to the directory where the
880# documentation is located. If left blank the directory on the local machine
881# will be used.
882
883#DOC_ABSPATH            =
884
885# The BIN_ABSPATH tag must point to the directory where the doxysearch binary
886# is installed.
887
888#BIN_ABSPATH            =
889
890# The EXT_DOC_PATHS tag can be used to specify one or more paths to
891# documentation generated for other projects. This allows doxysearch to search
892# the documentation for these projects as well.
893
894#EXT_DOC_PATHS          =
Note: See TracBrowser for help on using the repository browser.