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

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

?? doxyfile.route

?? Diameter協議棧
?? ROUTE
?? 第 1 頁 / 共 3 頁
字號:
# Doxyfile 1.3.5# 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           = "Open Diameter Route Architecture"# 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         = Version1.0.7# 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       = ./OutputRoute# 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, 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   = NO# 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.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 YESEXTRACT_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# The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation.GENERATE_TODOLIST      = YES# The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation.GENERATE_TESTLIST      = YES# The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation.GENERATE_BUGLIST       = YES# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation.GENERATE_DEPRECATEDLIST= YES# The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif.ENABLED_SECTIONS       = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting.MAX_INITIALIZER_LINES  = 30# Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation.SHOW_USED_FILES        = YES#---------------------------------------------------------------------------# configuration options related to warning and progress messages#---------------------------------------------------------------------------# The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used.QUIET                  = NO# The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used.WARNINGS               = YES# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled.WARN_IF_UNDOCUMENTED   = YES# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly.WARN_IF_DOC_ERROR      = YES# The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text.WARN_FORMAT            = "$file:$line: $text"# The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr.WARN_LOGFILE           = #---------------------------------------------------------------------------# configuration options related to the input files

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
极品美女销魂一区二区三区免费| 日本一区二区三区在线观看| 亚洲图片欧美一区| 在线观看av一区| 亚洲第四色夜色| 欧美一级淫片007| 精品亚洲国产成人av制服丝袜 | 国产精品少妇自拍| 成人av电影观看| 亚洲国产视频在线| 欧美一区日本一区韩国一区| 精品一区二区三区影院在线午夜| 26uuu色噜噜精品一区二区| 国产露脸91国语对白| 国产精品传媒在线| 欧美日本国产视频| 国产精品一级在线| 亚洲人成网站色在线观看| 欧美精品一卡两卡| 久久99精品国产麻豆不卡| 国产精品传媒入口麻豆| 欧美精品少妇一区二区三区| 国产专区欧美精品| 亚洲色图视频网| 日韩一区二区三区高清免费看看| 懂色av一区二区三区蜜臀| 亚洲一区在线视频观看| 精品国产成人系列| 91国产成人在线| 激情综合网av| 一区二区三区久久| 久久尤物电影视频在线观看| 色综合天天狠狠| 久久99精品久久久久久动态图| 亚洲人成伊人成综合网小说| 欧美v日韩v国产v| 91久久人澡人人添人人爽欧美| 精品综合久久久久久8888| 一区二区在线观看免费视频播放| 欧美成人福利视频| 欧美在线免费观看亚洲| 国产精品99久久久久久似苏梦涵 | 最新国产の精品合集bt伙计| 日韩一级高清毛片| 色婷婷国产精品| 麻豆freexxxx性91精品| 一区二区三区欧美亚洲| 欧美激情在线一区二区| 日韩欧美另类在线| 在线观看欧美日本| www.成人网.com| 国产高清在线精品| 另类专区欧美蜜桃臀第一页| 亚洲大片在线观看| 亚洲免费在线视频一区 二区| 久久久亚洲精品石原莉奈| 欧美精品在线视频| 欧美亚洲精品一区| 色老综合老女人久久久| 国产成人免费在线| 韩国欧美国产1区| 一区二区免费在线播放| 国产日韩在线不卡| 久久综合久久99| 精品嫩草影院久久| 日韩久久久精品| 欧美一二三区在线| 7878成人国产在线观看| 欧美日韩国产一区二区三区地区| 国产aⅴ精品一区二区三区色成熟| 国产综合色精品一区二区三区| 日本不卡免费在线视频| 五月婷婷色综合| 婷婷综合另类小说色区| 午夜亚洲福利老司机| 亚洲国产精品一区二区尤物区| 亚洲免费视频成人| 亚洲女性喷水在线观看一区| **网站欧美大片在线观看| 综合久久一区二区三区| 亚洲欧美一区二区三区极速播放 | 日本一区二区三区在线不卡| 久久久噜噜噜久久人人看 | 91精品国产色综合久久ai换脸| 欧美日韩在线免费视频| 欧美三区在线视频| 精品视频1区2区| 欧美一区二区三区四区久久| 欧美人与性动xxxx| 欧美一区二区国产| 欧美精品一区二区三区视频| www激情久久| 久久精品这里都是精品| 国产精品青草久久| 亚洲色图欧美在线| 亚洲一区在线视频观看| 美女一区二区在线观看| 国产麻豆视频一区二区| www.欧美.com| 欧美色男人天堂| 精品成人一区二区三区四区| 国产日产欧美精品一区二区三区| 中文字幕中文乱码欧美一区二区| 亚洲免费资源在线播放| 日韩av一区二区三区四区| 寂寞少妇一区二区三区| 精品免费国产一区二区三区四区| 精品成a人在线观看| 久久免费国产精品| 国产精品日日摸夜夜摸av| 亚洲激情在线激情| 美女爽到高潮91| av在线播放一区二区三区| 欧美日韩成人综合| 国产性天天综合网| 亚洲成人在线网站| 国产精品中文字幕日韩精品| 日本乱人伦aⅴ精品| 精品电影一区二区| 一二三区精品福利视频| 国内一区二区视频| 欧美中文字幕不卡| 国产婷婷一区二区| 午夜精品影院在线观看| 国产成人av影院| 在线播放91灌醉迷j高跟美女| 国产欧美一区二区三区沐欲| 亚洲主播在线观看| 懂色av一区二区三区蜜臀| 欧美一级欧美三级| 亚洲欧美国产77777| 国产麻豆成人传媒免费观看| 欧美日韩国产一二三| 国产精品久久久久久久久晋中| 日本va欧美va欧美va精品| 色综合视频在线观看| 欧美激情一区二区三区全黄| 久久国产婷婷国产香蕉| 欧美性猛交xxxxxx富婆| 国产精品美女久久久久久久网站| 日本色综合中文字幕| 在线亚洲高清视频| 国产精品区一区二区三| 国产一区二区三区| 91精品国产免费| 亚洲国产日产av| 色偷偷成人一区二区三区91 | 亚洲图片另类小说| 韩国精品在线观看| 欧美一二三区精品| 日韩精彩视频在线观看| 一本大道av伊人久久综合| 国产精品麻豆久久久| 国产精品影视天天线| 精品国产乱码91久久久久久网站| 天堂影院一区二区| 欧美日韩精品高清| 肉丝袜脚交视频一区二区| 91福利国产精品| 亚洲乱码日产精品bd| 97成人超碰视| 国产精品国产三级国产专播品爱网| 国产资源精品在线观看| 久久久久综合网| 国产精品主播直播| 欧美极品美女视频| 国产91露脸合集magnet | 中文字幕一区日韩精品欧美| 国产.精品.日韩.另类.中文.在线.播放| 欧美一级在线视频| 久久机这里只有精品| 亚洲精品一区二区精华| 国产精品一区免费视频| 国产午夜精品一区二区三区视频| 国产激情一区二区三区| 日本一区二区综合亚洲| 97久久超碰精品国产| 亚洲免费观看高清完整版在线观看熊| 94色蜜桃网一区二区三区| 亚洲激情在线播放| 欧美精品xxxxbbbb| 久久99国产精品久久99| 日本一区二区三区久久久久久久久不| 成人午夜短视频| 亚洲免费观看高清完整版在线观看 | 看电视剧不卡顿的网站| 久久你懂得1024| 成人国产视频在线观看| 亚洲美女一区二区三区| 欧美午夜一区二区三区| 蜜桃视频一区二区三区在线观看| 精品免费日韩av| aa级大片欧美| 日韩国产欧美一区二区三区| 久久久久久9999| 在线欧美小视频| 九九**精品视频免费播放| 国产精品家庭影院| 欧美三区在线观看| 国产精品一区二区在线观看网站 |