[2] | 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 |
|
---|
| |
---|