root/tags/gdal_1_3_2/Doxyfile

Revision 9570, 45.5 kB (checked in by fwarmerdam, 3 years ago)

added rfc directory to places harvested

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