* Added a new paramater to wfDebugLog()
[lhc/web/wiklou.git] / maintenance / mwdoxygen.cfg
1 # Doxyfile 1.4.3-20050530
2
3 #
4 # NOTE: this configuration assume you are running doxygen from the
5 # mediawiki root directory. For example:
6 # ~/dev/mediawiki-HEAD/
7 # The easiest way is to get in the maintenance directory and then:
8 # make doxydoc
9 #
10 # Paths visited are configured by the INPUT variable (around line 450)
11
12 # This file describes the settings to be used by the documentation system
13 # doxygen (www.doxygen.org) for the MediaWiki project
14 #
15 # All text after a hash (#) is considered a comment and will be ignored
16 # The format is:
17 # TAG = value [value, ...]
18 # For lists items can also be appended using:
19 # TAG += value [value, ...]
20 # Values that contain spaces should be placed between quotes (" ")
21
22 #---------------------------------------------------------------------------
23 # Project related configuration options
24 #---------------------------------------------------------------------------
25
26 PROJECT_NAME = MediaWiki
27 PROJECT_NUMBER = 1.6-cvs
28 OUTPUT_DIRECTORY = docs
29
30 # 2 levels directories, create 4096 of them!
31 CREATE_SUBDIRS = NO
32
33 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
34 # documentation generated by doxygen is written. Doxygen will use this
35 # information to generate all constant output in the proper language.
36 # The default language is English, other supported languages are:
37 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish,
38 # Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese,
39 # Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian,
40 # Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish,
41 # Swedish, and Ukrainian.
42
43 OUTPUT_LANGUAGE = English
44
45 USE_WINDOWS_ENCODING = NO
46
47 BRIEF_MEMBER_DESC = YES
48
49 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
50 # the brief description of a member or function before the detailed description.
51 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
52 # brief descriptions will be completely suppressed.
53 REPEAT_BRIEF = YES
54
55 # This tag implements a quasi-intelligent brief description abbreviator
56 # that is used to form the text in various listings. Each string
57 # in this list, if found as the leading text of the brief description, will be
58 # stripped from the text and the result after processing the whole list, is
59 # used as the annotated text. Otherwise, the brief description is used as-is.
60 # If left blank, the following values are used ("$name" is automatically
61 # replaced with the name of the entity): "The $name class" "The $name widget"
62 # "The $name file" "is" "provides" "specifies" "contains"
63 # "represents" "a" "an" "the"
64 ABBREVIATE_BRIEF =
65
66 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
67 # Doxygen will generate a detailed section even if there is only a brief
68 # description.
69 ALWAYS_DETAILED_SEC = YES
70
71 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
72 # inherited members of a class in the documentation of that class as if those
73 # members were ordinary class members. Constructors, destructors and assignment
74 # operators of the base classes will not be shown.
75 INLINE_INHERITED_MEMB = NO
76
77 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
78 # path before files name in the file list and in the header files. If set
79 # to NO the shortest path that makes the file name unique will be used.
80 FULL_PATH_NAMES = YES
81
82 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
83 # can be used to strip a user-defined part of the path. Stripping is
84 # only done if one of the specified strings matches the left-hand part of
85 # the path. The tag can be used to show relative paths in the file list.
86 # If left blank the directory from which doxygen is run is used as the
87 # path to strip.
88 STRIP_FROM_PATH =
89
90 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
91 # the path mentioned in the documentation of a class, which tells
92 # the reader which header file to include in order to use a class.
93 # If left blank only the name of the header file containing the class
94 # definition is used. Otherwise one should specify the include paths that
95 # are normally passed to the compiler using the -I flag.
96 STRIP_FROM_INC_PATH =
97
98 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
99 # (but less readable) file names. This can be useful is your file systems
100 # doesn't support long names like on DOS, Mac, or CD-ROM.
101 SHORT_NAMES = NO
102
103 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
104 # will interpret the first line (until the first dot) of a JavaDoc-style
105 # comment as the brief description. If set to NO, the JavaDoc
106 # comments will behave just like the Qt-style comments (thus requiring an
107 # explicit @brief command for a brief description.
108 JAVADOC_AUTOBRIEF = YES
109
110 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
111 # treat a multi-line C++ special comment block (i.e. a block of //! or ///
112 # comments) as a brief description. This used to be the default behaviour.
113 # The new default is to treat a multi-line C++ comment block as a detailed
114 # description. Set this tag to YES if you prefer the old behaviour instead.
115 MULTILINE_CPP_IS_BRIEF = NO
116
117 # If the DETAILS_AT_TOP tag is set to YES then Doxygen
118 # will output the detailed description near the top, like JavaDoc.
119 # If set to NO, the detailed description appears after the member
120 # documentation.
121 DETAILS_AT_TOP = YES
122
123 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
124 # member inherits the documentation from any documented member that it
125 # re-implements.
126 INHERIT_DOCS = YES
127
128 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
129 # tag is set to YES, then doxygen will reuse the documentation of the first
130 # member in the group (if any) for the other members of the group. By default
131 # all members of a group must be documented explicitly.
132 DISTRIBUTE_GROUP_DOC = NO
133
134 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
135 # a new page for each member. If set to NO, the documentation of a member will
136 # be part of the file/class/namespace that contains it.
137 SEPARATE_MEMBER_PAGES = NO
138
139 # The TAB_SIZE tag can be used to set the number of spaces in a tab.
140 # Doxygen uses this value to replace tabs by spaces in code fragments.
141 TAB_SIZE = 4
142
143 # This tag can be used to specify a number of aliases that acts
144 # as commands in the documentation. An alias has the form "name=value".
145 # For example adding "sideeffect=\par Side Effects:\n" will allow you to
146 # put the command \sideeffect (or @sideeffect) in the documentation, which
147 # will result in a user-defined paragraph with heading "Side Effects:".
148 # You can put \n's in the value part of an alias to insert newlines.
149 ALIASES =
150
151
152 OPTIMIZE_OUTPUT_FOR_C = NO
153 OPTIMIZE_OUTPUT_JAVA = NO
154
155 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
156 # the same type (for instance a group of public functions) to be put as a
157 # subgroup of that type (e.g. under the Public Functions section). Set it to
158 # NO to prevent subgrouping. Alternatively, this can be done per class using
159 # the \nosubgrouping command.
160 SUBGROUPING = YES
161
162
163
164 #---------------------------------------------------------------------------
165 # Build related configuration options
166 #---------------------------------------------------------------------------
167
168 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
169 # documentation are documented, even if no documentation was available.
170 # Private class members and static file members will be hidden unless
171 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
172 EXTRACT_ALL = YES
173
174 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
175 # will be included in the documentation.
176 EXTRACT_PRIVATE = YES
177
178 # If the EXTRACT_STATIC tag is set to YES all static members of a file
179 # will be included in the documentation.
180 EXTRACT_STATIC = YES
181
182 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
183 # defined locally in source files will be included in the documentation.
184 # If set to NO only classes defined in header files are included.
185 EXTRACT_LOCAL_CLASSES = YES
186
187 # This flag is only useful for Objective-C code. When set to YES local
188 # methods, which are defined in the implementation section but not in
189 # the interface are included in the documentation.
190 # If set to NO (the default) only methods in the interface are included.
191 EXTRACT_LOCAL_METHODS = NO
192
193 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
194 # undocumented members of documented classes, files or namespaces.
195 # If set to NO (the default) these members will be included in the
196 # various overviews, but no documentation section is generated.
197 # This option has no effect if EXTRACT_ALL is enabled.
198 HIDE_UNDOC_MEMBERS = NO
199
200 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
201 # undocumented classes that are normally visible in the class hierarchy.
202 # If set to NO (the default) these classes will be included in the various
203 # overviews. This option has no effect if EXTRACT_ALL is enabled.
204 HIDE_UNDOC_CLASSES = NO
205
206 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
207 # friend (class|struct|union) declarations.
208 # If set to NO (the default) these declarations will be included in the
209 # documentation.
210 HIDE_FRIEND_COMPOUNDS = NO
211
212 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
213 # documentation blocks found inside the body of a function.
214 # If set to NO (the default) these blocks will be appended to the
215 # function's detailed documentation block.
216 HIDE_IN_BODY_DOCS = NO
217
218 # The INTERNAL_DOCS tag determines if documentation
219 # that is typed after a \internal command is included. If the tag is set
220 # to NO (the default) then the documentation will be excluded.
221 # Set it to YES to include the internal documentation.
222 INTERNAL_DOCS = NO
223
224 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
225 # file names in lower-case letters. If set to YES upper-case letters are also
226 # allowed. This is useful if you have classes or files whose names only differ
227 # in case and if your file system supports case sensitive file names. Windows
228 # and Mac users are advised to set this option to NO.
229 CASE_SENSE_NAMES = YES
230
231 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
232 # will show members with their full class and namespace scopes in the
233 # documentation. If set to YES the scope will be hidden.
234 HIDE_SCOPE_NAMES = NO
235
236 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
237 # will put a list of the files that are included by a file in the documentation
238 # of that file.
239 SHOW_INCLUDE_FILES = YES
240
241 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
242 # is inserted in the documentation for inline members.
243 INLINE_INFO = YES
244
245 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
246 # will sort the (detailed) documentation of file and class members
247 # alphabetically by member name. If set to NO the members will appear in
248 # declaration order.
249 SORT_MEMBER_DOCS = YES
250
251 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
252 # brief documentation of file, namespace and class members alphabetically
253 # by member name. If set to NO (the default) the members will appear in
254 # declaration order.
255 SORT_BRIEF_DOCS = NO
256
257 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
258 # sorted by fully-qualified names, including namespaces. If set to
259 # NO (the default), the class list will be sorted only by class name,
260 # not including the namespace part.
261 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
262 # Note: This option applies only to the class list, not to the
263 # alphabetical list.
264 SORT_BY_SCOPE_NAME = NO
265
266 GENERATE_TODOLIST = YES
267 GENERATE_TESTLIST = YES
268 GENERATE_BUGLIST = YES
269 GENERATE_DEPRECATEDLIST= YES
270
271 # The ENABLED_SECTIONS tag can be used to enable conditional
272 # documentation sections, marked by \if sectionname ... \endif.
273 ENABLED_SECTIONS =
274
275 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines
276 # the initial value of a variable or define consists of for it to appear in
277 # the documentation. If the initializer consists of more lines than specified
278 # here it will be hidden. Use a value of 0 to hide initializers completely.
279 # The appearance of the initializer of individual variables and defines in the
280 # documentation can be controlled using \showinitializer or \hideinitializer
281 # command in the documentation regardless of this setting.
282 MAX_INITIALIZER_LINES = 30
283
284 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated
285 # at the bottom of the documentation of classes and structs. If set to YES the
286 # list will mention the files that were used to generate the documentation.
287 SHOW_USED_FILES = YES
288
289 # If the sources in your project are distributed over multiple directories
290 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
291 # in the documentation.
292 SHOW_DIRECTORIES = YES
293
294 # The FILE_VERSION_FILTER tag can be used to specify a program or script that
295 # doxygen should invoke to get the current version for each file (typically from the
296 # version control system). Doxygen will invoke the program by executing (via
297 # popen()) the command <command> <input-file>, where <command> is the value of
298 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
299 # provided by doxygen. Whatever the progam writes to standard output
300 # is used as the file version. See the manual for examples.
301 FILE_VERSION_FILTER =
302
303
304
305 #---------------------------------------------------------------------------
306 # configuration options related to warning and progress messages
307 #---------------------------------------------------------------------------
308
309 # The QUIET tag can be used to turn on/off the messages that are generated
310 # by doxygen. Possible values are YES and NO. If left blank NO is used.
311 QUIET = NO
312
313 # The WARNINGS tag can be used to turn on/off the warning messages that are
314 # generated by doxygen. Possible values are YES and NO. If left blank
315 # NO is used.
316 WARNINGS = YES
317
318 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
319 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will
320 # automatically be disabled.
321 WARN_IF_UNDOCUMENTED = YES
322
323 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
324 # potential errors in the documentation, such as not documenting some
325 # parameters in a documented function, or documenting parameters that
326 # don't exist or using markup commands wrongly.
327 WARN_IF_DOC_ERROR = YES
328
329 # This WARN_NO_PARAMDOC option can be abled to get warnings for
330 # functions that are documented, but have no documentation for their parameters
331 # or return value. If set to NO (the default) doxygen will only warn about
332 # wrong or incomplete parameter documentation, but not about the absence of
333 # documentation.
334 WARN_NO_PARAMDOC = NO
335
336 # The WARN_FORMAT tag determines the format of the warning messages that
337 # doxygen can produce. The string should contain the $file, $line, and $text
338 # tags, which will be replaced by the file and line number from which the
339 # warning originated and the warning text. Optionally the format may contain
340 # $version, which will be replaced by the version of the file (if it could
341 # be obtained via FILE_VERSION_FILTER)
342 WARN_FORMAT = "$file:$line: $text"
343
344 # The WARN_LOGFILE tag can be used to specify a file to which warning
345 # and error messages should be written. If left blank the output is written
346 # to stderr.
347 WARN_LOGFILE =
348
349 #---------------------------------------------------------------------------
350 # configuration options related to the input files
351 #---------------------------------------------------------------------------
352
353 # The INPUT tag can be used to specify the files and/or directories that contain
354 # documented source files. You may enter file names like "myfile.cpp" or
355 # directories like "/usr/src/myproject". Separate the files or directories
356 # with spaces.
357
358 # should be run from maintenance
359 # FIXME : includes/normal includes/templates languages are missing
360 INPUT = config includes maintenance skins tests
361
362 # If the value of the INPUT tag contains directories, you can use the
363 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
364 # and *.h) to filter out the source-files in the directories. If left
365 # blank the following patterns are tested:
366 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
367 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
368
369 FILE_PATTERNS = *.php *.inc
370
371 # The RECURSIVE tag can be used to turn specify whether or not subdirectories
372 # should be searched for input files as well. Possible values are YES and NO.
373 # If left blank NO is used.
374
375 RECURSIVE = NO
376
377 # The EXCLUDE tag can be used to specify files and/or directories that should
378 # excluded from the INPUT source files. This way you can easily exclude a
379 # subdirectory from a directory tree whose root is specified with the INPUT tag.
380
381 EXCLUDE =
382
383 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or
384 # directories that are symbolic links (a Unix filesystem feature) are excluded
385 # from the input.
386
387 EXCLUDE_SYMLINKS = NO
388
389 # If the value of the INPUT tag contains directories, you can use the
390 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
391 # certain files from those directories.
392
393 EXCLUDE_PATTERNS =
394
395 # The EXAMPLE_PATH tag can be used to specify one or more files or
396 # directories that contain example code fragments that are included (see
397 # the \include command).
398
399 EXAMPLE_PATH =
400
401 # If the value of the EXAMPLE_PATH tag contains directories, you can use the
402 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
403 # and *.h) to filter out the source-files in the directories. If left
404 # blank all files are included.
405
406 EXAMPLE_PATTERNS =
407
408 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
409 # searched for input files to be used with the \include or \dontinclude
410 # commands irrespective of the value of the RECURSIVE tag.
411 # Possible values are YES and NO. If left blank NO is used.
412
413 EXAMPLE_RECURSIVE = NO
414
415 # The IMAGE_PATH tag can be used to specify one or more files or
416 # directories that contain image that are included in the documentation (see
417 # the \image command).
418
419 IMAGE_PATH =
420
421 # The INPUT_FILTER tag can be used to specify a program that doxygen should
422 # invoke to filter for each input file. Doxygen will invoke the filter program
423 # by executing (via popen()) the command <filter> <input-file>, where <filter>
424 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an
425 # input file. Doxygen will then use the output that the filter program writes
426 # to standard output. If FILTER_PATTERNS is specified, this tag will be
427 # ignored.
428
429 INPUT_FILTER =
430
431 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
432 # basis. Doxygen will compare the file name with each pattern and apply the
433 # filter if there is a match. The filters are a list of the form:
434 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
435 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
436 # is applied to all files.
437
438 FILTER_PATTERNS =
439
440 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
441 # INPUT_FILTER) will be used to filter the input files when producing source
442 # files to browse (i.e. when SOURCE_BROWSER is set to YES).
443
444 FILTER_SOURCE_FILES = NO
445
446
447
448 #---------------------------------------------------------------------------
449 # configuration options related to source browsing
450 #---------------------------------------------------------------------------
451
452 # If the SOURCE_BROWSER tag is set to YES then a list of source files will
453 # be generated. Documented entities will be cross-referenced with these sources.
454 # Note: To get rid of all source code in the generated output, make sure also
455 # VERBATIM_HEADERS is set to NO.
456
457 SOURCE_BROWSER = NO
458
459 # Setting the INLINE_SOURCES tag to YES will include the body
460 # of functions and classes directly in the documentation.
461
462 INLINE_SOURCES = NO
463
464 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
465 # doxygen to hide any special comment blocks from generated source code
466 # fragments. Normal C and C++ comments will always remain visible.
467
468 STRIP_CODE_COMMENTS = YES
469
470 # If the REFERENCED_BY_RELATION tag is set to YES (the default)
471 # then for each documented function all documented
472 # functions referencing it will be listed.
473
474 REFERENCED_BY_RELATION = YES
475
476 # If the REFERENCES_RELATION tag is set to YES (the default)
477 # then for each documented function all documented entities
478 # called/used by that function will be listed.
479
480 REFERENCES_RELATION = YES
481
482 # If the USE_HTAGS tag is set to YES then the references to source code
483 # will point to the HTML generated by the htags(1) tool instead of doxygen
484 # built-in source browser. The htags tool is part of GNU's global source
485 # tagging system (see http://www.gnu.org/software/global/global.html). You
486 # will need version 4.8.6 or higher.
487
488 USE_HTAGS = NO
489
490 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
491 # will generate a verbatim copy of the header file for each class for
492 # which an include is specified. Set to NO to disable this.
493
494 VERBATIM_HEADERS = YES
495
496
497 #---------------------------------------------------------------------------
498 # configuration options related to the alphabetical class index
499 #---------------------------------------------------------------------------
500
501 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
502 # of all compounds will be generated. Enable this if the project
503 # contains a lot of classes, structs, unions or interfaces.
504
505 ALPHABETICAL_INDEX = NO
506
507 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
508 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
509 # in which this list will be split (can be a number in the range [1..20])
510
511 COLS_IN_ALPHA_INDEX = 5
512
513 # In case all classes in a project start with a common prefix, all
514 # classes will be put under the same header in the alphabetical index.
515 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that
516 # should be ignored while generating the index headers.
517
518 IGNORE_PREFIX =
519
520 #---------------------------------------------------------------------------
521 # configuration options related to the HTML output
522 #---------------------------------------------------------------------------
523
524 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
525 # generate HTML output.
526
527 GENERATE_HTML = YES
528
529 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
530 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
531 # put in front of it. If left blank `html' will be used as the default path.
532
533 HTML_OUTPUT = html
534
535 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for
536 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank
537 # doxygen will generate files with .html extension.
538
539 HTML_FILE_EXTENSION = .html
540
541 # The HTML_HEADER tag can be used to specify a personal HTML header for
542 # each generated HTML page. If it is left blank doxygen will generate a
543 # standard header.
544
545 HTML_HEADER =
546
547 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
548 # each generated HTML page. If it is left blank doxygen will generate a
549 # standard footer.
550
551 HTML_FOOTER =
552
553 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading
554 # style sheet that is used by each HTML page. It can be used to
555 # fine-tune the look of the HTML output. If the tag is left blank doxygen
556 # will generate a default style sheet. Note that doxygen will try to copy
557 # the style sheet file to the HTML output directory, so don't put your own
558 # stylesheet in the HTML output directory as well, or it will be erased!
559
560 HTML_STYLESHEET =
561
562 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
563 # files or namespaces will be aligned in HTML using tables. If set to
564 # NO a bullet list will be used.
565
566 HTML_ALIGN_MEMBERS = YES
567
568 # If the GENERATE_HTMLHELP tag is set to YES, additional index files
569 # will be generated that can be used as input for tools like the
570 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
571 # of the generated HTML documentation.
572
573 GENERATE_HTMLHELP = NO
574
575 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
576 # be used to specify the file name of the resulting .chm file. You
577 # can add a path in front of the file if the result should not be
578 # written to the html output directory.
579
580 CHM_FILE =
581
582 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
583 # be used to specify the location (absolute path including file name) of
584 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
585 # the HTML help compiler on the generated index.hhp.
586
587 HHC_LOCATION =
588
589 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
590 # controls if a separate .chi index file is generated (YES) or that
591 # it should be included in the master .chm file (NO).
592
593 GENERATE_CHI = NO
594
595 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
596 # controls whether a binary table of contents is generated (YES) or a
597 # normal table of contents (NO) in the .chm file.
598
599 BINARY_TOC = NO
600
601 # The TOC_EXPAND flag can be set to YES to add extra items for group members
602 # to the contents of the HTML help documentation and to the tree view.
603
604 TOC_EXPAND = NO
605
606 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at
607 # top of each HTML page. The value NO (the default) enables the index and
608 # the value YES disables it.
609
610 DISABLE_INDEX = NO
611
612 # This tag can be used to set the number of enum values (range [1..20])
613 # that doxygen will group on one line in the generated HTML documentation.
614
615 ENUM_VALUES_PER_LINE = 4
616
617 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
618 # generated containing a tree-like index structure (just like the one that
619 # is generated for HTML Help). For this to work a browser that supports
620 # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,
621 # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
622 # probably better off using the HTML help feature.
623
624 GENERATE_TREEVIEW = YES
625
626 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
627 # used to set the initial width (in pixels) of the frame in which the tree
628 # is shown.
629
630 TREEVIEW_WIDTH = 250
631
632 #---------------------------------------------------------------------------
633 # configuration options related to the LaTeX output
634 #---------------------------------------------------------------------------
635
636 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
637 # generate Latex output.
638
639 GENERATE_LATEX = NO
640
641 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs 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 `latex' will be used as the default path.
644
645 LATEX_OUTPUT = latex
646
647 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
648 # invoked. If left blank `latex' will be used as the default command name.
649
650 LATEX_CMD_NAME = latex
651
652 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
653 # generate index for LaTeX. If left blank `makeindex' will be used as the
654 # default command name.
655
656 MAKEINDEX_CMD_NAME = makeindex
657
658 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
659 # LaTeX documents. This may be useful for small projects and may help to
660 # save some trees in general.
661
662 COMPACT_LATEX = NO
663
664 # The PAPER_TYPE tag can be used to set the paper type that is used
665 # by the printer. Possible values are: a4, a4wide, letter, legal and
666 # executive. If left blank a4wide will be used.
667
668 PAPER_TYPE = a4wide
669
670 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
671 # packages that should be included in the LaTeX output.
672
673 EXTRA_PACKAGES =
674
675 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
676 # the generated latex document. The header should contain everything until
677 # the first chapter. If it is left blank doxygen will generate a
678 # standard header. Notice: only use this tag if you know what you are doing!
679
680 LATEX_HEADER =
681
682 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
683 # is prepared for conversion to pdf (using ps2pdf). The pdf file will
684 # contain links (just like the HTML output) instead of page references
685 # This makes the output suitable for online browsing using a pdf viewer.
686
687 PDF_HYPERLINKS = NO
688
689 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
690 # plain latex in the generated Makefile. Set this option to YES to get a
691 # higher quality PDF documentation.
692
693 USE_PDFLATEX = NO
694
695 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
696 # command to the generated LaTeX files. This will instruct LaTeX to keep
697 # running if errors occur, instead of asking the user for help.
698 # This option is also used when generating formulas in HTML.
699
700 LATEX_BATCHMODE = NO
701
702 # If LATEX_HIDE_INDICES is set to YES then doxygen will not
703 # include the index chapters (such as File Index, Compound Index, etc.)
704 # in the output.
705
706 LATEX_HIDE_INDICES = NO
707
708 #---------------------------------------------------------------------------
709 # configuration options related to the RTF output
710 #---------------------------------------------------------------------------
711
712 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
713 # The RTF output is optimized for Word 97 and may not look very pretty with
714 # other RTF readers or editors.
715
716 GENERATE_RTF = NO
717
718 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
719 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
720 # put in front of it. If left blank `rtf' will be used as the default path.
721
722 RTF_OUTPUT = rtf
723
724 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact
725 # RTF documents. This may be useful for small projects and may help to
726 # save some trees in general.
727
728 COMPACT_RTF = NO
729
730 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
731 # will contain hyperlink fields. The RTF file will
732 # contain links (just like the HTML output) instead of page references.
733 # This makes the output suitable for online browsing using WORD or other
734 # programs which support those fields.
735 # Note: wordpad (write) and others do not support links.
736
737 RTF_HYPERLINKS = NO
738
739 # Load stylesheet definitions from file. Syntax is similar to doxygen's
740 # config file, i.e. a series of assignments. You only have to provide
741 # replacements, missing definitions are set to their default value.
742
743 RTF_STYLESHEET_FILE =
744
745 # Set optional variables used in the generation of an rtf document.
746 # Syntax is similar to doxygen's config file.
747
748 RTF_EXTENSIONS_FILE =
749
750 #---------------------------------------------------------------------------
751 # configuration options related to the man page output
752 #---------------------------------------------------------------------------
753
754 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
755 # generate man pages
756
757 GENERATE_MAN = NO
758
759 # The MAN_OUTPUT tag is used to specify where the man pages will be put.
760 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
761 # put in front of it. If left blank `man' will be used as the default path.
762
763 MAN_OUTPUT = man
764
765 # The MAN_EXTENSION tag determines the extension that is added to
766 # the generated man pages (default is the subroutine's section .3)
767
768 MAN_EXTENSION = .3
769
770 # If the MAN_LINKS tag is set to YES and Doxygen generates man output,
771 # then it will generate one additional man file for each entity
772 # documented in the real man page(s). These additional files
773 # only source the real man page, but without them the man command
774 # would be unable to find the correct page. The default is NO.
775
776 MAN_LINKS = NO
777
778 #---------------------------------------------------------------------------
779 # configuration options related to the XML output
780 #---------------------------------------------------------------------------
781
782 # If the GENERATE_XML tag is set to YES Doxygen will
783 # generate an XML file that captures the structure of
784 # the code including all documentation.
785
786 GENERATE_XML = NO
787
788 # The XML_OUTPUT tag is used to specify where the XML pages will be put.
789 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
790 # put in front of it. If left blank `xml' will be used as the default path.
791
792 XML_OUTPUT = xml
793
794 # The XML_SCHEMA tag can be used to specify an XML schema,
795 # which can be used by a validating XML parser to check the
796 # syntax of the XML files.
797
798 XML_SCHEMA =
799
800 # The XML_DTD tag can be used to specify an XML DTD,
801 # which can be used by a validating XML parser to check the
802 # syntax of the XML files.
803
804 XML_DTD =
805
806 # If the XML_PROGRAMLISTING tag is set to YES Doxygen will
807 # dump the program listings (including syntax highlighting
808 # and cross-referencing information) to the XML output. Note that
809 # enabling this will significantly increase the size of the XML output.
810
811 XML_PROGRAMLISTING = YES
812
813 #---------------------------------------------------------------------------
814 # configuration options for the AutoGen Definitions output
815 #---------------------------------------------------------------------------
816
817 # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
818 # generate an AutoGen Definitions (see autogen.sf.net) file
819 # that captures the structure of the code including all
820 # documentation. Note that this feature is still experimental
821 # and incomplete at the moment.
822
823 GENERATE_AUTOGEN_DEF = NO
824
825 #---------------------------------------------------------------------------
826 # configuration options related to the Perl module output
827 #---------------------------------------------------------------------------
828
829 # If the GENERATE_PERLMOD tag is set to YES Doxygen will
830 # generate a Perl module file that captures the structure of
831 # the code including all documentation. Note that this
832 # feature is still experimental and incomplete at the
833 # moment.
834
835 GENERATE_PERLMOD = NO
836
837 # If the PERLMOD_LATEX tag is set to YES Doxygen will generate
838 # the necessary Makefile rules, Perl scripts and LaTeX code to be able
839 # to generate PDF and DVI output from the Perl module output.
840
841 PERLMOD_LATEX = NO
842
843 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
844 # nicely formatted so it can be parsed by a human reader. This is useful
845 # if you want to understand what is going on. On the other hand, if this
846 # tag is set to NO the size of the Perl module output will be much smaller
847 # and Perl will parse it just the same.
848
849 PERLMOD_PRETTY = YES
850
851 # The names of the make variables in the generated doxyrules.make file
852 # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
853 # This is useful so different doxyrules.make files included by the same
854 # Makefile don't overwrite each other's variables.
855
856 PERLMOD_MAKEVAR_PREFIX =
857
858 #---------------------------------------------------------------------------
859 # Configuration options related to the preprocessor
860 #---------------------------------------------------------------------------
861
862 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
863 # evaluate all C-preprocessor directives found in the sources and include
864 # files.
865
866 ENABLE_PREPROCESSING = NO
867
868 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
869 # names in the source code. If set to NO (the default) only conditional
870 # compilation will be performed. Macro expansion can be done in a controlled
871 # way by setting EXPAND_ONLY_PREDEF to YES.
872
873 MACRO_EXPANSION = NO
874
875 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
876 # then the macro expansion is limited to the macros specified with the
877 # PREDEFINED and EXPAND_AS_PREDEFINED tags.
878
879 EXPAND_ONLY_PREDEF = NO
880
881 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
882 # in the INCLUDE_PATH (see below) will be search if a #include is found.
883
884 SEARCH_INCLUDES = YES
885
886 # The INCLUDE_PATH tag can be used to specify one or more directories that
887 # contain include files that are not input files but should be processed by
888 # the preprocessor.
889
890 INCLUDE_PATH =
891
892 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
893 # patterns (like *.h and *.hpp) to filter out the header-files in the
894 # directories. If left blank, the patterns specified with FILE_PATTERNS will
895 # be used.
896
897 INCLUDE_FILE_PATTERNS =
898
899 # The PREDEFINED tag can be used to specify one or more macro names that
900 # are defined before the preprocessor is started (similar to the -D option of
901 # gcc). The argument of the tag is a list of macros of the form: name
902 # or name=definition (no spaces). If the definition and the = are
903 # omitted =1 is assumed. To prevent a macro definition from being
904 # undefined via #undef or recursively expanded use the := operator
905 # instead of the = operator.
906
907 PREDEFINED =
908
909 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
910 # this tag can be used to specify a list of macro names that should be expanded.
911 # The macro definition that is found in the sources will be used.
912 # Use the PREDEFINED tag if you want to use a different macro definition.
913
914 EXPAND_AS_DEFINED =
915
916 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
917 # doxygen's preprocessor will remove all function-like macros that are alone
918 # on a line, have an all uppercase name, and do not end with a semicolon. Such
919 # function macros are typically used for boiler-plate code, and will confuse
920 # the parser if not removed.
921
922 SKIP_FUNCTION_MACROS = YES
923
924 #---------------------------------------------------------------------------
925 # Configuration::additions related to external references
926 #---------------------------------------------------------------------------
927
928 # The TAGFILES option can be used to specify one or more tagfiles.
929 # Optionally an initial location of the external documentation
930 # can be added for each tagfile. The format of a tag file without
931 # this location is as follows:
932 # TAGFILES = file1 file2 ...
933 # Adding location for the tag files is done as follows:
934 # TAGFILES = file1=loc1 "file2 = loc2" ...
935 # where "loc1" and "loc2" can be relative or absolute paths or
936 # URLs. If a location is present for each tag, the installdox tool
937 # does not have to be run to correct the links.
938 # Note that each tag file must have a unique name
939 # (where the name does NOT include the path)
940 # If a tag file is not located in the directory in which doxygen
941 # is run, you must also specify the path to the tagfile here.
942
943 TAGFILES =
944
945 # When a file name is specified after GENERATE_TAGFILE, doxygen will create
946 # a tag file that is based on the input files it reads.
947
948 GENERATE_TAGFILE =
949
950 # If the ALLEXTERNALS tag is set to YES all external classes will be listed
951 # in the class index. If set to NO only the inherited external classes
952 # will be listed.
953
954 ALLEXTERNALS = NO
955
956 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
957 # in the modules index. If set to NO, only the current project's groups will
958 # be listed.
959
960 EXTERNAL_GROUPS = YES
961
962 # The PERL_PATH should be the absolute path and name of the perl script
963 # interpreter (i.e. the result of `which perl').
964
965 PERL_PATH = /usr/bin/perl
966
967 #---------------------------------------------------------------------------
968 # Configuration options related to the dot tool
969 #---------------------------------------------------------------------------
970
971 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
972 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
973 # or super classes. Setting the tag to NO turns the diagrams off. Note that
974 # this option is superseded by the HAVE_DOT option below. This is only a
975 # fallback. It is recommended to install and use dot, since it yields more
976 # powerful graphs.
977
978 CLASS_DIAGRAMS = YES
979
980 # If set to YES, the inheritance and collaboration graphs will hide
981 # inheritance and usage relations if the target is undocumented
982 # or is not a class.
983
984 HIDE_UNDOC_RELATIONS = YES
985
986 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
987 # available from the path. This tool is part of Graphviz, a graph visualization
988 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
989 # have no effect if this option is set to NO (the default)
990
991 HAVE_DOT = NO
992
993 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
994 # will generate a graph for each documented class showing the direct and
995 # indirect inheritance relations. Setting this tag to YES will force the
996 # the CLASS_DIAGRAMS tag to NO.
997
998 CLASS_GRAPH = YES
999
1000 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
1001 # will generate a graph for each documented class showing the direct and
1002 # indirect implementation dependencies (inheritance, containment, and
1003 # class references variables) of the class with other documented classes.
1004
1005 COLLABORATION_GRAPH = YES
1006
1007 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
1008 # will generate a graph for groups, showing the direct groups dependencies
1009
1010 GROUP_GRAPHS = YES
1011
1012 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
1013 # collaboration diagrams in a style similar to the OMG's Unified Modeling
1014 # Language.
1015
1016 UML_LOOK = NO
1017
1018 # If set to YES, the inheritance and collaboration graphs will show the
1019 # relations between templates and their instances.
1020
1021 TEMPLATE_RELATIONS = NO
1022
1023 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
1024 # tags are set to YES then doxygen will generate a graph for each documented
1025 # file showing the direct and indirect include dependencies of the file with
1026 # other documented files.
1027
1028 INCLUDE_GRAPH = YES
1029
1030 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
1031 # HAVE_DOT tags are set to YES then doxygen will generate a graph for each
1032 # documented header file showing the documented files that directly or
1033 # indirectly include this file.
1034
1035 INCLUDED_BY_GRAPH = YES
1036
1037 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
1038 # generate a call dependency graph for every global function or class method.
1039 # Note that enabling this option will significantly increase the time of a run.
1040 # So in most cases it will be better to enable call graphs for selected
1041 # functions only using the \callgraph command.
1042
1043 CALL_GRAPH = NO
1044
1045 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
1046 # will graphical hierarchy of all classes instead of a textual one.
1047
1048 GRAPHICAL_HIERARCHY = YES
1049
1050 # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
1051 # then doxygen will show the dependencies a directory has on other directories
1052 # in a graphical way. The dependency relations are determined by the #include
1053 # relations between the files in the directories.
1054
1055 DIRECTORY_GRAPH = YES
1056
1057 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
1058 # generated by dot. Possible values are png, jpg, or gif
1059 # If left blank png will be used.
1060
1061 DOT_IMAGE_FORMAT = png
1062
1063 # The tag DOT_PATH can be used to specify the path where the dot tool can be
1064 # found. If left blank, it is assumed the dot tool can be found in the path.
1065
1066 DOT_PATH =
1067
1068 # The DOTFILE_DIRS tag can be used to specify one or more directories that
1069 # contain dot files that are included in the documentation (see the
1070 # \dotfile command).
1071
1072 DOTFILE_DIRS =
1073
1074 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width
1075 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
1076 # this value, doxygen will try to truncate the graph, so that it fits within
1077 # the specified constraint. Beware that most browsers cannot cope with very
1078 # large images.
1079
1080 MAX_DOT_GRAPH_WIDTH = 1024
1081
1082 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height
1083 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
1084 # this value, doxygen will try to truncate the graph, so that it fits within
1085 # the specified constraint. Beware that most browsers cannot cope with very
1086 # large images.
1087
1088 MAX_DOT_GRAPH_HEIGHT = 1024
1089
1090 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
1091 # graphs generated by dot. A depth value of 3 means that only nodes reachable
1092 # from the root by following a path via at most 3 edges will be shown. Nodes
1093 # that lay further from the root node will be omitted. Note that setting this
1094 # option to 1 or 2 may greatly reduce the computation time needed for large
1095 # code bases. Also note that a graph may be further truncated if the graph's
1096 # image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH
1097 # and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default),
1098 # the graph is not depth-constrained.
1099
1100 MAX_DOT_GRAPH_DEPTH = 0
1101
1102 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
1103 # background. This is disabled by default, which results in a white background.
1104 # Warning: Depending on the platform used, enabling this option may lead to
1105 # badly anti-aliased labels on the edges of a graph (i.e. they become hard to
1106 # read).
1107
1108 DOT_TRANSPARENT = NO
1109
1110 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
1111 # files in one run (i.e. multiple -o and -T options on the command line). This
1112 # makes dot run faster, but since only newer versions of dot (>1.8.10)
1113 # support this, this feature is disabled by default.
1114
1115 DOT_MULTI_TARGETS = NO
1116
1117 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
1118 # generate a legend page explaining the meaning of the various boxes and
1119 # arrows in the dot generated graphs.
1120
1121 GENERATE_LEGEND = YES
1122
1123 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
1124 # remove the intermediate dot files that are used to generate
1125 # the various graphs.
1126
1127 DOT_CLEANUP = YES
1128
1129 #---------------------------------------------------------------------------
1130 # Configuration::additions related to the search engine
1131 #---------------------------------------------------------------------------
1132
1133 # The SEARCHENGINE tag specifies whether or not a search engine should be
1134 # used. If set to NO the values of all tags below this one will be ignored.
1135
1136 SEARCHENGINE = NO