Official Sheffield ARMBand micro:bit program

Committer:
MrBedfordVan
Date:
Mon Oct 17 12:41:20 2016 +0000
Revision:
0:b9164b348919
Official Sheffield ARMBand Micro:bit program

Who changed what in which revision?

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