annotate src/sord-0.12.0/doc/reference.doxygen.in @ 83:ae30d91d2ffe

Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author Chris Cannam
date Fri, 07 Feb 2020 11:51:13 +0000
parents c7265573341e
children
rev   line source
Chris@0 1 # Doxyfile 1.8.1.1
Chris@0 2
Chris@0 3 # This file describes the settings to be used by the documentation system
Chris@0 4 # doxygen (www.doxygen.org) for a project.
Chris@0 5 #
Chris@0 6 # All text after a hash (#) is considered a comment and will be ignored.
Chris@0 7 # The format is:
Chris@0 8 # TAG = value [value, ...]
Chris@0 9 # For lists items can also be appended using:
Chris@0 10 # TAG += value [value, ...]
Chris@0 11 # Values that contain spaces should be placed between quotes (" ").
Chris@0 12
Chris@0 13 #---------------------------------------------------------------------------
Chris@0 14 # Project related configuration options
Chris@0 15 #---------------------------------------------------------------------------
Chris@0 16
Chris@0 17 # This tag specifies the encoding used for all characters in the config file
Chris@0 18 # that follow. The default is UTF-8 which is also the encoding used for all
Chris@0 19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
Chris@0 20 # iconv built into libc) for the transcoding. See
Chris@0 21 # http://www.gnu.org/software/libiconv for the list of possible encodings.
Chris@0 22
Chris@0 23 DOXYFILE_ENCODING = UTF-8
Chris@0 24
Chris@0 25 # The PROJECT_NAME tag is a single word (or sequence of words) that should
Chris@0 26 # identify the project. Note that if you do not use Doxywizard you need
Chris@0 27 # to put quotes around the project name if it contains spaces.
Chris@0 28
Chris@0 29 PROJECT_NAME = Sord
Chris@0 30
Chris@0 31 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
Chris@0 32 # This could be handy for archiving the generated documentation or
Chris@0 33 # if some version control system is used.
Chris@0 34
Chris@0 35 PROJECT_NUMBER = @SORD_VERSION@
Chris@0 36
Chris@0 37 # Using the PROJECT_BRIEF tag one can provide an optional one line description
Chris@0 38 # for a project that appears at the top of each page and should give viewer
Chris@0 39 # a quick idea about the purpose of the project. Keep the description short.
Chris@0 40
Chris@0 41 PROJECT_BRIEF =
Chris@0 42
Chris@0 43 # With the PROJECT_LOGO tag one can specify an logo or icon that is
Chris@0 44 # included in the documentation. The maximum height of the logo should not
Chris@0 45 # exceed 55 pixels and the maximum width should not exceed 200 pixels.
Chris@0 46 # Doxygen will copy the logo to the output directory.
Chris@0 47
Chris@0 48 PROJECT_LOGO =
Chris@0 49
Chris@0 50 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
Chris@0 51 # base path where the generated documentation will be put.
Chris@0 52 # If a relative path is entered, it will be relative to the location
Chris@0 53 # where doxygen was started. If left blank the current directory will be used.
Chris@0 54
Chris@0 55 OUTPUT_DIRECTORY = @SORD_DOC_DIR@
Chris@0 56
Chris@0 57 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
Chris@0 58 # 4096 sub-directories (in 2 levels) under the output directory of each output
Chris@0 59 # format and will distribute the generated files over these directories.
Chris@0 60 # Enabling this option can be useful when feeding doxygen a huge amount of
Chris@0 61 # source files, where putting all generated files in the same directory would
Chris@0 62 # otherwise cause performance problems for the file system.
Chris@0 63
Chris@0 64 CREATE_SUBDIRS = NO
Chris@0 65
Chris@0 66 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
Chris@0 67 # documentation generated by doxygen is written. Doxygen will use this
Chris@0 68 # information to generate all constant output in the proper language.
Chris@0 69 # The default language is English, other supported languages are:
Chris@0 70 # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
Chris@0 71 # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German,
Chris@0 72 # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English
Chris@0 73 # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian,
Chris@0 74 # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak,
Chris@0 75 # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.
Chris@0 76
Chris@0 77 OUTPUT_LANGUAGE = English
Chris@0 78
Chris@0 79 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
Chris@0 80 # include brief member descriptions after the members that are listed in
Chris@0 81 # the file and class documentation (similar to JavaDoc).
Chris@0 82 # Set to NO to disable this.
Chris@0 83
Chris@0 84 BRIEF_MEMBER_DESC = NO
Chris@0 85
Chris@0 86 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
Chris@0 87 # the brief description of a member or function before the detailed description.
Chris@0 88 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
Chris@0 89 # brief descriptions will be completely suppressed.
Chris@0 90
Chris@0 91 REPEAT_BRIEF = YES
Chris@0 92
Chris@0 93 # This tag implements a quasi-intelligent brief description abbreviator
Chris@0 94 # that is used to form the text in various listings. Each string
Chris@0 95 # in this list, if found as the leading text of the brief description, will be
Chris@0 96 # stripped from the text and the result after processing the whole list, is
Chris@0 97 # used as the annotated text. Otherwise, the brief description is used as-is.
Chris@0 98 # If left blank, the following values are used ("$name" is automatically
Chris@0 99 # replaced with the name of the entity): "The $name class" "The $name widget"
Chris@0 100 # "The $name file" "is" "provides" "specifies" "contains"
Chris@0 101 # "represents" "a" "an" "the"
Chris@0 102
Chris@0 103 ABBREVIATE_BRIEF =
Chris@0 104
Chris@0 105 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
Chris@0 106 # Doxygen will generate a detailed section even if there is only a brief
Chris@0 107 # description.
Chris@0 108
Chris@0 109 ALWAYS_DETAILED_SEC = NO
Chris@0 110
Chris@0 111 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
Chris@0 112 # inherited members of a class in the documentation of that class as if those
Chris@0 113 # members were ordinary class members. Constructors, destructors and assignment
Chris@0 114 # operators of the base classes will not be shown.
Chris@0 115
Chris@0 116 INLINE_INHERITED_MEMB = NO
Chris@0 117
Chris@0 118 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
Chris@0 119 # path before files name in the file list and in the header files. If set
Chris@0 120 # to NO the shortest path that makes the file name unique will be used.
Chris@0 121
Chris@0 122 FULL_PATH_NAMES = NO
Chris@0 123
Chris@0 124 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
Chris@0 125 # can be used to strip a user-defined part of the path. Stripping is
Chris@0 126 # only done if one of the specified strings matches the left-hand part of
Chris@0 127 # the path. The tag can be used to show relative paths in the file list.
Chris@0 128 # If left blank the directory from which doxygen is run is used as the
Chris@0 129 # path to strip.
Chris@0 130
Chris@0 131 STRIP_FROM_PATH =
Chris@0 132
Chris@0 133 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
Chris@0 134 # the path mentioned in the documentation of a class, which tells
Chris@0 135 # the reader which header file to include in order to use a class.
Chris@0 136 # If left blank only the name of the header file containing the class
Chris@0 137 # definition is used. Otherwise one should specify the include paths that
Chris@0 138 # are normally passed to the compiler using the -I flag.
Chris@0 139
Chris@0 140 STRIP_FROM_INC_PATH =
Chris@0 141
Chris@0 142 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
Chris@0 143 # (but less readable) file names. This can be useful if your file system
Chris@0 144 # doesn't support long names like on DOS, Mac, or CD-ROM.
Chris@0 145
Chris@0 146 SHORT_NAMES = NO
Chris@0 147
Chris@0 148 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
Chris@0 149 # will interpret the first line (until the first dot) of a JavaDoc-style
Chris@0 150 # comment as the brief description. If set to NO, the JavaDoc
Chris@0 151 # comments will behave just like regular Qt-style comments
Chris@0 152 # (thus requiring an explicit @brief command for a brief description.)
Chris@0 153
Chris@0 154 JAVADOC_AUTOBRIEF = YES
Chris@0 155
Chris@0 156 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will
Chris@0 157 # interpret the first line (until the first dot) of a Qt-style
Chris@0 158 # comment as the brief description. If set to NO, the comments
Chris@0 159 # will behave just like regular Qt-style comments (thus requiring
Chris@0 160 # an explicit \brief command for a brief description.)
Chris@0 161
Chris@0 162 QT_AUTOBRIEF = NO
Chris@0 163
Chris@0 164 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
Chris@0 165 # treat a multi-line C++ special comment block (i.e. a block of //! or ///
Chris@0 166 # comments) as a brief description. This used to be the default behaviour.
Chris@0 167 # The new default is to treat a multi-line C++ comment block as a detailed
Chris@0 168 # description. Set this tag to YES if you prefer the old behaviour instead.
Chris@0 169
Chris@0 170 MULTILINE_CPP_IS_BRIEF = NO
Chris@0 171
Chris@0 172 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
Chris@0 173 # member inherits the documentation from any documented member that it
Chris@0 174 # re-implements.
Chris@0 175
Chris@0 176 INHERIT_DOCS = YES
Chris@0 177
Chris@0 178 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
Chris@0 179 # a new page for each member. If set to NO, the documentation of a member will
Chris@0 180 # be part of the file/class/namespace that contains it.
Chris@0 181
Chris@0 182 SEPARATE_MEMBER_PAGES = NO
Chris@0 183
Chris@0 184 # The TAB_SIZE tag can be used to set the number of spaces in a tab.
Chris@0 185 # Doxygen uses this value to replace tabs by spaces in code fragments.
Chris@0 186
Chris@0 187 TAB_SIZE = 4
Chris@0 188
Chris@0 189 # This tag can be used to specify a number of aliases that acts
Chris@0 190 # as commands in the documentation. An alias has the form "name=value".
Chris@0 191 # For example adding "sideeffect=\par Side Effects:\n" will allow you to
Chris@0 192 # put the command \sideeffect (or @sideeffect) in the documentation, which
Chris@0 193 # will result in a user-defined paragraph with heading "Side Effects:".
Chris@0 194 # You can put \n's in the value part of an alias to insert newlines.
Chris@0 195
Chris@0 196 ALIASES =
Chris@0 197
Chris@0 198 # This tag can be used to specify a number of word-keyword mappings (TCL only).
Chris@0 199 # A mapping has the form "name=value". For example adding
Chris@0 200 # "class=itcl::class" will allow you to use the command class in the
Chris@0 201 # itcl::class meaning.
Chris@0 202
Chris@0 203 TCL_SUBST =
Chris@0 204
Chris@0 205 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
Chris@0 206 # sources only. Doxygen will then generate output that is more tailored for C.
Chris@0 207 # For instance, some of the names that are used will be different. The list
Chris@0 208 # of all members will be omitted, etc.
Chris@0 209
Chris@0 210 OPTIMIZE_OUTPUT_FOR_C = YES
Chris@0 211
Chris@0 212 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
Chris@0 213 # sources only. Doxygen will then generate output that is more tailored for
Chris@0 214 # Java. For instance, namespaces will be presented as packages, qualified
Chris@0 215 # scopes will look different, etc.
Chris@0 216
Chris@0 217 OPTIMIZE_OUTPUT_JAVA = NO
Chris@0 218
Chris@0 219 # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
Chris@0 220 # sources only. Doxygen will then generate output that is more tailored for
Chris@0 221 # Fortran.
Chris@0 222
Chris@0 223 OPTIMIZE_FOR_FORTRAN = NO
Chris@0 224
Chris@0 225 # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
Chris@0 226 # sources. Doxygen will then generate output that is tailored for
Chris@0 227 # VHDL.
Chris@0 228
Chris@0 229 OPTIMIZE_OUTPUT_VHDL = NO
Chris@0 230
Chris@0 231 # Doxygen selects the parser to use depending on the extension of the files it
Chris@0 232 # parses. With this tag you can assign which parser to use for a given extension.
Chris@0 233 # Doxygen has a built-in mapping, but you can override or extend it using this
Chris@0 234 # tag. The format is ext=language, where ext is a file extension, and language
Chris@0 235 # is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C,
Chris@0 236 # C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make
Chris@0 237 # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
Chris@0 238 # (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions
Chris@0 239 # you also need to set FILE_PATTERNS otherwise the files are not read by doxygen.
Chris@0 240
Chris@0 241 EXTENSION_MAPPING =
Chris@0 242
Chris@0 243 # If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all
Chris@0 244 # comments according to the Markdown format, which allows for more readable
Chris@0 245 # documentation. See http://daringfireball.net/projects/markdown/ for details.
Chris@0 246 # The output of markdown processing is further processed by doxygen, so you
Chris@0 247 # can mix doxygen, HTML, and XML commands with Markdown formatting.
Chris@0 248 # Disable only in case of backward compatibilities issues.
Chris@0 249
Chris@0 250 MARKDOWN_SUPPORT = YES
Chris@0 251
Chris@0 252 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
Chris@0 253 # to include (a tag file for) the STL sources as input, then you should
Chris@0 254 # set this tag to YES in order to let doxygen match functions declarations and
Chris@0 255 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
Chris@0 256 # func(std::string) {}). This also makes the inheritance and collaboration
Chris@0 257 # diagrams that involve STL classes more complete and accurate.
Chris@0 258
Chris@0 259 BUILTIN_STL_SUPPORT = NO
Chris@0 260
Chris@0 261 # If you use Microsoft's C++/CLI language, you should set this option to YES to
Chris@0 262 # enable parsing support.
Chris@0 263
Chris@0 264 CPP_CLI_SUPPORT = NO
Chris@0 265
Chris@0 266 # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
Chris@0 267 # Doxygen will parse them like normal C++ but will assume all classes use public
Chris@0 268 # instead of private inheritance when no explicit protection keyword is present.
Chris@0 269
Chris@0 270 SIP_SUPPORT = NO
Chris@0 271
Chris@0 272 # For Microsoft's IDL there are propget and propput attributes to indicate getter
Chris@0 273 # and setter methods for a property. Setting this option to YES (the default)
Chris@0 274 # will make doxygen replace the get and set methods by a property in the
Chris@0 275 # documentation. This will only work if the methods are indeed getting or
Chris@0 276 # setting a simple type. If this is not the case, or you want to show the
Chris@0 277 # methods anyway, you should set this option to NO.
Chris@0 278
Chris@0 279 IDL_PROPERTY_SUPPORT = YES
Chris@0 280
Chris@0 281 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
Chris@0 282 # tag is set to YES, then doxygen will reuse the documentation of the first
Chris@0 283 # member in the group (if any) for the other members of the group. By default
Chris@0 284 # all members of a group must be documented explicitly.
Chris@0 285
Chris@0 286 DISTRIBUTE_GROUP_DOC = NO
Chris@0 287
Chris@0 288 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
Chris@0 289 # the same type (for instance a group of public functions) to be put as a
Chris@0 290 # subgroup of that type (e.g. under the Public Functions section). Set it to
Chris@0 291 # NO to prevent subgrouping. Alternatively, this can be done per class using
Chris@0 292 # the \nosubgrouping command.
Chris@0 293
Chris@0 294 SUBGROUPING = YES
Chris@0 295
Chris@0 296 # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and
Chris@0 297 # unions are shown inside the group in which they are included (e.g. using
Chris@0 298 # @ingroup) instead of on a separate page (for HTML and Man pages) or
Chris@0 299 # section (for LaTeX and RTF).
Chris@0 300
Chris@0 301 INLINE_GROUPED_CLASSES = YES
Chris@0 302
Chris@0 303 # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and
Chris@0 304 # unions with only public data fields will be shown inline in the documentation
Chris@0 305 # of the scope in which they are defined (i.e. file, namespace, or group
Chris@0 306 # documentation), provided this scope is documented. If set to NO (the default),
Chris@0 307 # structs, classes, and unions are shown on a separate page (for HTML and Man
Chris@0 308 # pages) or section (for LaTeX and RTF).
Chris@0 309
Chris@0 310 INLINE_SIMPLE_STRUCTS = YES
Chris@0 311
Chris@0 312 # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
Chris@0 313 # is documented as struct, union, or enum with the name of the typedef. So
Chris@0 314 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct
Chris@0 315 # with name TypeT. When disabled the typedef will appear as a member of a file,
Chris@0 316 # namespace, or class. And the struct will be named TypeS. This can typically
Chris@0 317 # be useful for C code in case the coding convention dictates that all compound
Chris@0 318 # types are typedef'ed and only the typedef is referenced, never the tag name.
Chris@0 319
Chris@0 320 TYPEDEF_HIDES_STRUCT = YES
Chris@0 321
Chris@0 322 # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to
Chris@0 323 # determine which symbols to keep in memory and which to flush to disk.
Chris@0 324 # When the cache is full, less often used symbols will be written to disk.
Chris@0 325 # For small to medium size projects (<1000 input files) the default value is
Chris@0 326 # probably good enough. For larger projects a too small cache size can cause
Chris@0 327 # doxygen to be busy swapping symbols to and from disk most of the time
Chris@0 328 # causing a significant performance penalty.
Chris@0 329 # If the system has enough physical memory increasing the cache will improve the
Chris@0 330 # performance by keeping more symbols in memory. Note that the value works on
Chris@0 331 # a logarithmic scale so increasing the size by one will roughly double the
Chris@0 332 # memory usage. The cache size is given by this formula:
Chris@0 333 # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
Chris@0 334 # corresponding to a cache size of 2^16 = 65536 symbols.
Chris@0 335
Chris@0 336 SYMBOL_CACHE_SIZE = 0
Chris@0 337
Chris@0 338 # Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be
Chris@0 339 # set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given
Chris@0 340 # their name and scope. Since this can be an expensive process and often the
Chris@0 341 # same symbol appear multiple times in the code, doxygen keeps a cache of
Chris@0 342 # pre-resolved symbols. If the cache is too small doxygen will become slower.
Chris@0 343 # If the cache is too large, memory is wasted. The cache size is given by this
Chris@0 344 # formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0,
Chris@0 345 # corresponding to a cache size of 2^16 = 65536 symbols.
Chris@0 346
Chris@0 347 LOOKUP_CACHE_SIZE = 0
Chris@0 348
Chris@0 349 #---------------------------------------------------------------------------
Chris@0 350 # Build related configuration options
Chris@0 351 #---------------------------------------------------------------------------
Chris@0 352
Chris@0 353 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
Chris@0 354 # documentation are documented, even if no documentation was available.
Chris@0 355 # Private class members and static file members will be hidden unless
Chris@0 356 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
Chris@0 357
Chris@0 358 EXTRACT_ALL = YES
Chris@0 359
Chris@0 360 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
Chris@0 361 # will be included in the documentation.
Chris@0 362
Chris@0 363 EXTRACT_PRIVATE = NO
Chris@0 364
Chris@0 365 # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal scope will be included in the documentation.
Chris@0 366
Chris@0 367 EXTRACT_PACKAGE = NO
Chris@0 368
Chris@0 369 # If the EXTRACT_STATIC tag is set to YES all static members of a file
Chris@0 370 # will be included in the documentation.
Chris@0 371
Chris@0 372 EXTRACT_STATIC = YES
Chris@0 373
Chris@0 374 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
Chris@0 375 # defined locally in source files will be included in the documentation.
Chris@0 376 # If set to NO only classes defined in header files are included.
Chris@0 377
Chris@0 378 EXTRACT_LOCAL_CLASSES = NO
Chris@0 379
Chris@0 380 # This flag is only useful for Objective-C code. When set to YES local
Chris@0 381 # methods, which are defined in the implementation section but not in
Chris@0 382 # the interface are included in the documentation.
Chris@0 383 # If set to NO (the default) only methods in the interface are included.
Chris@0 384
Chris@0 385 EXTRACT_LOCAL_METHODS = NO
Chris@0 386
Chris@0 387 # If this flag is set to YES, the members of anonymous namespaces will be
Chris@0 388 # extracted and appear in the documentation as a namespace called
Chris@0 389 # 'anonymous_namespace{file}', where file will be replaced with the base
Chris@0 390 # name of the file that contains the anonymous namespace. By default
Chris@0 391 # anonymous namespaces are hidden.
Chris@0 392
Chris@0 393 EXTRACT_ANON_NSPACES = NO
Chris@0 394
Chris@0 395 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
Chris@0 396 # undocumented members of documented classes, files or namespaces.
Chris@0 397 # If set to NO (the default) these members will be included in the
Chris@0 398 # various overviews, but no documentation section is generated.
Chris@0 399 # This option has no effect if EXTRACT_ALL is enabled.
Chris@0 400
Chris@0 401 HIDE_UNDOC_MEMBERS = YES
Chris@0 402
Chris@0 403 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
Chris@0 404 # undocumented classes that are normally visible in the class hierarchy.
Chris@0 405 # If set to NO (the default) these classes will be included in the various
Chris@0 406 # overviews. This option has no effect if EXTRACT_ALL is enabled.
Chris@0 407
Chris@0 408 HIDE_UNDOC_CLASSES = YES
Chris@0 409
Chris@0 410 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
Chris@0 411 # friend (class|struct|union) declarations.
Chris@0 412 # If set to NO (the default) these declarations will be included in the
Chris@0 413 # documentation.
Chris@0 414
Chris@0 415 HIDE_FRIEND_COMPOUNDS = NO
Chris@0 416
Chris@0 417 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
Chris@0 418 # documentation blocks found inside the body of a function.
Chris@0 419 # If set to NO (the default) these blocks will be appended to the
Chris@0 420 # function's detailed documentation block.
Chris@0 421
Chris@0 422 HIDE_IN_BODY_DOCS = YES
Chris@0 423
Chris@0 424 # The INTERNAL_DOCS tag determines if documentation
Chris@0 425 # that is typed after a \internal command is included. If the tag is set
Chris@0 426 # to NO (the default) then the documentation will be excluded.
Chris@0 427 # Set it to YES to include the internal documentation.
Chris@0 428
Chris@0 429 INTERNAL_DOCS = NO
Chris@0 430
Chris@0 431 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
Chris@0 432 # file names in lower-case letters. If set to YES upper-case letters are also
Chris@0 433 # allowed. This is useful if you have classes or files whose names only differ
Chris@0 434 # in case and if your file system supports case sensitive file names. Windows
Chris@0 435 # and Mac users are advised to set this option to NO.
Chris@0 436
Chris@0 437 CASE_SENSE_NAMES = YES
Chris@0 438
Chris@0 439 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
Chris@0 440 # will show members with their full class and namespace scopes in the
Chris@0 441 # documentation. If set to YES the scope will be hidden.
Chris@0 442
Chris@0 443 HIDE_SCOPE_NAMES = NO
Chris@0 444
Chris@0 445 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
Chris@0 446 # will put a list of the files that are included by a file in the documentation
Chris@0 447 # of that file.
Chris@0 448
Chris@0 449 SHOW_INCLUDE_FILES = YES
Chris@0 450
Chris@0 451 # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen
Chris@0 452 # will list include files with double quotes in the documentation
Chris@0 453 # rather than with sharp brackets.
Chris@0 454
Chris@0 455 FORCE_LOCAL_INCLUDES = NO
Chris@0 456
Chris@0 457 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
Chris@0 458 # is inserted in the documentation for inline members.
Chris@0 459
Chris@0 460 INLINE_INFO = YES
Chris@0 461
Chris@0 462 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
Chris@0 463 # will sort the (detailed) documentation of file and class members
Chris@0 464 # alphabetically by member name. If set to NO the members will appear in
Chris@0 465 # declaration order.
Chris@0 466
Chris@0 467 SORT_MEMBER_DOCS = NO
Chris@0 468
Chris@0 469 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
Chris@0 470 # brief documentation of file, namespace and class members alphabetically
Chris@0 471 # by member name. If set to NO (the default) the members will appear in
Chris@0 472 # declaration order.
Chris@0 473
Chris@0 474 SORT_BRIEF_DOCS = NO
Chris@0 475
Chris@0 476 # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen
Chris@0 477 # will sort the (brief and detailed) documentation of class members so that
Chris@0 478 # constructors and destructors are listed first. If set to NO (the default)
Chris@0 479 # the constructors will appear in the respective orders defined by
Chris@0 480 # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS.
Chris@0 481 # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO
Chris@0 482 # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.
Chris@0 483
Chris@0 484 SORT_MEMBERS_CTORS_1ST = NO
Chris@0 485
Chris@0 486 # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
Chris@0 487 # hierarchy of group names into alphabetical order. If set to NO (the default)
Chris@0 488 # the group names will appear in their defined order.
Chris@0 489
Chris@0 490 SORT_GROUP_NAMES = NO
Chris@0 491
Chris@0 492 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
Chris@0 493 # sorted by fully-qualified names, including namespaces. If set to
Chris@0 494 # NO (the default), the class list will be sorted only by class name,
Chris@0 495 # not including the namespace part.
Chris@0 496 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
Chris@0 497 # Note: This option applies only to the class list, not to the
Chris@0 498 # alphabetical list.
Chris@0 499
Chris@0 500 SORT_BY_SCOPE_NAME = YES
Chris@0 501
Chris@0 502 # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to
Chris@0 503 # do proper type resolution of all parameters of a function it will reject a
Chris@0 504 # match between the prototype and the implementation of a member function even
Chris@0 505 # if there is only one candidate or it is obvious which candidate to choose
Chris@0 506 # by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen
Chris@0 507 # will still accept a match between prototype and implementation in such cases.
Chris@0 508
Chris@0 509 STRICT_PROTO_MATCHING = NO
Chris@0 510
Chris@0 511 # The GENERATE_TODOLIST tag can be used to enable (YES) or
Chris@0 512 # disable (NO) the todo list. This list is created by putting \todo
Chris@0 513 # commands in the documentation.
Chris@0 514
Chris@0 515 GENERATE_TODOLIST = NO
Chris@0 516
Chris@0 517 # The GENERATE_TESTLIST tag can be used to enable (YES) or
Chris@0 518 # disable (NO) the test list. This list is created by putting \test
Chris@0 519 # commands in the documentation.
Chris@0 520
Chris@0 521 GENERATE_TESTLIST = NO
Chris@0 522
Chris@0 523 # The GENERATE_BUGLIST tag can be used to enable (YES) or
Chris@0 524 # disable (NO) the bug list. This list is created by putting \bug
Chris@0 525 # commands in the documentation.
Chris@0 526
Chris@0 527 GENERATE_BUGLIST = NO
Chris@0 528
Chris@0 529 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
Chris@0 530 # disable (NO) the deprecated list. This list is created by putting
Chris@0 531 # \deprecated commands in the documentation.
Chris@0 532
Chris@0 533 GENERATE_DEPRECATEDLIST= YES
Chris@0 534
Chris@0 535 # The ENABLED_SECTIONS tag can be used to enable conditional
Chris@0 536 # documentation sections, marked by \if sectionname ... \endif.
Chris@0 537
Chris@0 538 ENABLED_SECTIONS =
Chris@0 539
Chris@0 540 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines
Chris@0 541 # the initial value of a variable or macro consists of for it to appear in
Chris@0 542 # the documentation. If the initializer consists of more lines than specified
Chris@0 543 # here it will be hidden. Use a value of 0 to hide initializers completely.
Chris@0 544 # The appearance of the initializer of individual variables and macros in the
Chris@0 545 # documentation can be controlled using \showinitializer or \hideinitializer
Chris@0 546 # command in the documentation regardless of this setting.
Chris@0 547
Chris@0 548 MAX_INITIALIZER_LINES = 30
Chris@0 549
Chris@0 550 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated
Chris@0 551 # at the bottom of the documentation of classes and structs. If set to YES the
Chris@0 552 # list will mention the files that were used to generate the documentation.
Chris@0 553
Chris@0 554 SHOW_USED_FILES = YES
Chris@0 555
Chris@0 556 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
Chris@0 557 # This will remove the Files entry from the Quick Index and from the
Chris@0 558 # Folder Tree View (if specified). The default is YES.
Chris@0 559
Chris@0 560 SHOW_FILES = NO
Chris@0 561
Chris@0 562 # Set the SHOW_NAMESPACES tag to NO to disable the generation of the
Chris@0 563 # Namespaces page.
Chris@0 564 # This will remove the Namespaces entry from the Quick Index
Chris@0 565 # and from the Folder Tree View (if specified). The default is YES.
Chris@0 566
Chris@0 567 SHOW_NAMESPACES = NO
Chris@0 568
Chris@0 569 # The FILE_VERSION_FILTER tag can be used to specify a program or script that
Chris@0 570 # doxygen should invoke to get the current version for each file (typically from
Chris@0 571 # the version control system). Doxygen will invoke the program by executing (via
Chris@0 572 # popen()) the command <command> <input-file>, where <command> is the value of
Chris@0 573 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
Chris@0 574 # provided by doxygen. Whatever the program writes to standard output
Chris@0 575 # is used as the file version. See the manual for examples.
Chris@0 576
Chris@0 577 FILE_VERSION_FILTER =
Chris@0 578
Chris@0 579 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
Chris@0 580 # by doxygen. The layout file controls the global structure of the generated
Chris@0 581 # output files in an output format independent way. To create the layout file
Chris@0 582 # that represents doxygen's defaults, run doxygen with the -l option.
Chris@0 583 # You can optionally specify a file name after the option, if omitted
Chris@0 584 # DoxygenLayout.xml will be used as the name of the layout file.
Chris@0 585
Chris@0 586 LAYOUT_FILE = @SORD_SRCDIR@/doc/layout.xml
Chris@0 587
Chris@0 588 # The CITE_BIB_FILES tag can be used to specify one or more bib files
Chris@0 589 # containing the references data. This must be a list of .bib files. The
Chris@0 590 # .bib extension is automatically appended if omitted. Using this command
Chris@0 591 # requires the bibtex tool to be installed. See also
Chris@0 592 # http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style
Chris@0 593 # of the bibliography can be controlled using LATEX_BIB_STYLE. To use this
Chris@0 594 # feature you need bibtex and perl available in the search path.
Chris@0 595
Chris@0 596 CITE_BIB_FILES =
Chris@0 597
Chris@0 598 #---------------------------------------------------------------------------
Chris@0 599 # configuration options related to warning and progress messages
Chris@0 600 #---------------------------------------------------------------------------
Chris@0 601
Chris@0 602 # The QUIET tag can be used to turn on/off the messages that are generated
Chris@0 603 # by doxygen. Possible values are YES and NO. If left blank NO is used.
Chris@0 604
Chris@0 605 QUIET = YES
Chris@0 606
Chris@0 607 # The WARNINGS tag can be used to turn on/off the warning messages that are
Chris@0 608 # generated by doxygen. Possible values are YES and NO. If left blank
Chris@0 609 # NO is used.
Chris@0 610
Chris@0 611 WARNINGS = YES
Chris@0 612
Chris@0 613 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
Chris@0 614 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will
Chris@0 615 # automatically be disabled.
Chris@0 616
Chris@0 617 WARN_IF_UNDOCUMENTED = YES
Chris@0 618
Chris@0 619 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
Chris@0 620 # potential errors in the documentation, such as not documenting some
Chris@0 621 # parameters in a documented function, or documenting parameters that
Chris@0 622 # don't exist or using markup commands wrongly.
Chris@0 623
Chris@0 624 WARN_IF_DOC_ERROR = YES
Chris@0 625
Chris@0 626 # The WARN_NO_PARAMDOC option can be enabled to get warnings for
Chris@0 627 # functions that are documented, but have no documentation for their parameters
Chris@0 628 # or return value. If set to NO (the default) doxygen will only warn about
Chris@0 629 # wrong or incomplete parameter documentation, but not about the absence of
Chris@0 630 # documentation.
Chris@0 631
Chris@0 632 WARN_NO_PARAMDOC = YES
Chris@0 633
Chris@0 634 # The WARN_FORMAT tag determines the format of the warning messages that
Chris@0 635 # doxygen can produce. The string should contain the $file, $line, and $text
Chris@0 636 # tags, which will be replaced by the file and line number from which the
Chris@0 637 # warning originated and the warning text. Optionally the format may contain
Chris@0 638 # $version, which will be replaced by the version of the file (if it could
Chris@0 639 # be obtained via FILE_VERSION_FILTER)
Chris@0 640
Chris@0 641 WARN_FORMAT = "$file:$line: $text"
Chris@0 642
Chris@0 643 # The WARN_LOGFILE tag can be used to specify a file to which warning
Chris@0 644 # and error messages should be written. If left blank the output is written
Chris@0 645 # to stderr.
Chris@0 646
Chris@0 647 WARN_LOGFILE =
Chris@0 648
Chris@0 649 #---------------------------------------------------------------------------
Chris@0 650 # configuration options related to the input files
Chris@0 651 #---------------------------------------------------------------------------
Chris@0 652
Chris@0 653 # The INPUT tag can be used to specify the files and/or directories that contain
Chris@0 654 # documented source files. You may enter file names like "myfile.cpp" or
Chris@0 655 # directories like "/usr/src/myproject". Separate the files or directories
Chris@0 656 # with spaces.
Chris@0 657
Chris@0 658 INPUT = @SORD_SRCDIR@/sord/sord.h
Chris@0 659
Chris@0 660 # This tag can be used to specify the character encoding of the source files
Chris@0 661 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
Chris@0 662 # also the default input encoding. Doxygen uses libiconv (or the iconv built
Chris@0 663 # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for
Chris@0 664 # the list of possible encodings.
Chris@0 665
Chris@0 666 INPUT_ENCODING = UTF-8
Chris@0 667
Chris@0 668 # If the value of the INPUT tag contains directories, you can use the
Chris@0 669 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
Chris@0 670 # and *.h) to filter out the source-files in the directories. If left
Chris@0 671 # blank the following patterns are tested:
Chris@0 672 # *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh
Chris@0 673 # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py
Chris@0 674 # *.f90 *.f *.for *.vhd *.vhdl
Chris@0 675
Chris@0 676 FILE_PATTERNS =
Chris@0 677
Chris@0 678 # The RECURSIVE tag can be used to turn specify whether or not subdirectories
Chris@0 679 # should be searched for input files as well. Possible values are YES and NO.
Chris@0 680 # If left blank NO is used.
Chris@0 681
Chris@0 682 RECURSIVE = NO
Chris@0 683
Chris@0 684 # The EXCLUDE tag can be used to specify files and/or directories that should be
Chris@0 685 # excluded from the INPUT source files. This way you can easily exclude a
Chris@0 686 # subdirectory from a directory tree whose root is specified with the INPUT tag.
Chris@0 687 # Note that relative paths are relative to the directory from which doxygen is
Chris@0 688 # run.
Chris@0 689
Chris@0 690 EXCLUDE =
Chris@0 691
Chris@0 692 # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
Chris@0 693 # directories that are symbolic links (a Unix file system feature) are excluded
Chris@0 694 # from the input.
Chris@0 695
Chris@0 696 EXCLUDE_SYMLINKS = NO
Chris@0 697
Chris@0 698 # If the value of the INPUT tag contains directories, you can use the
Chris@0 699 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
Chris@0 700 # certain files from those directories. Note that the wildcards are matched
Chris@0 701 # against the file with absolute path, so to exclude all test directories
Chris@0 702 # for example use the pattern */test/*
Chris@0 703
Chris@0 704 EXCLUDE_PATTERNS =
Chris@0 705
Chris@0 706 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
Chris@0 707 # (namespaces, classes, functions, etc.) that should be excluded from the
Chris@0 708 # output. The symbol name can be a fully qualified name, a word, or if the
Chris@0 709 # wildcard * is used, a substring. Examples: ANamespace, AClass,
Chris@0 710 # AClass::ANamespace, ANamespace::*Test
Chris@0 711
Chris@0 712 EXCLUDE_SYMBOLS =
Chris@0 713
Chris@0 714 # The EXAMPLE_PATH tag can be used to specify one or more files or
Chris@0 715 # directories that contain example code fragments that are included (see
Chris@0 716 # the \include command).
Chris@0 717
Chris@0 718 EXAMPLE_PATH =
Chris@0 719
Chris@0 720 # If the value of the EXAMPLE_PATH tag contains directories, you can use the
Chris@0 721 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
Chris@0 722 # and *.h) to filter out the source-files in the directories. If left
Chris@0 723 # blank all files are included.
Chris@0 724
Chris@0 725 EXAMPLE_PATTERNS = *.c
Chris@0 726
Chris@0 727 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
Chris@0 728 # searched for input files to be used with the \include or \dontinclude
Chris@0 729 # commands irrespective of the value of the RECURSIVE tag.
Chris@0 730 # Possible values are YES and NO. If left blank NO is used.
Chris@0 731
Chris@0 732 EXAMPLE_RECURSIVE = NO
Chris@0 733
Chris@0 734 # The IMAGE_PATH tag can be used to specify one or more files or
Chris@0 735 # directories that contain image that are included in the documentation (see
Chris@0 736 # the \image command).
Chris@0 737
Chris@0 738 IMAGE_PATH =
Chris@0 739
Chris@0 740 # The INPUT_FILTER tag can be used to specify a program that doxygen should
Chris@0 741 # invoke to filter for each input file. Doxygen will invoke the filter program
Chris@0 742 # by executing (via popen()) the command <filter> <input-file>, where <filter>
Chris@0 743 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an
Chris@0 744 # input file. Doxygen will then use the output that the filter program writes
Chris@0 745 # to standard output.
Chris@0 746 # If FILTER_PATTERNS is specified, this tag will be
Chris@0 747 # ignored.
Chris@0 748
Chris@0 749 INPUT_FILTER =
Chris@0 750
Chris@0 751 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
Chris@0 752 # basis.
Chris@0 753 # Doxygen will compare the file name with each pattern and apply the
Chris@0 754 # filter if there is a match.
Chris@0 755 # The filters are a list of the form:
Chris@0 756 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
Chris@0 757 # info on how filters are used. If FILTER_PATTERNS is empty or if
Chris@0 758 # non of the patterns match the file name, INPUT_FILTER is applied.
Chris@0 759
Chris@0 760 FILTER_PATTERNS =
Chris@0 761
Chris@0 762 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
Chris@0 763 # INPUT_FILTER) will be used to filter the input files when producing source
Chris@0 764 # files to browse (i.e. when SOURCE_BROWSER is set to YES).
Chris@0 765
Chris@0 766 FILTER_SOURCE_FILES = NO
Chris@0 767
Chris@0 768 # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
Chris@0 769 # pattern. A pattern will override the setting for FILTER_PATTERN (if any)
Chris@0 770 # and it is also possible to disable source filtering for a specific pattern
Chris@0 771 # using *.ext= (so without naming a filter). This option only has effect when
Chris@0 772 # FILTER_SOURCE_FILES is enabled.
Chris@0 773
Chris@0 774 FILTER_SOURCE_PATTERNS =
Chris@0 775
Chris@0 776 #---------------------------------------------------------------------------
Chris@0 777 # configuration options related to source browsing
Chris@0 778 #---------------------------------------------------------------------------
Chris@0 779
Chris@0 780 # If the SOURCE_BROWSER tag is set to YES then a list of source files will
Chris@0 781 # be generated. Documented entities will be cross-referenced with these sources.
Chris@0 782 # Note: To get rid of all source code in the generated output, make sure also
Chris@0 783 # VERBATIM_HEADERS is set to NO.
Chris@0 784
Chris@0 785 SOURCE_BROWSER = NO
Chris@0 786
Chris@0 787 # Setting the INLINE_SOURCES tag to YES will include the body
Chris@0 788 # of functions and classes directly in the documentation.
Chris@0 789
Chris@0 790 INLINE_SOURCES = NO
Chris@0 791
Chris@0 792 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
Chris@0 793 # doxygen to hide any special comment blocks from generated source code
Chris@0 794 # fragments. Normal C, C++ and Fortran comments will always remain visible.
Chris@0 795
Chris@0 796 STRIP_CODE_COMMENTS = YES
Chris@0 797
Chris@0 798 # If the REFERENCED_BY_RELATION tag is set to YES
Chris@0 799 # then for each documented function all documented
Chris@0 800 # functions referencing it will be listed.
Chris@0 801
Chris@0 802 REFERENCED_BY_RELATION = YES
Chris@0 803
Chris@0 804 # If the REFERENCES_RELATION tag is set to YES
Chris@0 805 # then for each documented function all documented entities
Chris@0 806 # called/used by that function will be listed.
Chris@0 807
Chris@0 808 REFERENCES_RELATION = YES
Chris@0 809
Chris@0 810 # If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
Chris@0 811 # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
Chris@0 812 # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
Chris@0 813 # link to the source code.
Chris@0 814 # Otherwise they will link to the documentation.
Chris@0 815
Chris@0 816 REFERENCES_LINK_SOURCE = YES
Chris@0 817
Chris@0 818 # If the USE_HTAGS tag is set to YES then the references to source code
Chris@0 819 # will point to the HTML generated by the htags(1) tool instead of doxygen
Chris@0 820 # built-in source browser. The htags tool is part of GNU's global source
Chris@0 821 # tagging system (see http://www.gnu.org/software/global/global.html). You
Chris@0 822 # will need version 4.8.6 or higher.
Chris@0 823
Chris@0 824 USE_HTAGS = NO
Chris@0 825
Chris@0 826 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
Chris@0 827 # will generate a verbatim copy of the header file for each class for
Chris@0 828 # which an include is specified. Set to NO to disable this.
Chris@0 829
Chris@0 830 VERBATIM_HEADERS = NO
Chris@0 831
Chris@0 832 #---------------------------------------------------------------------------
Chris@0 833 # configuration options related to the alphabetical class index
Chris@0 834 #---------------------------------------------------------------------------
Chris@0 835
Chris@0 836 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
Chris@0 837 # of all compounds will be generated. Enable this if the project
Chris@0 838 # contains a lot of classes, structs, unions or interfaces.
Chris@0 839
Chris@0 840 ALPHABETICAL_INDEX = NO
Chris@0 841
Chris@0 842 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
Chris@0 843 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
Chris@0 844 # in which this list will be split (can be a number in the range [1..20])
Chris@0 845
Chris@0 846 COLS_IN_ALPHA_INDEX = 5
Chris@0 847
Chris@0 848 # In case all classes in a project start with a common prefix, all
Chris@0 849 # classes will be put under the same header in the alphabetical index.
Chris@0 850 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that
Chris@0 851 # should be ignored while generating the index headers.
Chris@0 852
Chris@0 853 IGNORE_PREFIX =
Chris@0 854
Chris@0 855 #---------------------------------------------------------------------------
Chris@0 856 # configuration options related to the HTML output
Chris@0 857 #---------------------------------------------------------------------------
Chris@0 858
Chris@0 859 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
Chris@0 860 # generate HTML output.
Chris@0 861
Chris@0 862 GENERATE_HTML = YES
Chris@0 863
Chris@0 864 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
Chris@0 865 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
Chris@0 866 # put in front of it. If left blank `html' will be used as the default path.
Chris@0 867
Chris@0 868 HTML_OUTPUT = html
Chris@0 869
Chris@0 870 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for
Chris@0 871 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank
Chris@0 872 # doxygen will generate files with .html extension.
Chris@0 873
Chris@0 874 HTML_FILE_EXTENSION = .html
Chris@0 875
Chris@0 876 # The HTML_HEADER tag can be used to specify a personal HTML header for
Chris@0 877 # each generated HTML page. If it is left blank doxygen will generate a
Chris@0 878 # standard header. Note that when using a custom header you are responsible
Chris@0 879 # for the proper inclusion of any scripts and style sheets that doxygen
Chris@0 880 # needs, which is dependent on the configuration options used.
Chris@0 881 # It is advised to generate a default header using "doxygen -w html
Chris@0 882 # header.html footer.html stylesheet.css YourConfigFile" and then modify
Chris@0 883 # that header. Note that the header is subject to change so you typically
Chris@0 884 # have to redo this when upgrading to a newer version of doxygen or when
Chris@0 885 # changing the value of configuration settings such as GENERATE_TREEVIEW!
Chris@0 886
Chris@0 887 HTML_HEADER =
Chris@0 888
Chris@0 889 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
Chris@0 890 # each generated HTML page. If it is left blank doxygen will generate a
Chris@0 891 # standard footer.
Chris@0 892
Chris@0 893 HTML_FOOTER =
Chris@0 894
Chris@0 895 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading
Chris@0 896 # style sheet that is used by each HTML page. It can be used to
Chris@0 897 # fine-tune the look of the HTML output. If the tag is left blank doxygen
Chris@0 898 # will generate a default style sheet. Note that doxygen will try to copy
Chris@0 899 # the style sheet file to the HTML output directory, so don't put your own
Chris@0 900 # style sheet in the HTML output directory as well, or it will be erased!
Chris@0 901
Chris@0 902 HTML_STYLESHEET = @SORD_SRCDIR@/doc/style.css
Chris@0 903
Chris@0 904 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
Chris@0 905 # other source files which should be copied to the HTML output directory. Note
Chris@0 906 # that these files will be copied to the base HTML output directory. Use the
Chris@0 907 # $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
Chris@0 908 # files. In the HTML_STYLESHEET file, use the file name only. Also note that
Chris@0 909 # the files will be copied as-is; there are no commands or markers available.
Chris@0 910
Chris@0 911 HTML_EXTRA_FILES =
Chris@0 912
Chris@0 913 # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output.
Chris@0 914 # Doxygen will adjust the colors in the style sheet and background images
Chris@0 915 # according to this color. Hue is specified as an angle on a colorwheel,
Chris@0 916 # see http://en.wikipedia.org/wiki/Hue for more information.
Chris@0 917 # For instance the value 0 represents red, 60 is yellow, 120 is green,
Chris@0 918 # 180 is cyan, 240 is blue, 300 purple, and 360 is red again.
Chris@0 919 # The allowed range is 0 to 359.
Chris@0 920
Chris@0 921 HTML_COLORSTYLE_HUE = 160
Chris@0 922
Chris@0 923 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of
Chris@0 924 # the colors in the HTML output. For a value of 0 the output will use
Chris@0 925 # grayscales only. A value of 255 will produce the most vivid colors.
Chris@0 926
Chris@0 927 HTML_COLORSTYLE_SAT = 100
Chris@0 928
Chris@0 929 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to
Chris@0 930 # the luminance component of the colors in the HTML output. Values below
Chris@0 931 # 100 gradually make the output lighter, whereas values above 100 make
Chris@0 932 # the output darker. The value divided by 100 is the actual gamma applied,
Chris@0 933 # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2,
Chris@0 934 # and 100 does not change the gamma.
Chris@0 935
Chris@0 936 HTML_COLORSTYLE_GAMMA = 80
Chris@0 937
Chris@0 938 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
Chris@0 939 # page will contain the date and time when the page was generated. Setting
Chris@0 940 # this to NO can help when comparing the output of multiple runs.
Chris@0 941
Chris@0 942 HTML_TIMESTAMP = NO
Chris@0 943
Chris@0 944 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
Chris@0 945 # documentation will contain sections that can be hidden and shown after the
Chris@0 946 # page has loaded.
Chris@0 947
Chris@0 948 HTML_DYNAMIC_SECTIONS = NO
Chris@0 949
Chris@0 950 # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of
Chris@0 951 # entries shown in the various tree structured indices initially; the user
Chris@0 952 # can expand and collapse entries dynamically later on. Doxygen will expand
Chris@0 953 # the tree to such a level that at most the specified number of entries are
Chris@0 954 # visible (unless a fully collapsed tree already exceeds this amount).
Chris@0 955 # So setting the number of entries 1 will produce a full collapsed tree by
Chris@0 956 # default. 0 is a special value representing an infinite number of entries
Chris@0 957 # and will result in a full expanded tree by default.
Chris@0 958
Chris@0 959 HTML_INDEX_NUM_ENTRIES = 100
Chris@0 960
Chris@0 961 # If the GENERATE_DOCSET tag is set to YES, additional index files
Chris@0 962 # will be generated that can be used as input for Apple's Xcode 3
Chris@0 963 # integrated development environment, introduced with OSX 10.5 (Leopard).
Chris@0 964 # To create a documentation set, doxygen will generate a Makefile in the
Chris@0 965 # HTML output directory. Running make will produce the docset in that
Chris@0 966 # directory and running "make install" will install the docset in
Chris@0 967 # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find
Chris@0 968 # it at startup.
Chris@0 969 # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
Chris@0 970 # for more information.
Chris@0 971
Chris@0 972 GENERATE_DOCSET = NO
Chris@0 973
Chris@0 974 # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the
Chris@0 975 # feed. A documentation feed provides an umbrella under which multiple
Chris@0 976 # documentation sets from a single provider (such as a company or product suite)
Chris@0 977 # can be grouped.
Chris@0 978
Chris@0 979 DOCSET_FEEDNAME = "Doxygen generated docs"
Chris@0 980
Chris@0 981 # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that
Chris@0 982 # should uniquely identify the documentation set bundle. This should be a
Chris@0 983 # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen
Chris@0 984 # will append .docset to the name.
Chris@0 985
Chris@0 986 DOCSET_BUNDLE_ID = org.doxygen.Project
Chris@0 987
Chris@0 988 # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify
Chris@0 989 # the documentation publisher. This should be a reverse domain-name style
Chris@0 990 # string, e.g. com.mycompany.MyDocSet.documentation.
Chris@0 991
Chris@0 992 DOCSET_PUBLISHER_ID = org.doxygen.Publisher
Chris@0 993
Chris@0 994 # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher.
Chris@0 995
Chris@0 996 DOCSET_PUBLISHER_NAME = Publisher
Chris@0 997
Chris@0 998 # If the GENERATE_HTMLHELP tag is set to YES, additional index files
Chris@0 999 # will be generated that can be used as input for tools like the
Chris@0 1000 # Microsoft HTML help workshop to generate a compiled HTML help file (.chm)
Chris@0 1001 # of the generated HTML documentation.
Chris@0 1002
Chris@0 1003 GENERATE_HTMLHELP = NO
Chris@0 1004
Chris@0 1005 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
Chris@0 1006 # be used to specify the file name of the resulting .chm file. You
Chris@0 1007 # can add a path in front of the file if the result should not be
Chris@0 1008 # written to the html output directory.
Chris@0 1009
Chris@0 1010 CHM_FILE =
Chris@0 1011
Chris@0 1012 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
Chris@0 1013 # be used to specify the location (absolute path including file name) of
Chris@0 1014 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
Chris@0 1015 # the HTML help compiler on the generated index.hhp.
Chris@0 1016
Chris@0 1017 HHC_LOCATION =
Chris@0 1018
Chris@0 1019 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
Chris@0 1020 # controls if a separate .chi index file is generated (YES) or that
Chris@0 1021 # it should be included in the master .chm file (NO).
Chris@0 1022
Chris@0 1023 GENERATE_CHI = NO
Chris@0 1024
Chris@0 1025 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING
Chris@0 1026 # is used to encode HtmlHelp index (hhk), content (hhc) and project file
Chris@0 1027 # content.
Chris@0 1028
Chris@0 1029 CHM_INDEX_ENCODING =
Chris@0 1030
Chris@0 1031 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
Chris@0 1032 # controls whether a binary table of contents is generated (YES) or a
Chris@0 1033 # normal table of contents (NO) in the .chm file.
Chris@0 1034
Chris@0 1035 BINARY_TOC = NO
Chris@0 1036
Chris@0 1037 # The TOC_EXPAND flag can be set to YES to add extra items for group members
Chris@0 1038 # to the contents of the HTML help documentation and to the tree view.
Chris@0 1039
Chris@0 1040 TOC_EXPAND = NO
Chris@0 1041
Chris@0 1042 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
Chris@0 1043 # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated
Chris@0 1044 # that can be used as input for Qt's qhelpgenerator to generate a
Chris@0 1045 # Qt Compressed Help (.qch) of the generated HTML documentation.
Chris@0 1046
Chris@0 1047 GENERATE_QHP = NO
Chris@0 1048
Chris@0 1049 # If the QHG_LOCATION tag is specified, the QCH_FILE tag can
Chris@0 1050 # be used to specify the file name of the resulting .qch file.
Chris@0 1051 # The path specified is relative to the HTML output folder.
Chris@0 1052
Chris@0 1053 QCH_FILE =
Chris@0 1054
Chris@0 1055 # The QHP_NAMESPACE tag specifies the namespace to use when generating
Chris@0 1056 # Qt Help Project output. For more information please see
Chris@0 1057 # http://doc.trolltech.com/qthelpproject.html#namespace
Chris@0 1058
Chris@0 1059 QHP_NAMESPACE =
Chris@0 1060
Chris@0 1061 # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating
Chris@0 1062 # Qt Help Project output. For more information please see
Chris@0 1063 # http://doc.trolltech.com/qthelpproject.html#virtual-folders
Chris@0 1064
Chris@0 1065 QHP_VIRTUAL_FOLDER = doc
Chris@0 1066
Chris@0 1067 # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to
Chris@0 1068 # add. For more information please see
Chris@0 1069 # http://doc.trolltech.com/qthelpproject.html#custom-filters
Chris@0 1070
Chris@0 1071 QHP_CUST_FILTER_NAME =
Chris@0 1072
Chris@0 1073 # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the
Chris@0 1074 # custom filter to add. For more information please see
Chris@0 1075 # <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters">
Chris@0 1076 # Qt Help Project / Custom Filters</a>.
Chris@0 1077
Chris@0 1078 QHP_CUST_FILTER_ATTRS =
Chris@0 1079
Chris@0 1080 # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
Chris@0 1081 # project's
Chris@0 1082 # filter section matches.
Chris@0 1083 # <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes">
Chris@0 1084 # Qt Help Project / Filter Attributes</a>.
Chris@0 1085
Chris@0 1086 QHP_SECT_FILTER_ATTRS =
Chris@0 1087
Chris@0 1088 # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can
Chris@0 1089 # be used to specify the location of Qt's qhelpgenerator.
Chris@0 1090 # If non-empty doxygen will try to run qhelpgenerator on the generated
Chris@0 1091 # .qhp file.
Chris@0 1092
Chris@0 1093 QHG_LOCATION =
Chris@0 1094
Chris@0 1095 # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files
Chris@0 1096 # will be generated, which together with the HTML files, form an Eclipse help
Chris@0 1097 # plugin. To install this plugin and make it available under the help contents
Chris@0 1098 # menu in Eclipse, the contents of the directory containing the HTML and XML
Chris@0 1099 # files needs to be copied into the plugins directory of eclipse. The name of
Chris@0 1100 # the directory within the plugins directory should be the same as
Chris@0 1101 # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before
Chris@0 1102 # the help appears.
Chris@0 1103
Chris@0 1104 GENERATE_ECLIPSEHELP = NO
Chris@0 1105
Chris@0 1106 # A unique identifier for the eclipse help plugin. When installing the plugin
Chris@0 1107 # the directory name containing the HTML and XML files should also have
Chris@0 1108 # this name.
Chris@0 1109
Chris@0 1110 ECLIPSE_DOC_ID = org.doxygen.Project
Chris@0 1111
Chris@0 1112 # The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs)
Chris@0 1113 # at top of each HTML page. The value NO (the default) enables the index and
Chris@0 1114 # the value YES disables it. Since the tabs have the same information as the
Chris@0 1115 # navigation tree you can set this option to NO if you already set
Chris@0 1116 # GENERATE_TREEVIEW to YES.
Chris@0 1117
Chris@0 1118 DISABLE_INDEX = YES
Chris@0 1119
Chris@0 1120 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
Chris@0 1121 # structure should be generated to display hierarchical information.
Chris@0 1122 # If the tag value is set to YES, a side panel will be generated
Chris@0 1123 # containing a tree-like index structure (just like the one that
Chris@0 1124 # is generated for HTML Help). For this to work a browser that supports
Chris@0 1125 # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser).
Chris@0 1126 # Windows users are probably better off using the HTML help feature.
Chris@0 1127 # Since the tree basically has the same information as the tab index you
Chris@0 1128 # could consider to set DISABLE_INDEX to NO when enabling this option.
Chris@0 1129
Chris@0 1130 GENERATE_TREEVIEW = NO
Chris@0 1131
Chris@0 1132 # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values
Chris@0 1133 # (range [0,1..20]) that doxygen will group on one line in the generated HTML
Chris@0 1134 # documentation. Note that a value of 0 will completely suppress the enum
Chris@0 1135 # values from appearing in the overview section.
Chris@0 1136
Chris@0 1137 ENUM_VALUES_PER_LINE = 4
Chris@0 1138
Chris@0 1139 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
Chris@0 1140 # used to set the initial width (in pixels) of the frame in which the tree
Chris@0 1141 # is shown.
Chris@0 1142
Chris@0 1143 TREEVIEW_WIDTH = 250
Chris@0 1144
Chris@0 1145 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open
Chris@0 1146 # links to external symbols imported via tag files in a separate window.
Chris@0 1147
Chris@0 1148 EXT_LINKS_IN_WINDOW = NO
Chris@0 1149
Chris@0 1150 # Use this tag to change the font size of Latex formulas included
Chris@0 1151 # as images in the HTML documentation. The default is 10. Note that
Chris@0 1152 # when you change the font size after a successful doxygen run you need
Chris@0 1153 # to manually remove any form_*.png images from the HTML output directory
Chris@0 1154 # to force them to be regenerated.
Chris@0 1155
Chris@0 1156 FORMULA_FONTSIZE = 10
Chris@0 1157
Chris@0 1158 # Use the FORMULA_TRANPARENT tag to determine whether or not the images
Chris@0 1159 # generated for formulas are transparent PNGs. Transparent PNGs are
Chris@0 1160 # not supported properly for IE 6.0, but are supported on all modern browsers.
Chris@0 1161 # Note that when changing this option you need to delete any form_*.png files
Chris@0 1162 # in the HTML output before the changes have effect.
Chris@0 1163
Chris@0 1164 FORMULA_TRANSPARENT = YES
Chris@0 1165
Chris@0 1166 # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax
Chris@0 1167 # (see http://www.mathjax.org) which uses client side Javascript for the
Chris@0 1168 # rendering instead of using prerendered bitmaps. Use this if you do not
Chris@0 1169 # have LaTeX installed or if you want to formulas look prettier in the HTML
Chris@0 1170 # output. When enabled you may also need to install MathJax separately and
Chris@0 1171 # configure the path to it using the MATHJAX_RELPATH option.
Chris@0 1172
Chris@0 1173 USE_MATHJAX = NO
Chris@0 1174
Chris@0 1175 # When MathJax is enabled you need to specify the location relative to the
Chris@0 1176 # HTML output directory using the MATHJAX_RELPATH option. The destination
Chris@0 1177 # directory should contain the MathJax.js script. For instance, if the mathjax
Chris@0 1178 # directory is located at the same level as the HTML output directory, then
Chris@0 1179 # MATHJAX_RELPATH should be ../mathjax. The default value points to
Chris@0 1180 # the MathJax Content Delivery Network so you can quickly see the result without
Chris@0 1181 # installing MathJax.
Chris@0 1182 # However, it is strongly recommended to install a local
Chris@0 1183 # copy of MathJax from http://www.mathjax.org before deployment.
Chris@0 1184
Chris@0 1185 MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest
Chris@0 1186
Chris@0 1187 # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension
Chris@0 1188 # names that should be enabled during MathJax rendering.
Chris@0 1189
Chris@0 1190 MATHJAX_EXTENSIONS =
Chris@0 1191
Chris@0 1192 # When the SEARCHENGINE tag is enabled doxygen will generate a search box
Chris@0 1193 # for the HTML output. The underlying search engine uses javascript
Chris@0 1194 # and DHTML and should work on any modern browser. Note that when using
Chris@0 1195 # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets
Chris@0 1196 # (GENERATE_DOCSET) there is already a search function so this one should
Chris@0 1197 # typically be disabled. For large projects the javascript based search engine
Chris@0 1198 # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.
Chris@0 1199
Chris@0 1200 SEARCHENGINE = NO
Chris@0 1201
Chris@0 1202 # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
Chris@0 1203 # implemented using a PHP enabled web server instead of at the web client
Chris@0 1204 # using Javascript. Doxygen will generate the search PHP script and index
Chris@0 1205 # file to put on the web server. The advantage of the server
Chris@0 1206 # based approach is that it scales better to large projects and allows
Chris@0 1207 # full text search. The disadvantages are that it is more difficult to setup
Chris@0 1208 # and does not have live searching capabilities.
Chris@0 1209
Chris@0 1210 SERVER_BASED_SEARCH = NO
Chris@0 1211
Chris@0 1212 #---------------------------------------------------------------------------
Chris@0 1213 # configuration options related to the LaTeX output
Chris@0 1214 #---------------------------------------------------------------------------
Chris@0 1215
Chris@0 1216 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
Chris@0 1217 # generate Latex output.
Chris@0 1218
Chris@0 1219 GENERATE_LATEX = NO
Chris@0 1220
Chris@0 1221 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
Chris@0 1222 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
Chris@0 1223 # put in front of it. If left blank `latex' will be used as the default path.
Chris@0 1224
Chris@0 1225 LATEX_OUTPUT = latex
Chris@0 1226
Chris@0 1227 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
Chris@0 1228 # invoked. If left blank `latex' will be used as the default command name.
Chris@0 1229 # Note that when enabling USE_PDFLATEX this option is only used for
Chris@0 1230 # generating bitmaps for formulas in the HTML output, but not in the
Chris@0 1231 # Makefile that is written to the output directory.
Chris@0 1232
Chris@0 1233 LATEX_CMD_NAME = latex
Chris@0 1234
Chris@0 1235 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
Chris@0 1236 # generate index for LaTeX. If left blank `makeindex' will be used as the
Chris@0 1237 # default command name.
Chris@0 1238
Chris@0 1239 MAKEINDEX_CMD_NAME = makeindex
Chris@0 1240
Chris@0 1241 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
Chris@0 1242 # LaTeX documents. This may be useful for small projects and may help to
Chris@0 1243 # save some trees in general.
Chris@0 1244
Chris@0 1245 COMPACT_LATEX = NO
Chris@0 1246
Chris@0 1247 # The PAPER_TYPE tag can be used to set the paper type that is used
Chris@0 1248 # by the printer. Possible values are: a4, letter, legal and
Chris@0 1249 # executive. If left blank a4wide will be used.
Chris@0 1250
Chris@0 1251 PAPER_TYPE = a4wide
Chris@0 1252
Chris@0 1253 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
Chris@0 1254 # packages that should be included in the LaTeX output.
Chris@0 1255
Chris@0 1256 EXTRA_PACKAGES =
Chris@0 1257
Chris@0 1258 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
Chris@0 1259 # the generated latex document. The header should contain everything until
Chris@0 1260 # the first chapter. If it is left blank doxygen will generate a
Chris@0 1261 # standard header. Notice: only use this tag if you know what you are doing!
Chris@0 1262
Chris@0 1263 LATEX_HEADER =
Chris@0 1264
Chris@0 1265 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for
Chris@0 1266 # the generated latex document. The footer should contain everything after
Chris@0 1267 # the last chapter. If it is left blank doxygen will generate a
Chris@0 1268 # standard footer. Notice: only use this tag if you know what you are doing!
Chris@0 1269
Chris@0 1270 LATEX_FOOTER =
Chris@0 1271
Chris@0 1272 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
Chris@0 1273 # is prepared for conversion to pdf (using ps2pdf). The pdf file will
Chris@0 1274 # contain links (just like the HTML output) instead of page references
Chris@0 1275 # This makes the output suitable for online browsing using a pdf viewer.
Chris@0 1276
Chris@0 1277 PDF_HYPERLINKS = NO
Chris@0 1278
Chris@0 1279 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
Chris@0 1280 # plain latex in the generated Makefile. Set this option to YES to get a
Chris@0 1281 # higher quality PDF documentation.
Chris@0 1282
Chris@0 1283 USE_PDFLATEX = NO
Chris@0 1284
Chris@0 1285 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
Chris@0 1286 # command to the generated LaTeX files. This will instruct LaTeX to keep
Chris@0 1287 # running if errors occur, instead of asking the user for help.
Chris@0 1288 # This option is also used when generating formulas in HTML.
Chris@0 1289
Chris@0 1290 LATEX_BATCHMODE = NO
Chris@0 1291
Chris@0 1292 # If LATEX_HIDE_INDICES is set to YES then doxygen will not
Chris@0 1293 # include the index chapters (such as File Index, Compound Index, etc.)
Chris@0 1294 # in the output.
Chris@0 1295
Chris@0 1296 LATEX_HIDE_INDICES = NO
Chris@0 1297
Chris@0 1298 # If LATEX_SOURCE_CODE is set to YES then doxygen will include
Chris@0 1299 # source code with syntax highlighting in the LaTeX output.
Chris@0 1300 # Note that which sources are shown also depends on other settings
Chris@0 1301 # such as SOURCE_BROWSER.
Chris@0 1302
Chris@0 1303 LATEX_SOURCE_CODE = NO
Chris@0 1304
Chris@0 1305 # The LATEX_BIB_STYLE tag can be used to specify the style to use for the
Chris@0 1306 # bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See
Chris@0 1307 # http://en.wikipedia.org/wiki/BibTeX for more info.
Chris@0 1308
Chris@0 1309 LATEX_BIB_STYLE = plain
Chris@0 1310
Chris@0 1311 #---------------------------------------------------------------------------
Chris@0 1312 # configuration options related to the RTF output
Chris@0 1313 #---------------------------------------------------------------------------
Chris@0 1314
Chris@0 1315 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
Chris@0 1316 # The RTF output is optimized for Word 97 and may not look very pretty with
Chris@0 1317 # other RTF readers or editors.
Chris@0 1318
Chris@0 1319 GENERATE_RTF = NO
Chris@0 1320
Chris@0 1321 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
Chris@0 1322 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
Chris@0 1323 # put in front of it. If left blank `rtf' will be used as the default path.
Chris@0 1324
Chris@0 1325 RTF_OUTPUT = rtf
Chris@0 1326
Chris@0 1327 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact
Chris@0 1328 # RTF documents. This may be useful for small projects and may help to
Chris@0 1329 # save some trees in general.
Chris@0 1330
Chris@0 1331 COMPACT_RTF = NO
Chris@0 1332
Chris@0 1333 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
Chris@0 1334 # will contain hyperlink fields. The RTF file will
Chris@0 1335 # contain links (just like the HTML output) instead of page references.
Chris@0 1336 # This makes the output suitable for online browsing using WORD or other
Chris@0 1337 # programs which support those fields.
Chris@0 1338 # Note: wordpad (write) and others do not support links.
Chris@0 1339
Chris@0 1340 RTF_HYPERLINKS = NO
Chris@0 1341
Chris@0 1342 # Load style sheet definitions from file. Syntax is similar to doxygen's
Chris@0 1343 # config file, i.e. a series of assignments. You only have to provide
Chris@0 1344 # replacements, missing definitions are set to their default value.
Chris@0 1345
Chris@0 1346 RTF_STYLESHEET_FILE =
Chris@0 1347
Chris@0 1348 # Set optional variables used in the generation of an rtf document.
Chris@0 1349 # Syntax is similar to doxygen's config file.
Chris@0 1350
Chris@0 1351 RTF_EXTENSIONS_FILE =
Chris@0 1352
Chris@0 1353 #---------------------------------------------------------------------------
Chris@0 1354 # configuration options related to the man page output
Chris@0 1355 #---------------------------------------------------------------------------
Chris@0 1356
Chris@0 1357 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
Chris@0 1358 # generate man pages
Chris@0 1359
Chris@0 1360 GENERATE_MAN = YES
Chris@0 1361
Chris@0 1362 # The MAN_OUTPUT tag is used to specify where the man pages will be put.
Chris@0 1363 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
Chris@0 1364 # put in front of it. If left blank `man' will be used as the default path.
Chris@0 1365
Chris@0 1366 MAN_OUTPUT = man
Chris@0 1367
Chris@0 1368 # The MAN_EXTENSION tag determines the extension that is added to
Chris@0 1369 # the generated man pages (default is the subroutine's section .3)
Chris@0 1370
Chris@0 1371 MAN_EXTENSION = .3
Chris@0 1372
Chris@0 1373 # If the MAN_LINKS tag is set to YES and Doxygen generates man output,
Chris@0 1374 # then it will generate one additional man file for each entity
Chris@0 1375 # documented in the real man page(s). These additional files
Chris@0 1376 # only source the real man page, but without them the man command
Chris@0 1377 # would be unable to find the correct page. The default is NO.
Chris@0 1378
Chris@0 1379 MAN_LINKS = NO
Chris@0 1380
Chris@0 1381 #---------------------------------------------------------------------------
Chris@0 1382 # configuration options related to the XML output
Chris@0 1383 #---------------------------------------------------------------------------
Chris@0 1384
Chris@0 1385 # If the GENERATE_XML tag is set to YES Doxygen will
Chris@0 1386 # generate an XML file that captures the structure of
Chris@0 1387 # the code including all documentation.
Chris@0 1388
Chris@0 1389 GENERATE_XML = NO
Chris@0 1390
Chris@0 1391 # The XML_OUTPUT tag is used to specify where the XML pages will be put.
Chris@0 1392 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
Chris@0 1393 # put in front of it. If left blank `xml' will be used as the default path.
Chris@0 1394
Chris@0 1395 XML_OUTPUT = xml
Chris@0 1396
Chris@0 1397 # The XML_SCHEMA tag can be used to specify an XML schema,
Chris@0 1398 # which can be used by a validating XML parser to check the
Chris@0 1399 # syntax of the XML files.
Chris@0 1400
Chris@0 1401 XML_SCHEMA =
Chris@0 1402
Chris@0 1403 # The XML_DTD tag can be used to specify an XML DTD,
Chris@0 1404 # which can be used by a validating XML parser to check the
Chris@0 1405 # syntax of the XML files.
Chris@0 1406
Chris@0 1407 XML_DTD =
Chris@0 1408
Chris@0 1409 # If the XML_PROGRAMLISTING tag is set to YES Doxygen will
Chris@0 1410 # dump the program listings (including syntax highlighting
Chris@0 1411 # and cross-referencing information) to the XML output. Note that
Chris@0 1412 # enabling this will significantly increase the size of the XML output.
Chris@0 1413
Chris@0 1414 XML_PROGRAMLISTING = YES
Chris@0 1415
Chris@0 1416 #---------------------------------------------------------------------------
Chris@0 1417 # configuration options for the AutoGen Definitions output
Chris@0 1418 #---------------------------------------------------------------------------
Chris@0 1419
Chris@0 1420 # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
Chris@0 1421 # generate an AutoGen Definitions (see autogen.sf.net) file
Chris@0 1422 # that captures the structure of the code including all
Chris@0 1423 # documentation. Note that this feature is still experimental
Chris@0 1424 # and incomplete at the moment.
Chris@0 1425
Chris@0 1426 GENERATE_AUTOGEN_DEF = NO
Chris@0 1427
Chris@0 1428 #---------------------------------------------------------------------------
Chris@0 1429 # configuration options related to the Perl module output
Chris@0 1430 #---------------------------------------------------------------------------
Chris@0 1431
Chris@0 1432 # If the GENERATE_PERLMOD tag is set to YES Doxygen will
Chris@0 1433 # generate a Perl module file that captures the structure of
Chris@0 1434 # the code including all documentation. Note that this
Chris@0 1435 # feature is still experimental and incomplete at the
Chris@0 1436 # moment.
Chris@0 1437
Chris@0 1438 GENERATE_PERLMOD = NO
Chris@0 1439
Chris@0 1440 # If the PERLMOD_LATEX tag is set to YES Doxygen will generate
Chris@0 1441 # the necessary Makefile rules, Perl scripts and LaTeX code to be able
Chris@0 1442 # to generate PDF and DVI output from the Perl module output.
Chris@0 1443
Chris@0 1444 PERLMOD_LATEX = NO
Chris@0 1445
Chris@0 1446 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
Chris@0 1447 # nicely formatted so it can be parsed by a human reader.
Chris@0 1448 # This is useful
Chris@0 1449 # if you want to understand what is going on.
Chris@0 1450 # On the other hand, if this
Chris@0 1451 # tag is set to NO the size of the Perl module output will be much smaller
Chris@0 1452 # and Perl will parse it just the same.
Chris@0 1453
Chris@0 1454 PERLMOD_PRETTY = YES
Chris@0 1455
Chris@0 1456 # The names of the make variables in the generated doxyrules.make file
Chris@0 1457 # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
Chris@0 1458 # This is useful so different doxyrules.make files included by the same
Chris@0 1459 # Makefile don't overwrite each other's variables.
Chris@0 1460
Chris@0 1461 PERLMOD_MAKEVAR_PREFIX =
Chris@0 1462
Chris@0 1463 #---------------------------------------------------------------------------
Chris@0 1464 # Configuration options related to the preprocessor
Chris@0 1465 #---------------------------------------------------------------------------
Chris@0 1466
Chris@0 1467 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
Chris@0 1468 # evaluate all C-preprocessor directives found in the sources and include
Chris@0 1469 # files.
Chris@0 1470
Chris@0 1471 ENABLE_PREPROCESSING = YES
Chris@0 1472
Chris@0 1473 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
Chris@0 1474 # names in the source code. If set to NO (the default) only conditional
Chris@0 1475 # compilation will be performed. Macro expansion can be done in a controlled
Chris@0 1476 # way by setting EXPAND_ONLY_PREDEF to YES.
Chris@0 1477
Chris@0 1478 MACRO_EXPANSION = NO
Chris@0 1479
Chris@0 1480 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
Chris@0 1481 # then the macro expansion is limited to the macros specified with the
Chris@0 1482 # PREDEFINED and EXPAND_AS_DEFINED tags.
Chris@0 1483
Chris@0 1484 EXPAND_ONLY_PREDEF = NO
Chris@0 1485
Chris@0 1486 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
Chris@0 1487 # pointed to by INCLUDE_PATH will be searched when a #include is found.
Chris@0 1488
Chris@0 1489 SEARCH_INCLUDES = YES
Chris@0 1490
Chris@0 1491 # The INCLUDE_PATH tag can be used to specify one or more directories that
Chris@0 1492 # contain include files that are not input files but should be processed by
Chris@0 1493 # the preprocessor.
Chris@0 1494
Chris@0 1495 INCLUDE_PATH =
Chris@0 1496
Chris@0 1497 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
Chris@0 1498 # patterns (like *.h and *.hpp) to filter out the header-files in the
Chris@0 1499 # directories. If left blank, the patterns specified with FILE_PATTERNS will
Chris@0 1500 # be used.
Chris@0 1501
Chris@0 1502 INCLUDE_FILE_PATTERNS =
Chris@0 1503
Chris@0 1504 # The PREDEFINED tag can be used to specify one or more macro names that
Chris@0 1505 # are defined before the preprocessor is started (similar to the -D option of
Chris@0 1506 # gcc). The argument of the tag is a list of macros of the form: name
Chris@0 1507 # or name=definition (no spaces). If the definition and the = are
Chris@0 1508 # omitted =1 is assumed. To prevent a macro definition from being
Chris@0 1509 # undefined via #undef or recursively expanded use the := operator
Chris@0 1510 # instead of the = operator.
Chris@0 1511
Chris@0 1512 PREDEFINED =
Chris@0 1513
Chris@0 1514 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
Chris@0 1515 # this tag can be used to specify a list of macro names that should be expanded.
Chris@0 1516 # The macro definition that is found in the sources will be used.
Chris@0 1517 # Use the PREDEFINED tag if you want to use a different macro definition that
Chris@0 1518 # overrules the definition found in the source code.
Chris@0 1519
Chris@0 1520 EXPAND_AS_DEFINED =
Chris@0 1521
Chris@0 1522 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
Chris@0 1523 # doxygen's preprocessor will remove all references to function-like macros
Chris@0 1524 # that are alone on a line, have an all uppercase name, and do not end with a
Chris@0 1525 # semicolon, because these will confuse the parser if not removed.
Chris@0 1526
Chris@0 1527 SKIP_FUNCTION_MACROS = YES
Chris@0 1528
Chris@0 1529 #---------------------------------------------------------------------------
Chris@0 1530 # Configuration::additions related to external references
Chris@0 1531 #---------------------------------------------------------------------------
Chris@0 1532
Chris@0 1533 # The TAGFILES option can be used to specify one or more tagfiles. For each
Chris@0 1534 # tag file the location of the external documentation should be added. The
Chris@0 1535 # format of a tag file without this location is as follows:
Chris@0 1536 #
Chris@0 1537 # TAGFILES = file1 file2 ...
Chris@0 1538 # Adding location for the tag files is done as follows:
Chris@0 1539 #
Chris@0 1540 # TAGFILES = file1=loc1 "file2 = loc2" ...
Chris@0 1541 # where "loc1" and "loc2" can be relative or absolute paths
Chris@0 1542 # or URLs. Note that each tag file must have a unique name (where the name does
Chris@0 1543 # NOT include the path). If a tag file is not located in the directory in which
Chris@0 1544 # doxygen is run, you must also specify the path to the tagfile here.
Chris@0 1545
Chris@0 1546 TAGFILES =
Chris@0 1547
Chris@0 1548 # When a file name is specified after GENERATE_TAGFILE, doxygen will create
Chris@0 1549 # a tag file that is based on the input files it reads.
Chris@0 1550
Chris@0 1551 GENERATE_TAGFILE =
Chris@0 1552
Chris@0 1553 # If the ALLEXTERNALS tag is set to YES all external classes will be listed
Chris@0 1554 # in the class index. If set to NO only the inherited external classes
Chris@0 1555 # will be listed.
Chris@0 1556
Chris@0 1557 ALLEXTERNALS = NO
Chris@0 1558
Chris@0 1559 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
Chris@0 1560 # in the modules index. If set to NO, only the current project's groups will
Chris@0 1561 # be listed.
Chris@0 1562
Chris@0 1563 EXTERNAL_GROUPS = YES
Chris@0 1564
Chris@0 1565 # The PERL_PATH should be the absolute path and name of the perl script
Chris@0 1566 # interpreter (i.e. the result of `which perl').
Chris@0 1567
Chris@0 1568 PERL_PATH = /usr/bin/perl
Chris@0 1569
Chris@0 1570 #---------------------------------------------------------------------------
Chris@0 1571 # Configuration options related to the dot tool
Chris@0 1572 #---------------------------------------------------------------------------
Chris@0 1573
Chris@0 1574 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
Chris@0 1575 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
Chris@0 1576 # or super classes. Setting the tag to NO turns the diagrams off. Note that
Chris@0 1577 # this option also works with HAVE_DOT disabled, but it is recommended to
Chris@0 1578 # install and use dot, since it yields more powerful graphs.
Chris@0 1579
Chris@0 1580 CLASS_DIAGRAMS = NO
Chris@0 1581
Chris@0 1582 # You can define message sequence charts within doxygen comments using the \msc
Chris@0 1583 # command. Doxygen will then run the mscgen tool (see
Chris@0 1584 # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the
Chris@0 1585 # documentation. The MSCGEN_PATH tag allows you to specify the directory where
Chris@0 1586 # the mscgen tool resides. If left empty the tool is assumed to be found in the
Chris@0 1587 # default search path.
Chris@0 1588
Chris@0 1589 MSCGEN_PATH =
Chris@0 1590
Chris@0 1591 # If set to YES, the inheritance and collaboration graphs will hide
Chris@0 1592 # inheritance and usage relations if the target is undocumented
Chris@0 1593 # or is not a class.
Chris@0 1594
Chris@0 1595 HIDE_UNDOC_RELATIONS = YES
Chris@0 1596
Chris@0 1597 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
Chris@0 1598 # available from the path. This tool is part of Graphviz, a graph visualization
Chris@0 1599 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
Chris@0 1600 # have no effect if this option is set to NO (the default)
Chris@0 1601
Chris@0 1602 HAVE_DOT = NO
Chris@0 1603
Chris@0 1604 # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is
Chris@0 1605 # allowed to run in parallel. When set to 0 (the default) doxygen will
Chris@0 1606 # base this on the number of processors available in the system. You can set it
Chris@0 1607 # explicitly to a value larger than 0 to get control over the balance
Chris@0 1608 # between CPU load and processing speed.
Chris@0 1609
Chris@0 1610 DOT_NUM_THREADS = 0
Chris@0 1611
Chris@0 1612 # By default doxygen will use the Helvetica font for all dot files that
Chris@0 1613 # doxygen generates. When you want a differently looking font you can specify
Chris@0 1614 # the font name using DOT_FONTNAME. You need to make sure dot is able to find
Chris@0 1615 # the font, which can be done by putting it in a standard location or by setting
Chris@0 1616 # the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the
Chris@0 1617 # directory containing the font.
Chris@0 1618
Chris@0 1619 DOT_FONTNAME = FreeSans
Chris@0 1620
Chris@0 1621 # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs.
Chris@0 1622 # The default size is 10pt.
Chris@0 1623
Chris@0 1624 DOT_FONTSIZE = 10
Chris@0 1625
Chris@0 1626 # By default doxygen will tell dot to use the Helvetica font.
Chris@0 1627 # If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to
Chris@0 1628 # set the path where dot can find it.
Chris@0 1629
Chris@0 1630 DOT_FONTPATH =
Chris@0 1631
Chris@0 1632 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
Chris@0 1633 # will generate a graph for each documented class showing the direct and
Chris@0 1634 # indirect inheritance relations. Setting this tag to YES will force the
Chris@0 1635 # CLASS_DIAGRAMS tag to NO.
Chris@0 1636
Chris@0 1637 CLASS_GRAPH = NO
Chris@0 1638
Chris@0 1639 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
Chris@0 1640 # will generate a graph for each documented class showing the direct and
Chris@0 1641 # indirect implementation dependencies (inheritance, containment, and
Chris@0 1642 # class references variables) of the class with other documented classes.
Chris@0 1643
Chris@0 1644 COLLABORATION_GRAPH = NO
Chris@0 1645
Chris@0 1646 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
Chris@0 1647 # will generate a graph for groups, showing the direct groups dependencies
Chris@0 1648
Chris@0 1649 GROUP_GRAPHS = YES
Chris@0 1650
Chris@0 1651 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
Chris@0 1652 # collaboration diagrams in a style similar to the OMG's Unified Modeling
Chris@0 1653 # Language.
Chris@0 1654
Chris@0 1655 UML_LOOK = NO
Chris@0 1656
Chris@0 1657 # If the UML_LOOK tag is enabled, the fields and methods are shown inside
Chris@0 1658 # the class node. If there are many fields or methods and many nodes the
Chris@0 1659 # graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS
Chris@0 1660 # threshold limits the number of items for each type to make the size more
Chris@0 1661 # managable. Set this to 0 for no limit. Note that the threshold may be
Chris@0 1662 # exceeded by 50% before the limit is enforced.
Chris@0 1663
Chris@0 1664 UML_LIMIT_NUM_FIELDS = 10
Chris@0 1665
Chris@0 1666 # If set to YES, the inheritance and collaboration graphs will show the
Chris@0 1667 # relations between templates and their instances.
Chris@0 1668
Chris@0 1669 TEMPLATE_RELATIONS = NO
Chris@0 1670
Chris@0 1671 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
Chris@0 1672 # tags are set to YES then doxygen will generate a graph for each documented
Chris@0 1673 # file showing the direct and indirect include dependencies of the file with
Chris@0 1674 # other documented files.
Chris@0 1675
Chris@0 1676 INCLUDE_GRAPH = NO
Chris@0 1677
Chris@0 1678 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
Chris@0 1679 # HAVE_DOT tags are set to YES then doxygen will generate a graph for each
Chris@0 1680 # documented header file showing the documented files that directly or
Chris@0 1681 # indirectly include this file.
Chris@0 1682
Chris@0 1683 INCLUDED_BY_GRAPH = NO
Chris@0 1684
Chris@0 1685 # If the CALL_GRAPH and HAVE_DOT options are set to YES then
Chris@0 1686 # doxygen will generate a call dependency graph for every global function
Chris@0 1687 # or class method. Note that enabling this option will significantly increase
Chris@0 1688 # the time of a run. So in most cases it will be better to enable call graphs
Chris@0 1689 # for selected functions only using the \callgraph command.
Chris@0 1690
Chris@0 1691 CALL_GRAPH = NO
Chris@0 1692
Chris@0 1693 # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then
Chris@0 1694 # doxygen will generate a caller dependency graph for every global function
Chris@0 1695 # or class method. Note that enabling this option will significantly increase
Chris@0 1696 # the time of a run. So in most cases it will be better to enable caller
Chris@0 1697 # graphs for selected functions only using the \callergraph command.
Chris@0 1698
Chris@0 1699 CALLER_GRAPH = NO
Chris@0 1700
Chris@0 1701 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
Chris@0 1702 # will generate a graphical hierarchy of all classes instead of a textual one.
Chris@0 1703
Chris@0 1704 GRAPHICAL_HIERARCHY = NO
Chris@0 1705
Chris@0 1706 # If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES
Chris@0 1707 # then doxygen will show the dependencies a directory has on other directories
Chris@0 1708 # in a graphical way. The dependency relations are determined by the #include
Chris@0 1709 # relations between the files in the directories.
Chris@0 1710
Chris@0 1711 DIRECTORY_GRAPH = NO
Chris@0 1712
Chris@0 1713 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
Chris@0 1714 # generated by dot. Possible values are svg, png, jpg, or gif.
Chris@0 1715 # If left blank png will be used. If you choose svg you need to set
Chris@0 1716 # HTML_FILE_EXTENSION to xhtml in order to make the SVG files
Chris@0 1717 # visible in IE 9+ (other browsers do not have this requirement).
Chris@0 1718
Chris@0 1719 DOT_IMAGE_FORMAT = png
Chris@0 1720
Chris@0 1721 # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
Chris@0 1722 # enable generation of interactive SVG images that allow zooming and panning.
Chris@0 1723 # Note that this requires a modern browser other than Internet Explorer.
Chris@0 1724 # Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you
Chris@0 1725 # need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files
Chris@0 1726 # visible. Older versions of IE do not have SVG support.
Chris@0 1727
Chris@0 1728 INTERACTIVE_SVG = NO
Chris@0 1729
Chris@0 1730 # The tag DOT_PATH can be used to specify the path where the dot tool can be
Chris@0 1731 # found. If left blank, it is assumed the dot tool can be found in the path.
Chris@0 1732
Chris@0 1733 DOT_PATH =
Chris@0 1734
Chris@0 1735 # The DOTFILE_DIRS tag can be used to specify one or more directories that
Chris@0 1736 # contain dot files that are included in the documentation (see the
Chris@0 1737 # \dotfile command).
Chris@0 1738
Chris@0 1739 DOTFILE_DIRS =
Chris@0 1740
Chris@0 1741 # The MSCFILE_DIRS tag can be used to specify one or more directories that
Chris@0 1742 # contain msc files that are included in the documentation (see the
Chris@0 1743 # \mscfile command).
Chris@0 1744
Chris@0 1745 MSCFILE_DIRS =
Chris@0 1746
Chris@0 1747 # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
Chris@0 1748 # nodes that will be shown in the graph. If the number of nodes in a graph
Chris@0 1749 # becomes larger than this value, doxygen will truncate the graph, which is
Chris@0 1750 # visualized by representing a node as a red box. Note that doxygen if the
Chris@0 1751 # number of direct children of the root node in a graph is already larger than
Chris@0 1752 # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
Chris@0 1753 # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
Chris@0 1754
Chris@0 1755 DOT_GRAPH_MAX_NODES = 50
Chris@0 1756
Chris@0 1757 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
Chris@0 1758 # graphs generated by dot. A depth value of 3 means that only nodes reachable
Chris@0 1759 # from the root by following a path via at most 3 edges will be shown. Nodes
Chris@0 1760 # that lay further from the root node will be omitted. Note that setting this
Chris@0 1761 # option to 1 or 2 may greatly reduce the computation time needed for large
Chris@0 1762 # code bases. Also note that the size of a graph can be further restricted by
Chris@0 1763 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
Chris@0 1764
Chris@0 1765 MAX_DOT_GRAPH_DEPTH = 0
Chris@0 1766
Chris@0 1767 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
Chris@0 1768 # background. This is disabled by default, because dot on Windows does not
Chris@0 1769 # seem to support this out of the box. Warning: Depending on the platform used,
Chris@0 1770 # enabling this option may lead to badly anti-aliased labels on the edges of
Chris@0 1771 # a graph (i.e. they become hard to read).
Chris@0 1772
Chris@0 1773 DOT_TRANSPARENT = NO
Chris@0 1774
Chris@0 1775 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
Chris@0 1776 # files in one run (i.e. multiple -o and -T options on the command line). This
Chris@0 1777 # makes dot run faster, but since only newer versions of dot (>1.8.10)
Chris@0 1778 # support this, this feature is disabled by default.
Chris@0 1779
Chris@0 1780 DOT_MULTI_TARGETS = NO
Chris@0 1781
Chris@0 1782 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
Chris@0 1783 # generate a legend page explaining the meaning of the various boxes and
Chris@0 1784 # arrows in the dot generated graphs.
Chris@0 1785
Chris@0 1786 GENERATE_LEGEND = NO
Chris@0 1787
Chris@0 1788 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
Chris@0 1789 # remove the intermediate dot files that are used to generate
Chris@0 1790 # the various graphs.
Chris@0 1791
Chris@0 1792 DOT_CLEANUP = YES