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

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

?? doxygen.conf.in

?? 用來編寫 unix 環境下的守護程序的工具庫
?? IN
?? 第 1 頁 / 共 4 頁
字號:
# 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# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order.SORT_BRIEF_DOCS        = NO# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.# Note: This option applies only to the class list, not to the # alphabetical list.SORT_BY_SCOPE_NAME     = NO# 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      = NO# 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      = NO# 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       = NO# 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# If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation.SHOW_DIRECTORIES       = NO#---------------------------------------------------------------------------# 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#---------------------------------------------------------------------------# The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces.INPUT                  = ../libdaemon/# If the value of the INPUT tag contains directories, you can use the # FILE_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 the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mmFILE_PATTERNS          = *.h# The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used.RECURSIVE              = NO# 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           = ../examples/# 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       = *.c# 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.  If FILTER_PATTERNS is specified, this tag will be # ignored.INPUT_FILTER           = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis.  Doxygen will compare the file name with each pattern and apply the # filter if there is a match.  The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files.FILTER_PATTERNS        = # 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. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO.SOURCE_BROWSER         = YES# 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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品亚洲国产成人av制服丝袜| 一区二区三区不卡视频| 丰满亚洲少妇av| 美女高潮久久久| 亚洲成年人影院| 亚洲自拍偷拍综合| 午夜精品免费在线观看| 日韩有码一区二区三区| 婷婷成人激情在线网| 国产白丝网站精品污在线入口| 精品视频1区2区| 欧美图区在线视频| 555夜色666亚洲国产免| 在线电影欧美成精品| 日韩一卡二卡三卡四卡| 精品国产亚洲在线| 国产日韩精品视频一区| 国产日韩欧美精品在线| 蜜臀国产一区二区三区在线播放 | 亚洲尤物视频在线| 高清不卡一区二区| 日韩精品一区在线观看| 久久精品人人做人人爽97| 欧美高清在线一区二区| 亚洲美腿欧美偷拍| 亚洲h在线观看| 欧洲人成人精品| 日韩一区二区三区在线视频| 亚洲精品久久久蜜桃| 麻豆免费精品视频| 欧美一区二区在线免费观看| 欧美高清在线精品一区| 国产精品456露脸| 在线观看成人小视频| 亚洲综合色视频| 色综合咪咪久久| 日韩精品一区二区三区视频 | 麻豆精品精品国产自在97香蕉 | 三级久久三级久久| 欧美日本一区二区三区| 国产天堂亚洲国产碰碰| 国产一区二区不卡| 欧美电影影音先锋| 琪琪久久久久日韩精品| 欧美图区在线视频| 亚洲精品中文字幕乱码三区| 色素色在线综合| 亚洲第一主播视频| 欧美精品1区2区3区| 美国av一区二区| 久久久久久久综合狠狠综合| 亚洲欧美日韩电影| 欧美性感一类影片在线播放| 婷婷丁香激情综合| 精品国产免费久久 | 国产婷婷色一区二区三区| 处破女av一区二区| 欧美日韩一区二区电影| 免费成人美女在线观看.| 国产亚洲欧洲997久久综合| 成人黄色软件下载| 久久综合国产精品| 免费一级欧美片在线观看| 久久精品日韩一区二区三区| 91视频你懂的| 中文字幕一区在线观看视频| 韩国一区二区在线观看| 欧美大白屁股肥臀xxxxxx| 专区另类欧美日韩| 成人av先锋影音| 午夜一区二区三区在线观看| 日韩欧美高清一区| 成av人片一区二区| 舔着乳尖日韩一区| 国产欧美精品日韩区二区麻豆天美| 色狠狠色狠狠综合| 亚洲黄色小视频| 久久久久青草大香线综合精品| 97久久精品人人做人人爽50路| 国产精品国产三级国产普通话三级 | 久久精品亚洲麻豆av一区二区| 91偷拍与自偷拍精品| 精品亚洲国产成人av制服丝袜| 亚洲欧美aⅴ...| 久久婷婷成人综合色| 欧美日韩国产另类一区| 成人免费毛片嘿嘿连载视频| 日韩电影在线一区二区三区| 日韩一区国产二区欧美三区| 色综合中文字幕国产 | 国产精品初高中害羞小美女文| 欧美一区二区三区四区高清 | 91精品国产综合久久精品图片 | 国产电影精品久久禁18| 国产精品亲子伦对白| 97se亚洲国产综合自在线不卡| 久久99热国产| 国产精品人成在线观看免费| 日韩精品一区二区三区四区| 欧美调教femdomvk| 91蜜桃视频在线| www.日韩av| 日韩精品视频网| 亚洲成人久久影院| 亚洲六月丁香色婷婷综合久久| 国产视频不卡一区| 精品99一区二区| 日韩精品一区二区三区视频| 91精品午夜视频| 在线不卡中文字幕| 欧美精品国产精品| 欧美三级三级三级爽爽爽| 91网站黄www| 91精品福利在线| 欧美在线小视频| 欧美亚洲一区二区在线| 欧美艳星brazzers| 欧美三级在线播放| 欧美日韩国产高清一区二区三区 | 成人综合激情网| 国产精品一区二区三区99| 激情综合一区二区三区| 国产做a爰片久久毛片 | 亚洲成人tv网| 日韩电影在线观看网站| 青青草国产成人99久久| 久久成人久久爱| 国模娜娜一区二区三区| 国产成人精品午夜视频免费| 成人免费视频一区二区| 97久久精品人人澡人人爽| 在线看日本不卡| 欧美妇女性影城| 欧美xxxxx裸体时装秀| 久久丝袜美腿综合| 中文字幕欧美国产| 亚洲欧美日韩中文播放| 亚洲成av人片在线| 美女看a上一区| 成人黄色网址在线观看| 欧美在线免费播放| 日韩写真欧美这视频| 国产日韩欧美不卡| 亚洲精品中文在线| 另类专区欧美蜜桃臀第一页| 国产91精品一区二区麻豆网站| 97se亚洲国产综合自在线| 欧美日韩激情在线| 久久久久久久综合狠狠综合| 亚洲欧美日韩中文播放| 免费成人小视频| 91香蕉视频污在线| 欧美成人精品1314www| 一区在线观看视频| 蜜臀a∨国产成人精品| 99精品视频免费在线观看| 91精品国产91热久久久做人人 | 日韩免费在线观看| 精品国产乱码久久久久久影片| 久久精品视频一区| 亚洲一区二区三区美女| 国产一区二区在线观看免费| 91丨porny丨国产| 精品国产1区2区3区| 亚洲夂夂婷婷色拍ww47| 国产99久久久久久免费看农村| 欧美亚洲日本一区| 国产欧美日韩视频在线观看| 性欧美疯狂xxxxbbbb| 粉嫩aⅴ一区二区三区四区| 制服视频三区第一页精品| 中文字幕亚洲欧美在线不卡| 日本不卡一区二区三区| 色综合久久六月婷婷中文字幕| 日韩精品中文字幕一区| 亚洲成人在线免费| 91色婷婷久久久久合中文| 久久精品在这里| 久久不见久久见免费视频7| 欧美视频一区二区三区在线观看| 久久精品视频一区二区| 精品一区二区三区免费播放| 欧美精品久久天天躁| 亚洲另类在线制服丝袜| 国产一区二区三区| 亚洲国产精华液网站w| 蜜臀av国产精品久久久久| 91在线看国产| 国产欧美日韩激情| 激情文学综合插| 在线播放欧美女士性生活| 亚洲影院免费观看| 91在线国产福利| 中文字幕在线免费不卡| 国产成人av一区| 日韩精品一区国产麻豆| 日韩在线观看一区二区| 欧美日韩成人在线| 亚洲成人av资源| 制服丝袜成人动漫|