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