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

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

?? doxyfile

?? Diameter協議棧
??
?? 第 1 頁 / 共 3 頁
字號:
# The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag.EXCLUDE                = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories # that are symbolic links (a Unix filesystem feature) are excluded from the input.EXCLUDE_SYMLINKS       = NO# If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories.EXCLUDE_PATTERNS       = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command).EXAMPLE_PATH           = ../../libdiametereap/test/server_test.cxx \	../../libdiametereap/test/client_test.cxx# If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included.EXAMPLE_PATTERNS       =# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used.EXAMPLE_RECURSIVE      = NO# The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command).IMAGE_PATH             = ./# The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command <filter> <input-file>, where <filter> # is the value of the INPUT_FILTER tag, and <input-file> is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output.INPUT_FILTER           = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES).FILTER_SOURCE_FILES    = NO#---------------------------------------------------------------------------# configuration options related to source browsing#---------------------------------------------------------------------------# If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources.SOURCE_BROWSER         = NO# Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation.INLINE_SOURCES         = NO# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible.STRIP_CODE_COMMENTS    = YES# If the REFERENCED_BY_RELATION tag is set to YES (the default) # then for each documented function all documented # functions referencing it will be listed.REFERENCED_BY_RELATION = YES# If the REFERENCES_RELATION tag is set to YES (the default) # then for each documented function all documented entities # called/used by that function will be listed.REFERENCES_RELATION    = YES# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this.VERBATIM_HEADERS       = YES#---------------------------------------------------------------------------# configuration options related to the alphabetical class index#---------------------------------------------------------------------------# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces.ALPHABETICAL_INDEX     = NO# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20])COLS_IN_ALPHA_INDEX    = 5# In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers.IGNORE_PREFIX          = #---------------------------------------------------------------------------# configuration options related to the HTML output#---------------------------------------------------------------------------# If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output.GENERATE_HTML          = YES# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path.HTML_OUTPUT            = html# The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension.HTML_FILE_EXTENSION    = .html# The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header.HTML_HEADER            = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer.HTML_FOOTER            = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheetHTML_STYLESHEET        = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used.HTML_ALIGN_MEMBERS     = YES# If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) # of the generated HTML documentation.GENERATE_HTMLHELP      = YES# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output dir.CHM_FILE               = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp.HHC_LOCATION           = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO).GENERATE_CHI           = NO# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file.BINARY_TOC             = NO# The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view.TOC_EXPAND             = NO# The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it.DISABLE_INDEX          = NO# This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation.ENUM_VALUES_PER_LINE   = 4# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be# generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature.GENERATE_TREEVIEW      = NO# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown.TREEVIEW_WIDTH         = 250#---------------------------------------------------------------------------# configuration options related to the LaTeX output#---------------------------------------------------------------------------# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output.GENERATE_LATEX         = YES# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path.LATEX_OUTPUT           = latex# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name.LATEX_CMD_NAME         = latex# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name.MAKEINDEX_CMD_NAME     = makeindex# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general.COMPACT_LATEX          = NO# The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used.PAPER_TYPE             = a4wide# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output.EXTRA_PACKAGES         = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing!LATEX_HEADER           = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer.PDF_HYPERLINKS         = NO# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation.USE_PDFLATEX           = NO# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML.LATEX_BATCHMODE        = NO# If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output.LATEX_HIDE_INDICES     = NO#---------------------------------------------------------------------------# configuration options related to the RTF output#---------------------------------------------------------------------------# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimised for Word 97 and may not look very pretty with # other RTF readers or editors.GENERATE_RTF           = NO# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path.RTF_OUTPUT             = rtf# If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general.COMPACT_RTF            = NO# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links.RTF_HYPERLINKS         = NO# Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assigments. You only have to provide # replacements, missing definitions are set to their default value.RTF_STYLESHEET_FILE    = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file.RTF_EXTENSIONS_FILE    = #---------------------------------------------------------------------------# configuration options related to the man page output#---------------------------------------------------------------------------# If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pagesGENERATE_MAN           = NO# The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path.MAN_OUTPUT             = man# The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3)MAN_EXTENSION          = .3

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧美aⅴ...| 亚洲欧洲性图库| 亚洲va国产天堂va久久en| 91捆绑美女网站| 伊人夜夜躁av伊人久久| 欧美日韩一级二级三级| 青青国产91久久久久久| 精品国产伦理网| 国产成人免费在线观看不卡| 国产精品伦理一区二区| 色久综合一二码| 日本中文字幕一区| 久久久精品国产免大香伊| 91在线国产观看| 日韩中文字幕不卡| 国产亚洲欧洲997久久综合| 国产99精品在线观看| 亚洲人123区| 日韩三级高清在线| 白白色亚洲国产精品| 亚洲图片欧美色图| 久久奇米777| 色老汉一区二区三区| 久久精品国产99国产精品| 国产精品热久久久久夜色精品三区 | 美女尤物国产一区| 欧美国产激情二区三区| 在线观看视频欧美| 国产成人免费在线| 三级影片在线观看欧美日韩一区二区 | 亚洲精品一区二区三区蜜桃下载| 成人免费av网站| 日本欧美加勒比视频| 国产精品家庭影院| 欧美高清性hdvideosex| 成人午夜视频免费看| 亚洲一区在线观看免费| 久久久综合激的五月天| 色中色一区二区| 国产麻豆成人传媒免费观看| 一区二区三区在线视频免费| 久久亚洲一区二区三区四区| 在线观看区一区二| k8久久久一区二区三区 | 欧美三级在线看| 国产成a人亚洲精品| 奇米精品一区二区三区在线观看一| 国产精品嫩草久久久久| 欧美一级电影网站| 欧美撒尿777hd撒尿| 成人网页在线观看| 美国十次综合导航| 午夜影视日本亚洲欧洲精品| 综合在线观看色| 日本一区二区久久| 精品少妇一区二区三区视频免付费 | 亚洲丝袜自拍清纯另类| 26uuu国产电影一区二区| 777奇米四色成人影色区| 欧美羞羞免费网站| 99这里只有久久精品视频| 国产精品99久| 精品制服美女久久| 麻豆freexxxx性91精品| 日韩精品一二三| 首页国产欧美久久| 婷婷久久综合九色国产成人| 一区二区三区在线播放| 亚洲精品视频在线看| 亚洲人成伊人成综合网小说| 亚洲天堂2014| 亚洲精品五月天| 亚洲一区二区三区四区的| 亚洲麻豆国产自偷在线| 亚洲男人天堂一区| 亚洲欧美日韩在线| 一区二区三区国产豹纹内裤在线| 亚洲男同性视频| 亚洲一区二区三区四区的| 亚洲成人av一区| 日韩黄色在线观看| 久久精品国产免费| 国产一区二区免费看| 国产精品538一区二区在线| 国产高清精品在线| 99天天综合性| 色婷婷av久久久久久久| 91福利精品视频| 91精品国产一区二区三区蜜臀| 欧美一区二区三区小说| 精品国产一区二区在线观看| 久久日韩精品一区二区五区| 中文字幕精品三区| 亚洲日本在线天堂| 三级影片在线观看欧美日韩一区二区 | 国产乱色国产精品免费视频| 丰满放荡岳乱妇91ww| 99精品欧美一区二区蜜桃免费 | 国产精品剧情在线亚洲| 亚洲色图欧美在线| 亚洲成人一区二区在线观看| 蜜臀av性久久久久蜜臀aⅴ流畅| 国产一区二区三区日韩| eeuss鲁片一区二区三区在线观看| 在线视频中文字幕一区二区| 在线综合亚洲欧美在线视频| 国产午夜亚洲精品羞羞网站| 亚洲精品视频一区二区| 蜜桃视频在线一区| eeuss鲁片一区二区三区 | 国模无码大尺度一区二区三区| 成人三级在线视频| 在线不卡中文字幕播放| 国产亚洲一本大道中文在线| 亚洲精品视频在线| 国产自产2019最新不卡| 97se亚洲国产综合自在线观| 欧美一区二区三区系列电影| 亚洲国产成人一区二区三区| 视频一区视频二区中文| 成人爱爱电影网址| 日韩一区和二区| 亚洲狠狠丁香婷婷综合久久久| 在线观看一区日韩| 精品成人在线观看| 一区二区三区高清不卡| 国产麻豆精品95视频| 欧美日韩亚洲国产综合| 国产精品久久久久久久第一福利 | 国产精品麻豆99久久久久久| 五月天亚洲精品| av一区二区三区四区| 精品国产99国产精品| 亚洲一二三四区不卡| 成人性生交大片免费看在线播放| 欧美日本在线视频| 亚洲美女屁股眼交3| 国产a级毛片一区| 欧美大肚乱孕交hd孕妇| 亚洲成人在线免费| 一本到不卡免费一区二区| 久久精品男人的天堂| 久久国产婷婷国产香蕉| 宅男在线国产精品| 亚洲国产乱码最新视频| 91蜜桃网址入口| 国产精品久久久久久久久免费樱桃 | 国产精品一二三区在线| 日韩欧美你懂的| 性做久久久久久| 欧美日韩久久久一区| 亚洲男人的天堂一区二区| 成人小视频在线| 久久精品在线观看| 国内一区二区在线| 欧美大胆人体bbbb| 激情另类小说区图片区视频区| 91精品欧美福利在线观看| 午夜精品成人在线| 欧美日韩高清在线| 亚洲成人一区在线| 欧美丰满少妇xxxxx高潮对白| 亚洲国产视频在线| 欧美日韩高清不卡| 日韩激情中文字幕| 91麻豆精品国产91| 轻轻草成人在线| 日韩一区二区免费高清| 久久精品国产一区二区| 精品少妇一区二区三区视频免付费| 麻豆精品视频在线观看| 亚洲午夜精品久久久久久久久| av电影天堂一区二区在线| 亚洲人一二三区| 色婷婷av一区二区| 日韩主播视频在线| 精品88久久久久88久久久 | 国产河南妇女毛片精品久久久| 精品国产一二三区| 丁香婷婷综合激情五月色| 国产精品你懂的在线| 99精品视频在线播放观看| 亚洲一本大道在线| 日韩一区二区三区视频| 国产电影一区二区三区| 亚洲视频一区二区免费在线观看| 在线亚洲欧美专区二区| 奇米影视一区二区三区| 久久久蜜臀国产一区二区| 成人免费视频视频在线观看免费| 亚洲日韩欧美一区二区在线| 欧美日韩不卡在线| 国产最新精品免费| 亚洲欧美色综合| 日韩一区二区三区在线视频| 国产成人在线网站| 洋洋成人永久网站入口| 精品国产制服丝袜高跟| 91啪在线观看| 蜜桃视频在线观看一区|