High level Bluetooth Low Energy API and radio abstraction layer

Dependents:   BLE_ANCS_SDAPI BLE_temperature BLE_HeartRate BLE_ANCS_SDAPI_IRC ... more

Overview

The BLE_API is a high level abstraction for using Bluetooth Low Energy on multiple platforms. For details and examples using the BLE_API please see the BLE_API Summary Page. Or click on the API Documentation tab above.

Supported Services

Supported services can be found in the BLE_API/services folder.

Committer:
rgrover1
Date:
Thu Dec 10 09:15:03 2015 +0000
Revision:
1028:9dc2ab644517
Synchronized with git rev 632d44b8
Author: Brendan Moran
Add a doxyfile that warns for undocumented elements

Who changed what in which revision?

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