annotate doc/documentation.doxygen.in @ 95:432d97ee02ef

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