Skip to content

Latest commit

 

History

History
946 lines (654 loc) · 36.3 KB

Doxyfile

File metadata and controls

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