亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? doxygen.conf

?? Flowlive The thermo library provides thermodynamical, chemical and physical properties of elements
?? CONF
?? 第 1 頁 / 共 4 頁
字號:
# Doxyfile 1.3.6

# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project
#
# All text after a hash (#) is considered a comment and will be ignored
# The format is:
#       TAG = value [value, ...]
# For lists items can also be appended using:
#       TAG += value [value, ...]
# Values that contain spaces should be placed between quotes (" ")

#---------------------------------------------------------------------------
# Project related configuration options
#---------------------------------------------------------------------------

# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 
# by quotes) that should identify the project.

PROJECT_NAME           = libthermo

# The PROJECT_NUMBER tag can be used to enter a project or revision number. 
# This could be handy for archiving the generated documentation or 
# if some version control system is used.

PROJECT_NUMBER         = 0.0.2

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
# base path where the generated documentation will be put. 
# If a relative path is entered, it will be relative to the location 
# where doxygen was started. If left blank the current directory will be used.

OUTPUT_DIRECTORY       = 

# The OUTPUT_LANGUAGE tag is used to specify the language in which all 
# documentation generated by doxygen is written. Doxygen will use this 
# information to generate all constant output in the proper language. 
# The default language is English, other supported languages are: 
# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, 
# Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en 
# (Japanese with English messages), Korean, Korean-en, Norwegian, Polish, Portuguese, 
# Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.

OUTPUT_LANGUAGE        = English

# This tag can be used to specify the encoding used in the generated output. 
# The encoding is not always determined by the language that is chosen, 
# but also whether or not the output is meant for Windows or non-Windows users. 
# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES 
# forces the Windows encoding (this is the default for the Windows binary), 
# whereas setting the tag to NO uses a Unix-style encoding (the default for 
# all platforms other than Windows).

USE_WINDOWS_ENCODING   = YES

# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 
# include brief member descriptions after the members that are listed in 
# the file and class documentation (similar to JavaDoc). 
# Set to NO to disable this.

BRIEF_MEMBER_DESC      = YES

# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 
# the brief description of a member or function before the detailed description. 
# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 
# brief descriptions will be completely suppressed.

REPEAT_BRIEF           = YES

# This tag implements a quasi-intelligent brief description abbreviator 
# that is used to form the text in various listings. Each string 
# in this list, if found as the leading text of the brief description, will be 
# stripped from the text and the result after processing the whole list, is used 
# as the annotated text. Otherwise, the brief description is used as-is. If left 
# blank, the following values are used ("$name" is automatically replaced with the 
# name of the entity): "The $name class" "The $name widget" "The $name file" 
# "is" "provides" "specifies" "contains" "represents" "a" "an" "the"

ABBREVIATE_BRIEF       = 

# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 
# Doxygen will generate a detailed section even if there is only a brief 
# description.

ALWAYS_DETAILED_SEC    = NO

# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited 
# members of a class in the documentation of that class as if those members were 
# ordinary class members. Constructors, destructors and assignment operators of 
# the base classes will not be shown.

INLINE_INHERITED_MEMB  = NO

# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 
# path before files name in the file list and in the header files. If set 
# to NO the shortest path that makes the file name unique will be used.

FULL_PATH_NAMES        = NO

# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 
# can be used to strip a user-defined part of the path. Stripping is 
# only done if one of the specified strings matches the left-hand part of 
# the path. It is allowed to use relative paths in the argument list. 
# If left blank the directory from which doxygen is run is used as the 
# path to strip.

STRIP_FROM_PATH        = 

# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 
# (but less readable) file names. This can be useful is your file systems 
# doesn't support long names like on DOS, Mac, or CD-ROM.

SHORT_NAMES            = NO

# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 
# will interpret the first line (until the first dot) of a JavaDoc-style 
# comment as the brief description. If set to NO, the JavaDoc 
# comments will behave just like the Qt-style comments (thus requiring an 
# explicit @brief command for a brief description.

JAVADOC_AUTOBRIEF      = NO

# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 
# treat a multi-line C++ special comment block (i.e. a block of //! or /// 
# comments) as a brief description. This used to be the default behaviour. 
# The new default is to treat a multi-line C++ comment block as a detailed 
# description. Set this tag to YES if you prefer the old behaviour instead.

MULTILINE_CPP_IS_BRIEF = NO

# If the DETAILS_AT_TOP tag is set to YES then Doxygen 
# will output the detailed description near the top, like JavaDoc.
# If set to NO, the detailed description appears after the member 
# documentation.

DETAILS_AT_TOP         = NO

# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 
# member inherits the documentation from any documented member that it 
# re-implements.

INHERIT_DOCS           = YES

# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 
# tag is set to YES, then doxygen will reuse the documentation of the first 
# member in the group (if any) for the other members of the group. By default 
# all members of a group must be documented explicitly.

DISTRIBUTE_GROUP_DOC   = NO

# The TAB_SIZE tag can be used to set the number of spaces in a tab. 
# Doxygen uses this value to replace tabs by spaces in code fragments.

TAB_SIZE               = 8

# This tag can be used to specify a number of aliases that acts 
# as commands in the documentation. An alias has the form "name=value". 
# For example adding "sideeffect=\par Side Effects:\n" will allow you to 
# put the command \sideeffect (or @sideeffect) in the documentation, which 
# will result in a user-defined paragraph with heading "Side Effects:". 
# You can put \n's in the value part of an alias to insert newlines.

ALIASES                = 

# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 
# only. Doxygen will then generate output that is more tailored for C. 
# For instance, some of the names that are used will be different. The list 
# of all members will be omitted, etc.

OPTIMIZE_OUTPUT_FOR_C  = NO

# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources 
# only. Doxygen will then generate output that is more tailored for Java. 
# For instance, namespaces will be presented as packages, qualified scopes 
# will look different, etc.

OPTIMIZE_OUTPUT_JAVA   = NO

# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 
# the same type (for instance a group of public functions) to be put as a 
# subgroup of that type (e.g. under the Public Functions section). Set it to 
# NO to prevent subgrouping. Alternatively, this can be done per class using 
# the \nosubgrouping command.

SUBGROUPING            = YES

#---------------------------------------------------------------------------
# Build related configuration options
#---------------------------------------------------------------------------

# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 
# documentation are documented, even if no documentation was available. 
# Private class members and static file members will be hidden unless 
# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES

EXTRACT_ALL            = NO

# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 
# will be included in the documentation.

EXTRACT_PRIVATE        = NO

# If the EXTRACT_STATIC tag is set to YES all static members of a file 
# will be included in the documentation.

EXTRACT_STATIC         = NO

# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 
# defined locally in source files will be included in the documentation. 
# If set to NO only classes defined in header files are included.

EXTRACT_LOCAL_CLASSES  = YES

# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 
# undocumented members of documented classes, files or namespaces. 
# If set to NO (the default) these members will be included in the 
# various overviews, but no documentation section is generated. 
# This option has no effect if EXTRACT_ALL is enabled.

HIDE_UNDOC_MEMBERS     = NO

# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 
# undocumented classes that are normally visible in the class hierarchy. 
# If set to NO (the default) these classes will be included in the various 
# overviews. This option has no effect if EXTRACT_ALL is enabled.

HIDE_UNDOC_CLASSES     = NO

# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 
# friend (class|struct|union) declarations. 
# If set to NO (the default) these declarations will be included in the 
# documentation.

HIDE_FRIEND_COMPOUNDS  = NO

# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 
# documentation blocks found inside the body of a function. 
# If set to NO (the default) these blocks will be appended to the 
# function's detailed documentation block.

HIDE_IN_BODY_DOCS      = NO

# The INTERNAL_DOCS tag determines if documentation 
# that is typed after a \internal command is included. If the tag is set 
# to NO (the default) then the documentation will be excluded. 
# Set it to YES to include the internal documentation.

INTERNAL_DOCS          = NO

# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 
# file names in lower-case letters. If set to YES upper-case letters are also 
# allowed. This is useful if you have classes or files whose names only differ 
# in case and if your file system supports case sensitive file names. Windows 
# users are advised to set this option to NO.

CASE_SENSE_NAMES       = YES

# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 
# will show members with their full class and namespace scopes in the 
# documentation. If set to YES the scope will be hidden.

HIDE_SCOPE_NAMES       = NO

# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 
# will put a list of the files that are included by a file in the documentation 
# of that file.

SHOW_INCLUDE_FILES     = YES

# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 
# is inserted in the documentation for inline members.

INLINE_INFO            = YES

# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 
# will sort the (detailed) documentation of file and class members 
# alphabetically by member name. If set to NO the members will appear in 
# declaration order.

SORT_MEMBER_DOCS       = YES

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人av资源下载| 久久先锋影音av鲁色资源网| 日韩欧美国产综合一区| 一区在线中文字幕| 美女尤物国产一区| 精品婷婷伊人一区三区三| 国产女主播视频一区二区| 日韩av一级片| 欧美日韩国产乱码电影| 亚洲男人电影天堂| 丰满少妇久久久久久久| 26uuu另类欧美亚洲曰本| 爽好久久久欧美精品| 色综合亚洲欧洲| 国产精品每日更新| 成人精品免费看| 精品99999| 精品一区二区三区免费观看 | 一本大道av一区二区在线播放| 欧美日韩黄色影视| 怡红院av一区二区三区| 99精品视频在线播放观看| 国产女人18水真多18精品一级做| 另类专区欧美蜜桃臀第一页| 欧美一级片免费看| 偷拍亚洲欧洲综合| 欧美日本乱大交xxxxx| 亚洲成人精品一区| 欧美亚洲综合在线| 午夜影院久久久| 欧美乱妇一区二区三区不卡视频| 五月婷婷欧美视频| 欧美理论片在线| 蜜臀av性久久久久蜜臀aⅴ流畅 | 中文幕一区二区三区久久蜜桃| 激情久久五月天| 久久久久久免费毛片精品| 麻豆国产精品一区二区三区 | 欧美一区二区三区小说| 日韩国产欧美视频| 欧美一区二区三区视频免费播放| 麻豆国产精品777777在线| 日韩欧美一级二级三级久久久| 美腿丝袜一区二区三区| 国产欧美日韩亚州综合| 日韩视频一区二区三区在线播放 | 首页国产欧美久久| 日韩一区二区电影在线| 国产精品亚洲一区二区三区在线 | 欧美日韩精品一区二区在线播放| 婷婷开心激情综合| 国产亚洲精品超碰| 一本久久a久久免费精品不卡| 一区二区三区在线免费视频| 欧美日产国产精品| 国产一区二区福利视频| 亚洲色图制服诱惑| 欧美一区二区三区免费在线看| 国模冰冰炮一区二区| 亚洲日本电影在线| 日韩片之四级片| 99久久精品国产麻豆演员表| 日韩激情一二三区| 国产精品久久久久久户外露出 | 91一区二区在线观看| 日韩精品91亚洲二区在线观看| 久久网站热最新地址| 色婷婷综合激情| 狠狠色丁香久久婷婷综| 亚洲九九爱视频| 亚洲精品一区在线观看| 91成人在线观看喷潮| 国产麻豆一精品一av一免费| 亚洲国产精品天堂| 中文一区在线播放| 日韩精品一区二区三区视频| 日本丶国产丶欧美色综合| 韩国精品在线观看| 亚洲五码中文字幕| 国产精品久久久久天堂| 欧美成人国产一区二区| 日本黄色一区二区| 成人aaaa免费全部观看| 久草这里只有精品视频| 亚洲男人的天堂一区二区| 日韩免费电影网站| 欧美日韩在线精品一区二区三区激情| 丁香网亚洲国际| 久久se这里有精品| 日韩精品一二三| 亚洲国产成人porn| 亚洲日本丝袜连裤袜办公室| 久久综合中文字幕| 日韩手机在线导航| 欧美精品乱码久久久久久按摩| 欧美一区二区三区小说| 欧美人与性动xxxx| 日本精品视频一区二区| 色综合久久88色综合天天免费| 不卡视频免费播放| 粉嫩高潮美女一区二区三区 | 国产精品丝袜久久久久久app| 久久综合久久99| 久久嫩草精品久久久久| 精品久久久久一区| 精品国产欧美一区二区| 精品va天堂亚洲国产| 2020国产精品| 国产亚洲精品中文字幕| 国产嫩草影院久久久久| 国产精品天美传媒| 亚洲三级电影网站| 亚洲美女屁股眼交| 亚洲与欧洲av电影| 亚洲主播在线观看| 偷拍一区二区三区四区| 美腿丝袜一区二区三区| 精品一区二区三区在线播放视频| 国内精品视频一区二区三区八戒| 久久av资源网| 国产精品888| 91影视在线播放| 欧美午夜精品电影| 91精品一区二区三区久久久久久| 欧美电影免费观看高清完整版在线观看 | 成人综合激情网| 91在线免费看| 欧美亚洲图片小说| 在线播放欧美女士性生活| 制服丝袜一区二区三区| 久久久久久亚洲综合影院红桃| 国产精品久久久久久久浪潮网站| 一区二区在线观看免费| 日韩国产精品久久| 久久99国产精品久久99| 成人黄色免费短视频| 欧美色视频在线| 久久毛片高清国产| 亚洲欧美日韩久久| 青青草国产精品亚洲专区无| 国产一区二区电影| 91福利国产成人精品照片| 日韩欧美黄色影院| 亚洲图片另类小说| 美腿丝袜亚洲色图| 99精品视频中文字幕| 日韩一区二区三区在线观看 | 五月婷婷激情综合网| 国产米奇在线777精品观看| 97国产精品videossex| 日韩欧美久久一区| 亚洲女同一区二区| 激情图片小说一区| 欧美色图一区二区三区| 久久一区二区三区四区| 亚洲综合成人在线视频| 国产精品1区2区3区| 欧美三级资源在线| 国产精品亲子伦对白| 日本不卡1234视频| 91精品1区2区| 国产欧美日韩精品在线| 免费一区二区视频| 欧洲视频一区二区| 国产欧美日韩视频一区二区| 美女在线一区二区| 色婷婷国产精品| 中文字幕av一区二区三区免费看 | 欧美日韩在线直播| 国产精品久久久久久久久搜平片| 日韩精品91亚洲二区在线观看| 9久草视频在线视频精品| 国产色婷婷亚洲99精品小说| 欧美精品一区二区久久久| 亚洲丝袜制服诱惑| 国产不卡视频在线播放| 日韩丝袜情趣美女图片| 亚洲一二三专区| 色综合久久99| 亚洲天堂2014| 国产福利一区二区| 久久综合一区二区| 轻轻草成人在线| 7777精品伊人久久久大香线蕉完整版 | 亚洲国产精品尤物yw在线观看| 99久久99久久免费精品蜜臀| 国产色产综合产在线视频| 久久国产夜色精品鲁鲁99| 欧美久久久久久蜜桃| 亚洲自拍偷拍九九九| 91久久奴性调教| 亚洲激情图片qvod| 在线精品视频一区二区| 亚洲综合一区二区| 欧美日韩在线播放三区| 日韩国产一区二| 欧美va在线播放| 国产一区二区三区蝌蚪| 欧美激情一区二区| 成人高清视频在线|