comparison Doxyfile @ 304:5338d93889aa

preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
author Carl Byington <carl@five-ten-sg.com>
date Tue, 08 May 2012 10:52:24 -0700
parents 03fbb0269f3c
children 843705c25b45
comparison
equal deleted inserted replaced
303:23915d34387f 304:5338d93889aa
1 # Doxyfile 1.3.9.1 1 # Doxyfile 1.6.1
2 2
3 # This file describes the settings to be used by the documentation system 3 # This file describes the settings to be used by the documentation system
4 # doxygen (www.doxygen.org) for a project 4 # doxygen (www.doxygen.org) for a project
5 # 5 #
6 # All text after a hash (#) is considered a comment and will be ignored 6 # All text after a hash (#) is considered a comment and will be ignored
12 12
13 #--------------------------------------------------------------------------- 13 #---------------------------------------------------------------------------
14 # Project related configuration options 14 # Project related configuration options
15 #--------------------------------------------------------------------------- 15 #---------------------------------------------------------------------------
16 16
17 # This tag specifies the encoding used for all characters in the config file
18 # that follow. The default is UTF-8 which is also the encoding used for all
19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
20 # iconv built into libc) for the transcoding. See
21 # http://www.gnu.org/software/libiconv for the list of possible encodings.
22
23 DOXYFILE_ENCODING = UTF-8
24
17 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
18 # by quotes) that should identify the project. 26 # by quotes) that should identify the project.
19 27
20 PROJECT_NAME = 'LibPst' 28 PROJECT_NAME = 'LibPst'
21 29
33 OUTPUT_DIRECTORY = 41 OUTPUT_DIRECTORY =
34 42
35 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
36 # 4096 sub-directories (in 2 levels) under the output directory of each output 44 # 4096 sub-directories (in 2 levels) under the output directory of each output
37 # format and will distribute the generated files over these directories. 45 # format and will distribute the generated files over these directories.
38 # Enabling this option can be useful when feeding doxygen a huge amount of source 46 # Enabling this option can be useful when feeding doxygen a huge amount of
39 # files, where putting all generated files in the same directory would otherwise 47 # source files, where putting all generated files in the same directory would
40 # cause performance problems for the file system. 48 # otherwise cause performance problems for the file system.
41 49
42 CREATE_SUBDIRS = NO 50 CREATE_SUBDIRS = NO
43 51
44 # The OUTPUT_LANGUAGE tag is used to specify the language in which all 52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
45 # documentation generated by doxygen is written. Doxygen will use this 53 # documentation generated by doxygen is written. Doxygen will use this
46 # information to generate all constant output in the proper language. 54 # information to generate all constant output in the proper language.
47 # The default language is English, other supported languages are: 55 # The default language is English, other supported languages are:
48 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, 56 # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
49 # Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, 57 # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German,
50 # Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, 58 # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English
51 # Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, 59 # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian,
52 # Swedish, and Ukrainian. 60 # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak,
61 # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.
53 62
54 OUTPUT_LANGUAGE = English 63 OUTPUT_LANGUAGE = English
55
56 # This tag can be used to specify the encoding used in the generated output.
57 # The encoding is not always determined by the language that is chosen,
58 # but also whether or not the output is meant for Windows or non-Windows users.
59 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
60 # forces the Windows encoding (this is the default for the Windows binary),
61 # whereas setting the tag to NO uses a Unix-style encoding (the default for
62 # all platforms other than Windows).
63
64 USE_WINDOWS_ENCODING = NO
65 64
66 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 65 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
67 # include brief member descriptions after the members that are listed in 66 # include brief member descriptions after the members that are listed in
68 # the file and class documentation (similar to JavaDoc). 67 # the file and class documentation (similar to JavaDoc).
69 # Set to NO to disable this. 68 # Set to NO to disable this.
78 REPEAT_BRIEF = YES 77 REPEAT_BRIEF = YES
79 78
80 # This tag implements a quasi-intelligent brief description abbreviator 79 # This tag implements a quasi-intelligent brief description abbreviator
81 # that is used to form the text in various listings. Each string 80 # that is used to form the text in various listings. Each string
82 # in this list, if found as the leading text of the brief description, will be 81 # in this list, if found as the leading text of the brief description, will be
83 # stripped from the text and the result after processing the whole list, is used 82 # stripped from the text and the result after processing the whole list, is
84 # as the annotated text. Otherwise, the brief description is used as-is. If left 83 # used as the annotated text. Otherwise, the brief description is used as-is.
85 # blank, the following values are used ("$name" is automatically replaced with the 84 # If left blank, the following values are used ("$name" is automatically
86 # name of the entity): "The $name class" "The $name widget" "The $name file" 85 # replaced with the name of the entity): "The $name class" "The $name widget"
87 # "is" "provides" "specifies" "contains" "represents" "a" "an" "the" 86 # "The $name file" "is" "provides" "specifies" "contains"
87 # "represents" "a" "an" "the"
88 88
89 ABBREVIATE_BRIEF = 89 ABBREVIATE_BRIEF =
90 90
91 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 91 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
92 # Doxygen will generate a detailed section even if there is only a brief 92 # Doxygen will generate a detailed section even if there is only a brief
93 # description. 93 # description.
94 94
95 ALWAYS_DETAILED_SEC = NO 95 ALWAYS_DETAILED_SEC = NO
96 96
97 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited 97 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
98 # members of a class in the documentation of that class as if those members were 98 # inherited members of a class in the documentation of that class as if those
99 # ordinary class members. Constructors, destructors and assignment operators of 99 # members were ordinary class members. Constructors, destructors and assignment
100 # the base classes will not be shown. 100 # operators of the base classes will not be shown.
101 101
102 INLINE_INHERITED_MEMB = NO 102 INLINE_INHERITED_MEMB = NO
103 103
104 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 104 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
105 # path before files name in the file list and in the header files. If set 105 # path before files name in the file list and in the header files. If set
132 SHORT_NAMES = NO 132 SHORT_NAMES = NO
133 133
134 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 134 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
135 # will interpret the first line (until the first dot) of a JavaDoc-style 135 # will interpret the first line (until the first dot) of a JavaDoc-style
136 # comment as the brief description. If set to NO, the JavaDoc 136 # comment as the brief description. If set to NO, the JavaDoc
137 # comments will behave just like the Qt-style comments (thus requiring an 137 # comments will behave just like regular Qt-style comments
138 # explicit @brief command for a brief description. 138 # (thus requiring an explicit @brief command for a brief description.)
139 139
140 JAVADOC_AUTOBRIEF = YES 140 JAVADOC_AUTOBRIEF = YES
141
142 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will
143 # interpret the first line (until the first dot) of a Qt-style
144 # comment as the brief description. If set to NO, the comments
145 # will behave just like regular Qt-style comments (thus requiring
146 # an explicit \brief command for a brief description.)
147
148 QT_AUTOBRIEF = NO
141 149
142 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 150 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
143 # treat a multi-line C++ special comment block (i.e. a block of //! or /// 151 # treat a multi-line C++ special comment block (i.e. a block of //! or ///
144 # comments) as a brief description. This used to be the default behaviour. 152 # comments) as a brief description. This used to be the default behaviour.
145 # The new default is to treat a multi-line C++ comment block as a detailed 153 # The new default is to treat a multi-line C++ comment block as a detailed
146 # description. Set this tag to YES if you prefer the old behaviour instead. 154 # description. Set this tag to YES if you prefer the old behaviour instead.
147 155
148 MULTILINE_CPP_IS_BRIEF = NO 156 MULTILINE_CPP_IS_BRIEF = NO
149 157
150 # If the DETAILS_AT_TOP tag is set to YES then Doxygen
151 # will output the detailed description near the top, like JavaDoc.
152 # If set to NO, the detailed description appears after the member
153 # documentation.
154
155 DETAILS_AT_TOP = NO
156
157 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 158 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
158 # member inherits the documentation from any documented member that it 159 # member inherits the documentation from any documented member that it
159 # re-implements. 160 # re-implements.
160 161
161 INHERIT_DOCS = YES 162 INHERIT_DOCS = YES
162 163
163 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 164 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
164 # tag is set to YES, then doxygen will reuse the documentation of the first 165 # a new page for each member. If set to NO, the documentation of a member will
165 # member in the group (if any) for the other members of the group. By default 166 # be part of the file/class/namespace that contains it.
166 # all members of a group must be documented explicitly. 167
167 168 SEPARATE_MEMBER_PAGES = NO
168 DISTRIBUTE_GROUP_DOC = NO
169 169
170 # The TAB_SIZE tag can be used to set the number of spaces in a tab. 170 # The TAB_SIZE tag can be used to set the number of spaces in a tab.
171 # Doxygen uses this value to replace tabs by spaces in code fragments. 171 # Doxygen uses this value to replace tabs by spaces in code fragments.
172 172
173 TAB_SIZE = 4 173 TAB_SIZE = 4
179 # will result in a user-defined paragraph with heading "Side Effects:". 179 # will result in a user-defined paragraph with heading "Side Effects:".
180 # You can put \n's in the value part of an alias to insert newlines. 180 # You can put \n's in the value part of an alias to insert newlines.
181 181
182 ALIASES = 182 ALIASES =
183 183
184 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 184 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
185 # only. Doxygen will then generate output that is more tailored for C. 185 # sources only. Doxygen will then generate output that is more tailored for C.
186 # For instance, some of the names that are used will be different. The list 186 # For instance, some of the names that are used will be different. The list
187 # of all members will be omitted, etc. 187 # of all members will be omitted, etc.
188 188
189 OPTIMIZE_OUTPUT_FOR_C = YES 189 OPTIMIZE_OUTPUT_FOR_C = YES
190 190
191 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources 191 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
192 # only. Doxygen will then generate output that is more tailored for Java. 192 # sources only. Doxygen will then generate output that is more tailored for
193 # For instance, namespaces will be presented as packages, qualified scopes 193 # Java. For instance, namespaces will be presented as packages, qualified
194 # will look different, etc. 194 # scopes will look different, etc.
195 195
196 OPTIMIZE_OUTPUT_JAVA = NO 196 OPTIMIZE_OUTPUT_JAVA = NO
197
198 # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
199 # sources only. Doxygen will then generate output that is more tailored for
200 # Fortran.
201
202 OPTIMIZE_FOR_FORTRAN = NO
203
204 # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
205 # sources. Doxygen will then generate output that is tailored for
206 # VHDL.
207
208 OPTIMIZE_OUTPUT_VHDL = NO
209
210 # Doxygen selects the parser to use depending on the extension of the files it parses.
211 # With this tag you can assign which parser to use for a given extension.
212 # Doxygen has a built-in mapping, but you can override or extend it using this tag.
213 # The format is ext=language, where ext is a file extension, and language is one of
214 # the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP,
215 # Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat
216 # .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran),
217 # use: inc=Fortran f=C. Note that for custom extensions you also need to set FILE_PATTERNS otherwise the files are not read by doxygen.
218
219 EXTENSION_MAPPING =
220
221 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
222 # to include (a tag file for) the STL sources as input, then you should
223 # set this tag to YES in order to let doxygen match functions declarations and
224 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
225 # func(std::string) {}). This also make the inheritance and collaboration
226 # diagrams that involve STL classes more complete and accurate.
227
228 BUILTIN_STL_SUPPORT = NO
229
230 # If you use Microsoft's C++/CLI language, you should set this option to YES to
231 # enable parsing support.
232
233 CPP_CLI_SUPPORT = NO
234
235 # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
236 # Doxygen will parse them like normal C++ but will assume all classes use public
237 # instead of private inheritance when no explicit protection keyword is present.
238
239 SIP_SUPPORT = NO
240
241 # For Microsoft's IDL there are propget and propput attributes to indicate getter
242 # and setter methods for a property. Setting this option to YES (the default)
243 # will make doxygen to replace the get and set methods by a property in the
244 # documentation. This will only work if the methods are indeed getting or
245 # setting a simple type. If this is not the case, or you want to show the
246 # methods anyway, you should set this option to NO.
247
248 IDL_PROPERTY_SUPPORT = YES
249
250 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
251 # tag is set to YES, then doxygen will reuse the documentation of the first
252 # member in the group (if any) for the other members of the group. By default
253 # all members of a group must be documented explicitly.
254
255 DISTRIBUTE_GROUP_DOC = NO
197 256
198 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of 257 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
199 # the same type (for instance a group of public functions) to be put as a 258 # the same type (for instance a group of public functions) to be put as a
200 # subgroup of that type (e.g. under the Public Functions section). Set it to 259 # subgroup of that type (e.g. under the Public Functions section). Set it to
201 # NO to prevent subgrouping. Alternatively, this can be done per class using 260 # NO to prevent subgrouping. Alternatively, this can be done per class using
202 # the \nosubgrouping command. 261 # the \nosubgrouping command.
203 262
204 SUBGROUPING = YES 263 SUBGROUPING = YES
205 264
265 # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
266 # is documented as struct, union, or enum with the name of the typedef. So
267 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct
268 # with name TypeT. When disabled the typedef will appear as a member of a file,
269 # namespace, or class. And the struct will be named TypeS. This can typically
270 # be useful for C code in case the coding convention dictates that all compound
271 # types are typedef'ed and only the typedef is referenced, never the tag name.
272
273 TYPEDEF_HIDES_STRUCT = NO
274
275 # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to
276 # determine which symbols to keep in memory and which to flush to disk.
277 # When the cache is full, less often used symbols will be written to disk.
278 # For small to medium size projects (<1000 input files) the default value is
279 # probably good enough. For larger projects a too small cache size can cause
280 # doxygen to be busy swapping symbols to and from disk most of the time
281 # causing a significant performance penality.
282 # If the system has enough physical memory increasing the cache will improve the
283 # performance by keeping more symbols in memory. Note that the value works on
284 # a logarithmic scale so increasing the size by one will rougly double the
285 # memory usage. The cache size is given by this formula:
286 # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
287 # corresponding to a cache size of 2^16 = 65536 symbols
288
289 SYMBOL_CACHE_SIZE = 0
290
206 #--------------------------------------------------------------------------- 291 #---------------------------------------------------------------------------
207 # Build related configuration options 292 # Build related configuration options
208 #--------------------------------------------------------------------------- 293 #---------------------------------------------------------------------------
209 294
210 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 295 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
234 # methods, which are defined in the implementation section but not in 319 # methods, which are defined in the implementation section but not in
235 # the interface are included in the documentation. 320 # the interface are included in the documentation.
236 # If set to NO (the default) only methods in the interface are included. 321 # If set to NO (the default) only methods in the interface are included.
237 322
238 EXTRACT_LOCAL_METHODS = NO 323 EXTRACT_LOCAL_METHODS = NO
324
325 # If this flag is set to YES, the members of anonymous namespaces will be
326 # extracted and appear in the documentation as a namespace called
327 # 'anonymous_namespace{file}', where file will be replaced with the base
328 # name of the file that contains the anonymous namespace. By default
329 # anonymous namespace are hidden.
330
331 EXTRACT_ANON_NSPACES = NO
239 332
240 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 333 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
241 # undocumented members of documented classes, files or namespaces. 334 # undocumented members of documented classes, files or namespaces.
242 # If set to NO (the default) these members will be included in the 335 # If set to NO (the default) these members will be included in the
243 # various overviews, but no documentation section is generated. 336 # various overviews, but no documentation section is generated.
309 # brief documentation of file, namespace and class members alphabetically 402 # brief documentation of file, namespace and class members alphabetically
310 # by member name. If set to NO (the default) the members will appear in 403 # by member name. If set to NO (the default) the members will appear in
311 # declaration order. 404 # declaration order.
312 405
313 SORT_BRIEF_DOCS = NO 406 SORT_BRIEF_DOCS = NO
407
408 # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the (brief and detailed) documentation of class members so that constructors and destructors are listed first. If set to NO (the default) the constructors will appear in the respective orders defined by SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.
409
410 SORT_MEMBERS_CTORS_1ST = NO
411
412 # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
413 # hierarchy of group names into alphabetical order. If set to NO (the default)
414 # the group names will appear in their defined order.
415
416 SORT_GROUP_NAMES = NO
314 417
315 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 418 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
316 # sorted by fully-qualified names, including namespaces. If set to 419 # sorted by fully-qualified names, including namespaces. If set to
317 # NO (the default), the class list will be sorted only by class name, 420 # NO (the default), the class list will be sorted only by class name,
318 # not including the namespace part. 421 # not including the namespace part.
367 470
368 SHOW_USED_FILES = YES 471 SHOW_USED_FILES = YES
369 472
370 # If the sources in your project are distributed over multiple directories 473 # If the sources in your project are distributed over multiple directories
371 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 474 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
372 # in the documentation. 475 # in the documentation. The default is NO.
373 476
374 SHOW_DIRECTORIES = YES 477 SHOW_DIRECTORIES = YES
478
479 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
480 # This will remove the Files entry from the Quick Index and from the
481 # Folder Tree View (if specified). The default is YES.
482
483 SHOW_FILES = YES
484
485 # Set the SHOW_NAMESPACES tag to NO to disable the generation of the
486 # Namespaces page.
487 # This will remove the Namespaces entry from the Quick Index
488 # and from the Folder Tree View (if specified). The default is YES.
489
490 SHOW_NAMESPACES = YES
491
492 # The FILE_VERSION_FILTER tag can be used to specify a program or script that
493 # doxygen should invoke to get the current version for each file (typically from
494 # the version control system). Doxygen will invoke the program by executing (via
495 # popen()) the command <command> <input-file>, where <command> is the value of
496 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
497 # provided by doxygen. Whatever the program writes to standard output
498 # is used as the file version. See the manual for examples.
499
500 FILE_VERSION_FILTER =
501
502 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by
503 # doxygen. The layout file controls the global structure of the generated output files
504 # in an output format independent way. The create the layout file that represents
505 # doxygen's defaults, run doxygen with the -l option. You can optionally specify a
506 # file name after the option, if omitted DoxygenLayout.xml will be used as the name
507 # of the layout file.
508
509 LAYOUT_FILE =
375 510
376 #--------------------------------------------------------------------------- 511 #---------------------------------------------------------------------------
377 # configuration options related to warning and progress messages 512 # configuration options related to warning and progress messages
378 #--------------------------------------------------------------------------- 513 #---------------------------------------------------------------------------
379 514
399 # parameters in a documented function, or documenting parameters that 534 # parameters in a documented function, or documenting parameters that
400 # don't exist or using markup commands wrongly. 535 # don't exist or using markup commands wrongly.
401 536
402 WARN_IF_DOC_ERROR = YES 537 WARN_IF_DOC_ERROR = YES
403 538
539 # This WARN_NO_PARAMDOC option can be abled to get warnings for
540 # functions that are documented, but have no documentation for their parameters
541 # or return value. If set to NO (the default) doxygen will only warn about
542 # wrong or incomplete parameter documentation, but not about the absence of
543 # documentation.
544
545 WARN_NO_PARAMDOC = NO
546
404 # The WARN_FORMAT tag determines the format of the warning messages that 547 # The WARN_FORMAT tag determines the format of the warning messages that
405 # doxygen can produce. The string should contain the $file, $line, and $text 548 # doxygen can produce. The string should contain the $file, $line, and $text
406 # tags, which will be replaced by the file and line number from which the 549 # tags, which will be replaced by the file and line number from which the
407 # warning originated and the warning text. 550 # warning originated and the warning text. Optionally the format may contain
551 # $version, which will be replaced by the version of the file (if it could
552 # be obtained via FILE_VERSION_FILTER)
408 553
409 WARN_FORMAT = "$file:$line: $text" 554 WARN_FORMAT = "$file:$line: $text"
410 555
411 # The WARN_LOGFILE tag can be used to specify a file to which warning 556 # The WARN_LOGFILE tag can be used to specify a file to which warning
412 # and error messages should be written. If left blank the output is written 557 # and error messages should be written. If left blank the output is written
421 # The INPUT tag can be used to specify the files and/or directories that contain 566 # The INPUT tag can be used to specify the files and/or directories that contain
422 # documented source files. You may enter file names like "myfile.cpp" or 567 # documented source files. You may enter file names like "myfile.cpp" or
423 # directories like "/usr/src/myproject". Separate the files or directories 568 # directories like "/usr/src/myproject". Separate the files or directories
424 # with spaces. 569 # with spaces.
425 570
426 INPUT = config.h src 571 INPUT = config.h \
572 src
573
574 # This tag can be used to specify the character encoding of the source files
575 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
576 # also the default input encoding. Doxygen uses libiconv (or the iconv built
577 # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for
578 # the list of possible encodings.
579
580 INPUT_ENCODING = UTF-8
427 581
428 # If the value of the INPUT tag contains directories, you can use the 582 # If the value of the INPUT tag contains directories, you can use the
429 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 583 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
430 # and *.h) to filter out the source-files in the directories. If left 584 # and *.h) to filter out the source-files in the directories. If left
431 # blank the following patterns are tested: 585 # blank the following patterns are tested:
432 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp 586 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
433 # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm 587 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
434 588
435 FILE_PATTERNS = 589 FILE_PATTERNS =
436 590
437 # The RECURSIVE tag can be used to turn specify whether or not subdirectories 591 # The RECURSIVE tag can be used to turn specify whether or not subdirectories
438 # should be searched for input files as well. Possible values are YES and NO. 592 # should be searched for input files as well. Possible values are YES and NO.
444 # excluded from the INPUT source files. This way you can easily exclude a 598 # excluded from the INPUT source files. This way you can easily exclude a
445 # subdirectory from a directory tree whose root is specified with the INPUT tag. 599 # subdirectory from a directory tree whose root is specified with the INPUT tag.
446 600
447 EXCLUDE = 601 EXCLUDE =
448 602
449 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories 603 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or
450 # that are symbolic links (a Unix filesystem feature) are excluded from the input. 604 # directories that are symbolic links (a Unix filesystem feature) are excluded
605 # from the input.
451 606
452 EXCLUDE_SYMLINKS = NO 607 EXCLUDE_SYMLINKS = NO
453 608
454 # If the value of the INPUT tag contains directories, you can use the 609 # If the value of the INPUT tag contains directories, you can use the
455 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 610 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
456 # certain files from those directories. 611 # certain files from those directories. Note that the wildcards are matched
612 # against the file with absolute path, so to exclude all test directories
613 # for example use the pattern */test/*
457 614
458 EXCLUDE_PATTERNS = 615 EXCLUDE_PATTERNS =
616
617 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
618 # (namespaces, classes, functions, etc.) that should be excluded from the
619 # output. The symbol name can be a fully qualified name, a word, or if the
620 # wildcard * is used, a substring. Examples: ANamespace, AClass,
621 # AClass::ANamespace, ANamespace::*Test
622
623 EXCLUDE_SYMBOLS =
459 624
460 # The EXAMPLE_PATH tag can be used to specify one or more files or 625 # The EXAMPLE_PATH tag can be used to specify one or more files or
461 # directories that contain example code fragments that are included (see 626 # directories that contain example code fragments that are included (see
462 # the \include command). 627 # the \include command).
463 628
486 # The INPUT_FILTER tag can be used to specify a program that doxygen should 651 # The INPUT_FILTER tag can be used to specify a program that doxygen should
487 # invoke to filter for each input file. Doxygen will invoke the filter program 652 # invoke to filter for each input file. Doxygen will invoke the filter program
488 # by executing (via popen()) the command <filter> <input-file>, where <filter> 653 # by executing (via popen()) the command <filter> <input-file>, where <filter>
489 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an 654 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an
490 # input file. Doxygen will then use the output that the filter program writes 655 # input file. Doxygen will then use the output that the filter program writes
491 # to standard output. If FILTER_PATTERNS is specified, this tag will be 656 # to standard output.
657 # If FILTER_PATTERNS is specified, this tag will be
492 # ignored. 658 # ignored.
493 659
494 INPUT_FILTER = 660 INPUT_FILTER =
495 661
496 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 662 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
497 # basis. Doxygen will compare the file name with each pattern and apply the 663 # basis.
498 # filter if there is a match. The filters are a list of the form: 664 # Doxygen will compare the file name with each pattern and apply the
665 # filter if there is a match.
666 # The filters are a list of the form:
499 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 667 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
500 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 668 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
501 # is applied to all files. 669 # is applied to all files.
502 670
503 FILTER_PATTERNS = 671 FILTER_PATTERNS =
528 # doxygen to hide any special comment blocks from generated source code 696 # doxygen to hide any special comment blocks from generated source code
529 # fragments. Normal C and C++ comments will always remain visible. 697 # fragments. Normal C and C++ comments will always remain visible.
530 698
531 STRIP_CODE_COMMENTS = YES 699 STRIP_CODE_COMMENTS = YES
532 700
533 # If the REFERENCED_BY_RELATION tag is set to YES (the default) 701 # If the REFERENCED_BY_RELATION tag is set to YES
534 # then for each documented function all documented 702 # then for each documented function all documented
535 # functions referencing it will be listed. 703 # functions referencing it will be listed.
536 704
537 REFERENCED_BY_RELATION = YES 705 REFERENCED_BY_RELATION = YES
538 706
539 # If the REFERENCES_RELATION tag is set to YES (the default) 707 # If the REFERENCES_RELATION tag is set to YES
540 # then for each documented function all documented entities 708 # then for each documented function all documented entities
541 # called/used by that function will be listed. 709 # called/used by that function will be listed.
542 710
543 REFERENCES_RELATION = YES 711 REFERENCES_RELATION = YES
712
713 # If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
714 # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
715 # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
716 # link to the source code.
717 # Otherwise they will link to the documentation.
718
719 REFERENCES_LINK_SOURCE = YES
720
721 # If the USE_HTAGS tag is set to YES then the references to source code
722 # will point to the HTML generated by the htags(1) tool instead of doxygen
723 # built-in source browser. The htags tool is part of GNU's global source
724 # tagging system (see http://www.gnu.org/software/global/global.html). You
725 # will need version 4.8.6 or higher.
726
727 USE_HTAGS = NO
544 728
545 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 729 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
546 # will generate a verbatim copy of the header file for each class for 730 # will generate a verbatim copy of the header file for each class for
547 # which an include is specified. Set to NO to disable this. 731 # which an include is specified. Set to NO to disable this.
548 732
601 # The HTML_FOOTER tag can be used to specify a personal HTML footer for 785 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
602 # each generated HTML page. If it is left blank doxygen will generate a 786 # each generated HTML page. If it is left blank doxygen will generate a
603 # standard footer. 787 # standard footer.
604 788
605 HTML_FOOTER = 789 HTML_FOOTER =
790
791 # If the HTML_TIMESTAMP tag is set to YES then the generated HTML
792 # documentation will contain the timesstamp.
793
794 HTML_TIMESTAMP = NO
606 795
607 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading 796 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading
608 # style sheet that is used by each HTML page. It can be used to 797 # style sheet that is used by each HTML page. It can be used to
609 # fine-tune the look of the HTML output. If the tag is left blank doxygen 798 # fine-tune the look of the HTML output. If the tag is left blank doxygen
610 # will generate a default style sheet. Note that doxygen will try to copy 799 # will generate a default style sheet. Note that doxygen will try to copy
617 # files or namespaces will be aligned in HTML using tables. If set to 806 # files or namespaces will be aligned in HTML using tables. If set to
618 # NO a bullet list will be used. 807 # NO a bullet list will be used.
619 808
620 HTML_ALIGN_MEMBERS = YES 809 HTML_ALIGN_MEMBERS = YES
621 810
811 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
812 # documentation will contain sections that can be hidden and shown after the
813 # page has loaded. For this to work a browser that supports
814 # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
815 # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
816
817 HTML_DYNAMIC_SECTIONS = NO
818
819 # If the GENERATE_DOCSET tag is set to YES, additional index files
820 # will be generated that can be used as input for Apple's Xcode 3
821 # integrated development environment, introduced with OSX 10.5 (Leopard).
822 # To create a documentation set, doxygen will generate a Makefile in the
823 # HTML output directory. Running make will produce the docset in that
824 # directory and running "make install" will install the docset in
825 # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find
826 # it at startup.
827 # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information.
828
829 GENERATE_DOCSET = NO
830
831 # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the
832 # feed. A documentation feed provides an umbrella under which multiple
833 # documentation sets from a single provider (such as a company or product suite)
834 # can be grouped.
835
836 DOCSET_FEEDNAME = "Doxygen generated docs"
837
838 # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that
839 # should uniquely identify the documentation set bundle. This should be a
840 # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen
841 # will append .docset to the name.
842
843 DOCSET_BUNDLE_ID = org.doxygen.Project
844
622 # If the GENERATE_HTMLHELP tag is set to YES, additional index files 845 # If the GENERATE_HTMLHELP tag is set to YES, additional index files
623 # will be generated that can be used as input for tools like the 846 # will be generated that can be used as input for tools like the
624 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 847 # Microsoft HTML help workshop to generate a compiled HTML help file (.chm)
625 # of the generated HTML documentation. 848 # of the generated HTML documentation.
626 849
627 GENERATE_HTMLHELP = NO 850 GENERATE_HTMLHELP = NO
628 851
629 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 852 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
644 # controls if a separate .chi index file is generated (YES) or that 867 # controls if a separate .chi index file is generated (YES) or that
645 # it should be included in the master .chm file (NO). 868 # it should be included in the master .chm file (NO).
646 869
647 GENERATE_CHI = NO 870 GENERATE_CHI = NO
648 871
872 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING
873 # is used to encode HtmlHelp index (hhk), content (hhc) and project file
874 # content.
875
876 CHM_INDEX_ENCODING =
877
649 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 878 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
650 # controls whether a binary table of contents is generated (YES) or a 879 # controls whether a binary table of contents is generated (YES) or a
651 # normal table of contents (NO) in the .chm file. 880 # normal table of contents (NO) in the .chm file.
652 881
653 BINARY_TOC = NO 882 BINARY_TOC = NO
655 # The TOC_EXPAND flag can be set to YES to add extra items for group members 884 # The TOC_EXPAND flag can be set to YES to add extra items for group members
656 # to the contents of the HTML help documentation and to the tree view. 885 # to the contents of the HTML help documentation and to the tree view.
657 886
658 TOC_EXPAND = NO 887 TOC_EXPAND = NO
659 888
889 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER
890 # are set, an additional index file will be generated that can be used as input for
891 # Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated
892 # HTML documentation.
893
894 GENERATE_QHP = NO
895
896 # If the QHG_LOCATION tag is specified, the QCH_FILE tag can
897 # be used to specify the file name of the resulting .qch file.
898 # The path specified is relative to the HTML output folder.
899
900 QCH_FILE =
901
902 # The QHP_NAMESPACE tag specifies the namespace to use when generating
903 # Qt Help Project output. For more information please see
904 # http://doc.trolltech.com/qthelpproject.html#namespace
905
906 QHP_NAMESPACE =
907
908 # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating
909 # Qt Help Project output. For more information please see
910 # http://doc.trolltech.com/qthelpproject.html#virtual-folders
911
912 QHP_VIRTUAL_FOLDER = doc
913
914 # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add.
915 # For more information please see
916 # http://doc.trolltech.com/qthelpproject.html#custom-filters
917
918 QHP_CUST_FILTER_NAME =
919
920 # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see
921 # <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters">Qt Help Project / Custom Filters</a>.
922
923 QHP_CUST_FILTER_ATTRS =
924
925 # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this project's
926 # filter section matches.
927 # <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes">Qt Help Project / Filter Attributes</a>.
928
929 QHP_SECT_FILTER_ATTRS =
930
931 # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can
932 # be used to specify the location of Qt's qhelpgenerator.
933 # If non-empty doxygen will try to run qhelpgenerator on the generated
934 # .qhp file.
935
936 QHG_LOCATION =
937
660 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at 938 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at
661 # top of each HTML page. The value NO (the default) enables the index and 939 # top of each HTML page. The value NO (the default) enables the index and
662 # the value YES disables it. 940 # the value YES disables it.
663 941
664 DISABLE_INDEX = NO 942 DISABLE_INDEX = NO
666 # This tag can be used to set the number of enum values (range [1..20]) 944 # This tag can be used to set the number of enum values (range [1..20])
667 # that doxygen will group on one line in the generated HTML documentation. 945 # that doxygen will group on one line in the generated HTML documentation.
668 946
669 ENUM_VALUES_PER_LINE = 4 947 ENUM_VALUES_PER_LINE = 4
670 948
671 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be 949 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
672 # generated containing a tree-like index structure (just like the one that 950 # structure should be generated to display hierarchical information.
951 # If the tag value is set to YES, a side panel will be generated
952 # containing a tree-like index structure (just like the one that
673 # is generated for HTML Help). For this to work a browser that supports 953 # is generated for HTML Help). For this to work a browser that supports
674 # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 954 # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser).
675 # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 955 # Windows users are probably better off using the HTML help feature.
676 # probably better off using the HTML help feature.
677 956
678 GENERATE_TREEVIEW = YES 957 GENERATE_TREEVIEW = YES
958
959 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
960 # and Class Hierarchy pages using a tree view instead of an ordered list.
961
962 USE_INLINE_TREES = NO
679 963
680 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 964 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
681 # used to set the initial width (in pixels) of the frame in which the tree 965 # used to set the initial width (in pixels) of the frame in which the tree
682 # is shown. 966 # is shown.
683 967
684 TREEVIEW_WIDTH = 250 968 TREEVIEW_WIDTH = 250
969
970 # Use this tag to change the font size of Latex formulas included
971 # as images in the HTML documentation. The default is 10. Note that
972 # when you change the font size after a successful doxygen run you need
973 # to manually remove any form_*.png images from the HTML output directory
974 # to force them to be regenerated.
975
976 FORMULA_FONTSIZE = 10
977
978 # When the SEARCHENGINE tag is enable doxygen will generate a search box for the HTML output. The underlying search engine uses javascript
979 # and DHTML and should work on any modern browser. Note that when using HTML help (GENERATE_HTMLHELP) or Qt help (GENERATE_QHP)
980 # there is already a search function so this one should typically
981 # be disabled.
982
983 SEARCHENGINE = NO
685 984
686 #--------------------------------------------------------------------------- 985 #---------------------------------------------------------------------------
687 # configuration options related to the LaTeX output 986 # configuration options related to the LaTeX output
688 #--------------------------------------------------------------------------- 987 #---------------------------------------------------------------------------
689 988
756 # If LATEX_HIDE_INDICES is set to YES then doxygen will not 1055 # If LATEX_HIDE_INDICES is set to YES then doxygen will not
757 # include the index chapters (such as File Index, Compound Index, etc.) 1056 # include the index chapters (such as File Index, Compound Index, etc.)
758 # in the output. 1057 # in the output.
759 1058
760 LATEX_HIDE_INDICES = NO 1059 LATEX_HIDE_INDICES = NO
1060
1061 # If LATEX_SOURCE_CODE is set to YES then doxygen will include source code with syntax highlighting in the LaTeX output. Note that which sources are shown also depends on other settings such as SOURCE_BROWSER.
1062
1063 LATEX_SOURCE_CODE = NO
761 1064
762 #--------------------------------------------------------------------------- 1065 #---------------------------------------------------------------------------
763 # configuration options related to the RTF output 1066 # configuration options related to the RTF output
764 #--------------------------------------------------------------------------- 1067 #---------------------------------------------------------------------------
765 1068
893 # to generate PDF and DVI output from the Perl module output. 1196 # to generate PDF and DVI output from the Perl module output.
894 1197
895 PERLMOD_LATEX = NO 1198 PERLMOD_LATEX = NO
896 1199
897 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 1200 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
898 # nicely formatted so it can be parsed by a human reader. This is useful 1201 # nicely formatted so it can be parsed by a human reader.
899 # if you want to understand what is going on. On the other hand, if this 1202 # This is useful
1203 # if you want to understand what is going on.
1204 # On the other hand, if this
900 # tag is set to NO the size of the Perl module output will be much smaller 1205 # tag is set to NO the size of the Perl module output will be much smaller
901 # and Perl will parse it just the same. 1206 # and Perl will parse it just the same.
902 1207
903 PERLMOD_PRETTY = YES 1208 PERLMOD_PRETTY = YES
904 1209
926 1231
927 MACRO_EXPANSION = YES 1232 MACRO_EXPANSION = YES
928 1233
929 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 1234 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
930 # then the macro expansion is limited to the macros specified with the 1235 # then the macro expansion is limited to the macros specified with the
931 # PREDEFINED and EXPAND_AS_PREDEFINED tags. 1236 # PREDEFINED and EXPAND_AS_DEFINED tags.
932 1237
933 EXPAND_ONLY_PREDEF = NO 1238 EXPAND_ONLY_PREDEF = NO
934 1239
935 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 1240 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
936 # in the INCLUDE_PATH (see below) will be search if a #include is found. 1241 # in the INCLUDE_PATH (see below) will be search if a #include is found.
968 EXPAND_AS_DEFINED = 1273 EXPAND_AS_DEFINED =
969 1274
970 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 1275 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
971 # doxygen's preprocessor will remove all function-like macros that are alone 1276 # doxygen's preprocessor will remove all function-like macros that are alone
972 # on a line, have an all uppercase name, and do not end with a semicolon. Such 1277 # on a line, have an all uppercase name, and do not end with a semicolon. Such
973 # function macros are typically used for boiler-plate code, and will confuse the 1278 # function macros are typically used for boiler-plate code, and will confuse
974 # parser if not removed. 1279 # the parser if not removed.
975 1280
976 SKIP_FUNCTION_MACROS = YES 1281 SKIP_FUNCTION_MACROS = YES
977 1282
978 #--------------------------------------------------------------------------- 1283 #---------------------------------------------------------------------------
979 # Configuration::additions related to external references 1284 # Configuration::additions related to external references
981 1286
982 # The TAGFILES option can be used to specify one or more tagfiles. 1287 # The TAGFILES option can be used to specify one or more tagfiles.
983 # Optionally an initial location of the external documentation 1288 # Optionally an initial location of the external documentation
984 # can be added for each tagfile. The format of a tag file without 1289 # can be added for each tagfile. The format of a tag file without
985 # this location is as follows: 1290 # this location is as follows:
986 # TAGFILES = file1 file2 ... 1291 #
1292 # TAGFILES = file1 file2 ...
987 # Adding location for the tag files is done as follows: 1293 # Adding location for the tag files is done as follows:
988 # TAGFILES = file1=loc1 "file2 = loc2" ... 1294 #
1295 # TAGFILES = file1=loc1 "file2 = loc2" ...
989 # where "loc1" and "loc2" can be relative or absolute paths or 1296 # where "loc1" and "loc2" can be relative or absolute paths or
990 # URLs. If a location is present for each tag, the installdox tool 1297 # URLs. If a location is present for each tag, the installdox tool
991 # does not have to be run to correct the links. 1298 # does not have to be run to correct the links.
992 # Note that each tag file must have a unique name 1299 # Note that each tag file must have a unique name
993 # (where the name does NOT include the path) 1300 # (where the name does NOT include the path)
1021 #--------------------------------------------------------------------------- 1328 #---------------------------------------------------------------------------
1022 # Configuration options related to the dot tool 1329 # Configuration options related to the dot tool
1023 #--------------------------------------------------------------------------- 1330 #---------------------------------------------------------------------------
1024 1331
1025 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 1332 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
1026 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base or 1333 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
1027 # super classes. Setting the tag to NO turns the diagrams off. Note that this 1334 # or super classes. Setting the tag to NO turns the diagrams off. Note that
1028 # option is superseded by the HAVE_DOT option below. This is only a fallback. It is 1335 # this option is superseded by the HAVE_DOT option below. This is only a
1029 # recommended to install and use dot, since it yields more powerful graphs. 1336 # fallback. It is recommended to install and use dot, since it yields more
1337 # powerful graphs.
1030 1338
1031 CLASS_DIAGRAMS = YES 1339 CLASS_DIAGRAMS = YES
1340
1341 # You can define message sequence charts within doxygen comments using the \msc
1342 # command. Doxygen will then run the mscgen tool (see
1343 # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the
1344 # documentation. The MSCGEN_PATH tag allows you to specify the directory where
1345 # the mscgen tool resides. If left empty the tool is assumed to be found in the
1346 # default search path.
1347
1348 MSCGEN_PATH =
1032 1349
1033 # If set to YES, the inheritance and collaboration graphs will hide 1350 # If set to YES, the inheritance and collaboration graphs will hide
1034 # inheritance and usage relations if the target is undocumented 1351 # inheritance and usage relations if the target is undocumented
1035 # or is not a class. 1352 # or is not a class.
1036 1353
1041 # toolkit from AT&T and Lucent Bell Labs. The other options in this section 1358 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
1042 # have no effect if this option is set to NO (the default) 1359 # have no effect if this option is set to NO (the default)
1043 1360
1044 HAVE_DOT = YES 1361 HAVE_DOT = YES
1045 1362
1363 # By default doxygen will write a font called FreeSans.ttf to the output
1364 # directory and reference it in all dot files that doxygen generates. This
1365 # font does not include all possible unicode characters however, so when you need
1366 # these (or just want a differently looking font) you can specify the font name
1367 # using DOT_FONTNAME. You need need to make sure dot is able to find the font,
1368 # which can be done by putting it in a standard location or by setting the
1369 # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory
1370 # containing the font.
1371
1372 DOT_FONTNAME = FreeSans
1373
1374 # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs.
1375 # The default size is 10pt.
1376
1377 DOT_FONTSIZE = 10
1378
1379 # By default doxygen will tell dot to use the output directory to look for the
1380 # FreeSans.ttf font (which doxygen will put there itself). If you specify a
1381 # different font using DOT_FONTNAME you can set the path where dot
1382 # can find it using this tag.
1383
1384 DOT_FONTPATH =
1385
1046 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 1386 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
1047 # will generate a graph for each documented class showing the direct and 1387 # will generate a graph for each documented class showing the direct and
1048 # indirect inheritance relations. Setting this tag to YES will force the 1388 # indirect inheritance relations. Setting this tag to YES will force the
1049 # the CLASS_DIAGRAMS tag to NO. 1389 # the CLASS_DIAGRAMS tag to NO.
1050 1390
1055 # indirect implementation dependencies (inheritance, containment, and 1395 # indirect implementation dependencies (inheritance, containment, and
1056 # class references variables) of the class with other documented classes. 1396 # class references variables) of the class with other documented classes.
1057 1397
1058 COLLABORATION_GRAPH = YES 1398 COLLABORATION_GRAPH = YES
1059 1399
1400 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
1401 # will generate a graph for groups, showing the direct groups dependencies
1402
1403 GROUP_GRAPHS = YES
1404
1060 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and 1405 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
1061 # collaboration diagrams in a style similar to the OMG's Unified Modeling 1406 # collaboration diagrams in a style similar to the OMG's Unified Modeling
1062 # Language. 1407 # Language.
1063 1408
1064 UML_LOOK = NO 1409 UML_LOOK = NO
1080 # documented header file showing the documented files that directly or 1425 # documented header file showing the documented files that directly or
1081 # indirectly include this file. 1426 # indirectly include this file.
1082 1427
1083 INCLUDED_BY_GRAPH = YES 1428 INCLUDED_BY_GRAPH = YES
1084 1429
1085 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will 1430 # If the CALL_GRAPH and HAVE_DOT options are set to YES then
1086 # generate a call dependency graph for every global function or class method. 1431 # doxygen will generate a call dependency graph for every global function
1087 # Note that enabling this option will significantly increase the time of a run. 1432 # or class method. Note that enabling this option will significantly increase
1088 # So in most cases it will be better to enable call graphs for selected 1433 # the time of a run. So in most cases it will be better to enable call graphs
1089 # functions only using the \callgraph command. 1434 # for selected functions only using the \callgraph command.
1090 1435
1091 CALL_GRAPH = YES 1436 CALL_GRAPH = YES
1437
1438 # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then
1439 # doxygen will generate a caller dependency graph for every global function
1440 # or class method. Note that enabling this option will significantly increase
1441 # the time of a run. So in most cases it will be better to enable caller
1442 # graphs for selected functions only using the \callergraph command.
1443
1444 CALLER_GRAPH = NO
1092 1445
1093 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 1446 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
1094 # will graphical hierarchy of all classes instead of a textual one. 1447 # will graphical hierarchy of all classes instead of a textual one.
1095 1448
1096 GRAPHICAL_HIERARCHY = YES 1449 GRAPHICAL_HIERARCHY = YES
1450
1451 # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
1452 # then doxygen will show the dependencies a directory has on other directories
1453 # in a graphical way. The dependency relations are determined by the #include
1454 # relations between the files in the directories.
1455
1456 DIRECTORY_GRAPH = YES
1097 1457
1098 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 1458 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
1099 # generated by dot. Possible values are png, jpg, or gif 1459 # generated by dot. Possible values are png, jpg, or gif
1100 # If left blank png will be used. 1460 # If left blank png will be used.
1101 1461
1102 DOT_IMAGE_FORMAT = png 1462 DOT_IMAGE_FORMAT = png
1103 1463
1104 # The tag DOT_PATH can be used to specify the path where the dot tool can be 1464 # The tag DOT_PATH can be used to specify the path where the dot tool can be
1105 # found. If left blank, it is assumed the dot tool can be found on the path. 1465 # found. If left blank, it is assumed the dot tool can be found in the path.
1106 1466
1107 DOT_PATH = 1467 DOT_PATH =
1108 1468
1109 # The DOTFILE_DIRS tag can be used to specify one or more directories that 1469 # The DOTFILE_DIRS tag can be used to specify one or more directories that
1110 # contain dot files that are included in the documentation (see the 1470 # contain dot files that are included in the documentation (see the
1111 # \dotfile command). 1471 # \dotfile command).
1112 1472
1113 DOTFILE_DIRS = 1473 DOTFILE_DIRS =
1114 1474
1115 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 1475 # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
1116 # (in pixels) of the graphs generated by dot. If a graph becomes larger than 1476 # nodes that will be shown in the graph. If the number of nodes in a graph
1117 # this value, doxygen will try to truncate the graph, so that it fits within 1477 # becomes larger than this value, doxygen will truncate the graph, which is
1118 # the specified constraint. Beware that most browsers cannot cope with very 1478 # visualized by representing a node as a red box. Note that doxygen if the
1119 # large images. 1479 # number of direct children of the root node in a graph is already larger than
1120 1480 # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
1121 MAX_DOT_GRAPH_WIDTH = 1024 1481 # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
1122 1482
1123 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 1483 DOT_GRAPH_MAX_NODES = 50
1124 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
1125 # this value, doxygen will try to truncate the graph, so that it fits within
1126 # the specified constraint. Beware that most browsers cannot cope with very
1127 # large images.
1128
1129 MAX_DOT_GRAPH_HEIGHT = 1024
1130 1484
1131 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1485 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
1132 # graphs generated by dot. A depth value of 3 means that only nodes reachable 1486 # graphs generated by dot. A depth value of 3 means that only nodes reachable
1133 # from the root by following a path via at most 3 edges will be shown. Nodes that 1487 # from the root by following a path via at most 3 edges will be shown. Nodes
1134 # lay further from the root node will be omitted. Note that setting this option to 1488 # that lay further from the root node will be omitted. Note that setting this
1135 # 1 or 2 may greatly reduce the computation time needed for large code bases. Also 1489 # option to 1 or 2 may greatly reduce the computation time needed for large
1136 # note that a graph may be further truncated if the graph's image dimensions are 1490 # code bases. Also note that the size of a graph can be further restricted by
1137 # not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH and MAX_DOT_GRAPH_HEIGHT). 1491 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
1138 # If 0 is used for the depth value (the default), the graph is not depth-constrained.
1139 1492
1140 MAX_DOT_GRAPH_DEPTH = 0 1493 MAX_DOT_GRAPH_DEPTH = 0
1494
1495 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
1496 # background. This is disabled by default, because dot on Windows does not
1497 # seem to support this out of the box. Warning: Depending on the platform used,
1498 # enabling this option may lead to badly anti-aliased labels on the edges of
1499 # a graph (i.e. they become hard to read).
1500
1501 DOT_TRANSPARENT = NO
1502
1503 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
1504 # files in one run (i.e. multiple -o and -T options on the command line). This
1505 # makes dot run faster, but since only newer versions of dot (>1.8.10)
1506 # support this, this feature is disabled by default.
1507
1508 DOT_MULTI_TARGETS = NO
1141 1509
1142 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 1510 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
1143 # generate a legend page explaining the meaning of the various boxes and 1511 # generate a legend page explaining the meaning of the various boxes and
1144 # arrows in the dot generated graphs. 1512 # arrows in the dot generated graphs.
1145 1513
1148 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 1516 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
1149 # remove the intermediate dot files that are used to generate 1517 # remove the intermediate dot files that are used to generate
1150 # the various graphs. 1518 # the various graphs.
1151 1519
1152 DOT_CLEANUP = YES 1520 DOT_CLEANUP = YES
1153
1154 #---------------------------------------------------------------------------
1155 # Configuration::additions related to the search engine
1156 #---------------------------------------------------------------------------
1157
1158 # The SEARCHENGINE tag specifies whether or not a search engine should be
1159 # used. If set to NO the values of all tags below this one will be ignored.
1160
1161 SEARCHENGINE = NO