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

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

?? doxyfile

?? mitab,讀取MapInfo的地圖文件
??
?? 第 1 頁 / 共 2 頁
字號:
# Doxyfile 1.1.2

# This file describes the settings to be used by doxygen for a project
#
# All text after a hash (#) is considered a comment and will be ignored
# The format is:
#       TAG = value [value, ...]
# Values that contain spaces should be placed between quotes (" ")

#---------------------------------------------------------------------------
# General configuration options
#---------------------------------------------------------------------------

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

PROJECT_NAME         = MITAB

# 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       = 

# 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: 
# Dutch, French, Italian, Czech, Swedish, German and Japanese

OUTPUT_LANGUAGE      = English

# 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

# 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

# If the EXTRACT_ALL tag is set to YES all classes and functions will be
# included in the documentation, even if no documentation was available.

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 HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
# undocumented members inside documented classes or files.

HIDE_UNDOC_MEMBERS   = NO

# If the HIDE_UNDOC_CLASSESS tag is set to YES, Doxygen will hide all
# undocumented classes.

HIDE_UNDOC_CLASSES   = 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

# 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 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.

STRIP_FROM_PATH      = 

# 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 CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
# generate a class diagram (in Html and LaTeX) for classes with base or
# super classes. Setting the tag to NO turns the diagrams off.

CLASS_DIAGRAMS       = YES

# 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 CASE_SENSE_NAMES tag is set to NO (the default) 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.

CASE_SENSE_NAMES     = NO

# 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

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

SHOW_INCLUDE_FILES   = NO

# If the JAVADOC_AUTOBRIEF tag is set to YES (the default) 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-style will
# behave just like the Qt-style comments.

JAVADOC_AUTOBRIEF    = YES

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

INHERIT_DOCS         = 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 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

# The ENABLE_SECTIONS tag can be used to enable conditional
# documentation sections, marked by \if sectionname ... \endif.

ENABLED_SECTIONS     = 

#---------------------------------------------------------------------------
# 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                = mitab_capi.cpp

# 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 all files are included.

FILE_PATTERNS        = *.h *.c *.cpp *.dox

# 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              = 

# 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         = 

# 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     = 

# 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         = 

#---------------------------------------------------------------------------
# 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_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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧美日韩在线播放| 日韩欧美一级在线播放| 亚洲精品久久久蜜桃| 91蜜桃免费观看视频| 综合av第一页| 欧美亚洲国产一区在线观看网站| 亚洲国产精品久久久久秋霞影院| 欧美日韩国产一级二级| 日韩不卡在线观看日韩不卡视频| 日韩三级中文字幕| 国产精品一区二区在线播放| 国产精品女同一区二区三区| 成人18视频在线播放| 亚洲成人免费影院| 五月婷婷色综合| 精品美女一区二区| 成人精品一区二区三区四区 | 国产在线看一区| 久久久99精品免费观看| 91美女精品福利| 麻豆91精品91久久久的内涵| 中文字幕免费不卡在线| 欧美性色黄大片手机版| 国产曰批免费观看久久久| 亚洲男人的天堂在线aⅴ视频| 欧美男人的天堂一二区| 国产精品资源在线| 亚洲成人免费av| 国产欧美一区二区精品忘忧草 | 色综合一个色综合| 丝袜亚洲另类丝袜在线| 中文一区在线播放 | 91精品国产高清一区二区三区蜜臀| 国内精品久久久久影院薰衣草| 一区二区三区欧美日| 欧美v日韩v国产v| 一本色道亚洲精品aⅴ| 国内国产精品久久| 亚洲一区二区四区蜜桃| 国产欧美日韩中文久久| 制服丝袜激情欧洲亚洲| www.欧美色图| 六月丁香婷婷久久| 亚洲一区二区美女| 中文字幕av资源一区| 欧美一级片在线看| 色老汉一区二区三区| 国产精品影音先锋| 天天亚洲美女在线视频| 亚洲精品美国一| 国产精品午夜春色av| 欧美精品一区二区在线观看| 欧美剧在线免费观看网站| 色综合久久综合网| 成人一二三区视频| 国产毛片精品一区| 另类小说视频一区二区| 婷婷夜色潮精品综合在线| 一二三四社区欧美黄| 国产精品国产三级国产aⅴ中文| 精品粉嫩超白一线天av| 欧美日本在线播放| 欧美日韩精品欧美日韩精品| 91福利视频在线| 日本久久精品电影| 色婷婷国产精品久久包臀| 成人网在线播放| 国产成人av自拍| 国产馆精品极品| 日韩一区二区三免费高清| 欧美体内she精视频| 色88888久久久久久影院野外| 91色在线porny| 色综合咪咪久久| 欧美亚洲国产bt| 欧美日韩亚洲综合一区二区三区| 91豆麻精品91久久久久久| 色综合一个色综合亚洲| 在线观看av一区| 欧美日韩精品是欧美日韩精品| 欧美日本国产一区| 欧美色综合久久| 欧洲精品一区二区三区在线观看| 不卡影院免费观看| 色综合久久久网| 91天堂素人约啪| 暴力调教一区二区三区| 国产精品亚洲午夜一区二区三区 | 日韩激情av在线| 午夜精品福利在线| 亚洲国产婷婷综合在线精品| 亚洲精品视频自拍| 亚洲欧美日韩综合aⅴ视频| 亚洲国产成人在线| 亚洲精品中文字幕乱码三区| 亚洲手机成人高清视频| 中文字幕在线播放不卡一区| 国产精品免费看片| 国产精品毛片久久久久久 | 欧美电视剧免费观看| 91九色02白丝porn| 91精品国产色综合久久| 日韩一区二区免费高清| 亚洲精品在线观| 国产午夜亚洲精品午夜鲁丝片 | 日韩成人一级大片| 国产一区二区女| 成人动漫一区二区| 色哟哟国产精品免费观看| 91黄色免费版| 欧美精品一二三区| 欧美一级在线视频| 欧美草草影院在线视频| 久久精品亚洲国产奇米99| 国产精品嫩草影院av蜜臀| 亚洲乱码国产乱码精品精可以看 | 久久久国产综合精品女国产盗摄| 久久精品视频一区二区三区| 国产精品无人区| 亚洲猫色日本管| 日韩国产成人精品| 亚洲福利国产精品| 国产91精品一区二区麻豆亚洲| 99久久婷婷国产| 欧美日韩精品一区二区三区| 精品国产污污免费网站入口 | av午夜一区麻豆| 欧美日韩亚洲国产综合| 欧美成人精品3d动漫h| 国产精品久久久久久福利一牛影视 | 中文字幕中文乱码欧美一区二区| 一区二区三区在线视频免费观看| 日本不卡一二三区黄网| 成人av在线电影| 337p亚洲精品色噜噜| 国产精品免费久久| 中文字幕亚洲一区二区va在线| 美女网站视频久久| www.视频一区| 欧美一区二区大片| 亚洲天堂精品在线观看| 美女久久久精品| 91首页免费视频| 欧美电视剧在线看免费| 一区2区3区在线看| 国产精品白丝jk白祙喷水网站| 日本精品视频一区二区| 精品成人免费观看| 亚洲一二三级电影| 丁香啪啪综合成人亚洲小说| 在线观看不卡一区| 亚洲日本欧美天堂| 国产精选一区二区三区| 欧美精品自拍偷拍动漫精品| 国产精品久久久久一区| 久久99在线观看| 色噜噜狠狠成人网p站| 亚洲日本乱码在线观看| 国产精品中文字幕日韩精品 | 激情伊人五月天久久综合| 在线免费视频一区二区| 欧美激情一区在线观看| 极品瑜伽女神91| 欧美一区二区三区视频免费| 一区二区在线观看视频在线观看| a级精品国产片在线观看| 久久久精品免费免费| 免费在线看一区| 欧美精品第1页| 亚洲国产另类精品专区| 91小视频在线观看| 久久久久国产精品麻豆ai换脸| 美洲天堂一区二卡三卡四卡视频| 欧美日韩在线播放三区| 亚洲三级在线播放| 色综合激情久久| 亚洲乱码国产乱码精品精的特点| 色综合中文综合网| 亚洲午夜一二三区视频| 91黄视频在线| 亚洲综合在线电影| 91丨九色丨尤物| 一区二区在线看| 欧美中文字幕不卡| 一区二区三区在线视频免费| 91激情五月电影| 亚洲三级电影全部在线观看高清| 欧美三级蜜桃2在线观看| 亚洲国产wwwccc36天堂| 欧美视频在线一区二区三区| 亚洲卡通动漫在线| 欧美在线一区二区三区| 中文字幕亚洲在| 9191精品国产综合久久久久久| 午夜精品123| 日韩精品在线网站| 精彩视频一区二区三区| 国产女人aaa级久久久级| 粉嫩久久99精品久久久久久夜| 亚洲精品国产无套在线观|