Maxim mbed development library

Dependents:   sensomed

Committer:
switches
Date:
Tue Nov 08 18:27:11 2016 +0000
Revision:
0:0e018d759a2a
Initial commit

Who changed what in which revision?

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