| 1 | # Doxyfile 1.4.5
|
|---|
| 2 |
|
|---|
| 3 | # This file describes the settings to be used by the documentation system
|
|---|
| 4 | # doxygen (www.doxygen.org) for a project
|
|---|
| 5 | #
|
|---|
| 6 | # All text after a hash (#) is considered a comment and will be ignored
|
|---|
| 7 | # The format is:
|
|---|
| 8 | # TAG = value [value, ...]
|
|---|
| 9 | # For lists items can also be appended using:
|
|---|
| 10 | # TAG += value [value, ...]
|
|---|
| 11 | # Values that contain spaces should be placed between quotes (" ")
|
|---|
| 12 |
|
|---|
| 13 | #---------------------------------------------------------------------------
|
|---|
| 14 | # Project related configuration options
|
|---|
| 15 | #---------------------------------------------------------------------------
|
|---|
| 16 |
|
|---|
| 17 | # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
|
|---|
| 18 | # by quotes) that should identify the project.
|
|---|
| 19 |
|
|---|
| 20 | PROJECT_NAME = QtXmlPatterns
|
|---|
| 21 |
|
|---|
| 22 | # The PROJECT_NUMBER tag can be used to enter a project or revision number.
|
|---|
| 23 | # This could be handy for archiving the generated documentation or
|
|---|
| 24 | # if some version control system is used.
|
|---|
| 25 |
|
|---|
| 26 | PROJECT_NUMBER =
|
|---|
| 27 |
|
|---|
| 28 | # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
|---|
| 29 | # base path where the generated documentation will be put.
|
|---|
| 30 | # If a relative path is entered, it will be relative to the location
|
|---|
| 31 | # where doxygen was started. If left blank the current directory will be used.
|
|---|
| 32 |
|
|---|
| 33 | OUTPUT_DIRECTORY = internal-docs
|
|---|
| 34 |
|
|---|
| 35 | # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
|
|---|
| 36 | # 4096 sub-directories (in 2 levels) under the output directory of each output
|
|---|
| 37 | # format and will distribute the generated files over these directories.
|
|---|
| 38 | # Enabling this option can be useful when feeding doxygen a huge amount of
|
|---|
| 39 | # source files, where putting all generated files in the same directory would
|
|---|
| 40 | # otherwise cause performance problems for the file system.
|
|---|
| 41 |
|
|---|
| 42 | CREATE_SUBDIRS = NO
|
|---|
| 43 |
|
|---|
| 44 | # The OUTPUT_LANGUAGE tag is used to specify the language in which all
|
|---|
| 45 | # documentation generated by doxygen is written. Doxygen will use this
|
|---|
| 46 | # information to generate all constant output in the proper language.
|
|---|
| 47 | # The default language is English, other supported languages are:
|
|---|
| 48 | # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish,
|
|---|
| 49 | # Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese,
|
|---|
| 50 | # Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian,
|
|---|
| 51 | # Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish,
|
|---|
| 52 | # Swedish, and Ukrainian.
|
|---|
| 53 |
|
|---|
| 54 | OUTPUT_LANGUAGE = English
|
|---|
| 55 |
|
|---|
| 56 | # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
|
|---|
| 57 | # include brief member descriptions after the members that are listed in
|
|---|
| 58 | # the file and class documentation (similar to JavaDoc).
|
|---|
| 59 | # Set to NO to disable this.
|
|---|
| 60 |
|
|---|
| 61 | BRIEF_MEMBER_DESC = YES
|
|---|
| 62 |
|
|---|
| 63 | # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
|
|---|
| 64 | # the brief description of a member or function before the detailed description.
|
|---|
| 65 | # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
|
|---|
| 66 | # brief descriptions will be completely suppressed.
|
|---|
| 67 |
|
|---|
| 68 | REPEAT_BRIEF = YES
|
|---|
| 69 |
|
|---|
| 70 | # This tag implements a quasi-intelligent brief description abbreviator
|
|---|
| 71 | # that is used to form the text in various listings. Each string
|
|---|
| 72 | # in this list, if found as the leading text of the brief description, will be
|
|---|
| 73 | # stripped from the text and the result after processing the whole list, is
|
|---|
| 74 | # used as the annotated text. Otherwise, the brief description is used as-is.
|
|---|
| 75 | # If left blank, the following values are used ("$name" is automatically
|
|---|
| 76 | # replaced with the name of the entity): "The $name class" "The $name widget"
|
|---|
| 77 | # "The $name file" "is" "provides" "specifies" "contains"
|
|---|
| 78 | # "represents" "a" "an" "the"
|
|---|
| 79 |
|
|---|
| 80 | ABBREVIATE_BRIEF =
|
|---|
| 81 |
|
|---|
| 82 | # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
|
|---|
| 83 | # Doxygen will generate a detailed section even if there is only a brief
|
|---|
| 84 | # description.
|
|---|
| 85 |
|
|---|
| 86 | ALWAYS_DETAILED_SEC = NO
|
|---|
| 87 |
|
|---|
| 88 | # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
|
|---|
| 89 | # inherited members of a class in the documentation of that class as if those
|
|---|
| 90 | # members were ordinary class members. Constructors, destructors and assignment
|
|---|
| 91 | # operators of the base classes will not be shown.
|
|---|
| 92 |
|
|---|
| 93 | INLINE_INHERITED_MEMB = NO
|
|---|
| 94 |
|
|---|
| 95 | # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
|
|---|
| 96 | # path before files name in the file list and in the header files. If set
|
|---|
| 97 | # to NO the shortest path that makes the file name unique will be used.
|
|---|
| 98 |
|
|---|
| 99 | FULL_PATH_NAMES = YES
|
|---|
| 100 |
|
|---|
| 101 | # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
|
|---|
| 102 | # can be used to strip a user-defined part of the path. Stripping is
|
|---|
| 103 | # only done if one of the specified strings matches the left-hand part of
|
|---|
| 104 | # the path. The tag can be used to show relative paths in the file list.
|
|---|
| 105 | # If left blank the directory from which doxygen is run is used as the
|
|---|
| 106 | # path to strip.
|
|---|
| 107 |
|
|---|
|
|---|