Doxyfile
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:22k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. # Doxyfile 1.1.4
  2. # Xerces-C Note: Make sure that you run Doxygen from the 'doc' directory
  3. #                where this configuraton file resides.
  4. #                Only use this configuration file with Doxygen 1.1.4
  5. #                and ATT Research Graphviz 1.5
  6. # This file describes the settings to be used by doxygen for a project
  7. #
  8. # All text after a hash (#) is considered a comment and will be ignored
  9. # The format is:
  10. #       TAG = value [value, ...]
  11. # Values that contain spaces should be placed between quotes (" ")
  12. #---------------------------------------------------------------------------
  13. # General configuration options
  14. #---------------------------------------------------------------------------
  15. # The PROJECT_NAME tag is a single word (or a sequence of word surrounded
  16. # by quotes) that should identify the project.
  17. PROJECT_NAME         = Xerces-C++
  18. # The PROJECT_NUMBER tag can be used to enter a project or revision number.
  19. # This could be handy for archiving the generated documentation or
  20. # if some version control system is used.
  21. PROJECT_NUMBER       = v1.6.0
  22. # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
  23. # base path where the generated documentation will be put.
  24. # If a relative path is entered, it will be relative to the location
  25. # where doxygen was started. If left blank the current directory will be used.
  26. OUTPUT_DIRECTORY     = html
  27. # The OUTPUT_LANGUAGE tag is used to specify the language in which all
  28. # documentation generated by doxygen is written. Doxygen will use this
  29. # information to generate all constant output in the proper language.
  30. # The default language is English, other supported languages are:
  31. # Dutch, French, Italian, Czech, Swedish, German and Japanese
  32. OUTPUT_LANGUAGE      = English
  33. # The QUIET tag can be used to turn on/off the messages that are generated
  34. # by doxygen. Possible values are YES and NO. If left blank NO is used.
  35. QUIET                = NO
  36. # The WARNINGS tag can be used to turn on/off the warning messages that are
  37. # generated by doxygen. Possible values are YES and NO. If left blank
  38. # NO is used.
  39. WARNINGS             = YES
  40. # The DISABLE_INDEX tag can be used to turn on/off the condensed index at
  41. # top of each HTML page. The value NO (the default) enables the index and
  42. # the value YES disables it.
  43. DISABLE_INDEX        = NO
  44. # If the EXTRACT_ALL tag is set to YES all classes and functions will be
  45. # included in the documentation, even if no documentation was available.
  46. EXTRACT_ALL          = YES
  47. # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
  48. # will be included in the documentation.
  49. EXTRACT_PRIVATE      = NO
  50. # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
  51. # undocumented members inside documented classes or files.
  52. HIDE_UNDOC_MEMBERS   = NO
  53. # If the HIDE_UNDOC_CLASSESS tag is set to YES, Doxygen will hide all
  54. # undocumented classes.
  55. HIDE_UNDOC_CLASSES   = NO
  56. # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
  57. # include brief member descriptions after the members that are listed in
  58. # the file and class documentation (similar to JavaDoc).
  59. # Set to NO to disable this.
  60. BRIEF_MEMBER_DESC    = YES
  61. # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
  62. # the brief description of a member or function before the detailed description.
  63. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
  64. # brief descriptions will be completely suppressed.
  65. REPEAT_BRIEF         = YES
  66. # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
  67. # Doxygen will generate a detailed section even if there is only a brief
  68. # description.
  69. ALWAYS_DETAILED_SEC  = NO
  70. # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
  71. # path before files name in the file list and in the header files. If set
  72. # to NO the shortest path that makes the file name unique will be used.
  73. FULL_PATH_NAMES      = No
  74. # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
  75. # can be used to strip a user defined part of the path. Stripping is
  76. # only done if one of the specified strings matches the left-hand part of
  77. # the path.
  78. STRIP_FROM_PATH      =
  79. # The INTERNAL_DOCS tag determines if documentation
  80. # that is typed after a internal command is included. If the tag is set
  81. # to NO (the default) then the documentation will be excluded.
  82. # Set it to YES to include the internal documentation.
  83. INTERNAL_DOCS        = NO
  84. # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
  85. # generate a class diagram (in Html and LaTeX) for classes with base or
  86. # super classes. Setting the tag to NO turns the diagrams off.
  87. CLASS_DIAGRAMS       = YES
  88. # If the SOURCE_BROWSER tag is set to YES then a list of source files will
  89. # be generated. Documented entities will be cross-referenced with these sources.
  90. SOURCE_BROWSER       = NO
  91. # Setting the INLINE_SOURCES tag to YES will include the body
  92. # of functions and classes directly in the documentation.
  93. INLINE_SOURCES       = NO
  94. # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
  95. # doxygen to hide any special comment blocks from generated source code
  96. # fragments. Normal C and C++ comments will always remain visible.
  97. STRIP_CODE_COMMENTS  = YES
  98. # If the CASE_SENSE_NAMES tag is set to NO (the default) then Doxygen
  99. # will only generate file names in lower case letters. If set to
  100. # YES upper case letters are also allowed. This is useful if you have
  101. # classes or files whose names only differ in case and if your file system
  102. # supports case sensitive file names.
  103. CASE_SENSE_NAMES     = YES
  104. # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
  105. # will generate a verbatim copy of the header file for each class for
  106. # which an include is specified. Set to NO to disable this.
  107. VERBATIM_HEADERS     = YES
  108. # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
  109. # will put list of the files that are included by a file in the documentation
  110. # of that file.
  111. SHOW_INCLUDE_FILES   = NO
  112. # If the JAVADOC_AUTOBRIEF tag is set to YES (the default) then Doxygen
  113. # will interpret the first line (until the first dot) of a JavaDoc-style
  114. # comment as the brief description. If set to NO, the Javadoc-style will
  115. # behave just like the Qt-style comments.
  116. JAVADOC_AUTOBRIEF    = YES
  117. # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
  118. # member inherits the documentation from any documented member that it
  119. # reimplements.
  120. INHERIT_DOCS         = YES
  121. # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
  122. # is inserted in the documentation for inline members.
  123. INLINE_INFO          = NO
  124. # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
  125. # will sort the (detailed) documentation of file and class members
  126. # alphabetically by member name. If set to NO the members will appear in
  127. # declaration order.
  128. SORT_MEMBER_DOCS     = YES
  129. # The TAB_SIZE tag can be used to set the number of spaces in a tab.
  130. # Doxygen uses this value to replace tabs by spaces in code fragments.
  131. TAB_SIZE             = 4
  132. # The ENABLE_SECTIONS tag can be used to enable conditional
  133. # documentation sections, marked by if sectionname ... endif.
  134. ENABLED_SECTIONS     =
  135. #---------------------------------------------------------------------------
  136. # configuration options related to the input files
  137. #---------------------------------------------------------------------------
  138. # The INPUT tag can be used to specify the files and/or directories that contain
  139. # documented source files. You may enter file names like "myfile.cpp" or
  140. # directories like "/usr/src/myproject". Separate the files or directories
  141. # with spaces.
  142. INPUT                = ../src/dom ../src/framework ../src/sax ../src/parsers ../src/util ../src/sax2
  143. # If the value of the INPUT tag contains directories, you can use the
  144. # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
  145. # and *.h) to filter out the source-files in the directories. If left
  146. # blank all files are included.
  147. FILE_PATTERNS        = *.hpp
  148. # The RECURSIVE tag can be used to turn specify whether or not subdirectories
  149. # should be searched for input files as well. Possible values are YES and NO.
  150. # If left blank NO is used.
  151. RECURSIVE            = NO
  152. # The EXCLUDE tag can be used to specify files and/or directories that should
  153. # excluded from the INPUT source files. This way you can easily exclude a
  154. # subdirectory from a directory tree whose root is specified with the INPUT tag.
  155. EXCLUDE              =
  156. # If the value of the INPUT tag contains directories, you can use the
  157. # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
  158. # certain files from those directories.
  159. EXCLUDE_PATTERNS     = *Impl.hpp Janitor.hpp BitOps.hpp BitSet.hpp ChildNode.hpp 
  160. CountedPointer.hpp DomMemDebug.hpp MemDebug.hpp DStringPool.hpp TransENameMap.hpp 
  161. FlagJanitor.hpp HashBase.hpp HashPtr.hpp HashXMLCh.hpp KeyValuePair.hpp 
  162. KVStringPair.hpp NameIdPool.hpp NodeIDMap.hpp NameNodeFilter.hpp NodeVector.hpp 
  163. NodeImpl.hpp CommonParentNode.hpp RefArrayOf.hpp RefHash*.hpp RefStackOf.hpp 
  164. RefVectorOf.hpp ValueArrayOf.hpp ValueStackOf.hpp ValueVectorOf.hpp 
  165. XML256TableTranscoder.hpp XML88591Transcoder.hpp XMLASCIITranscoder.hpp 
  166. XMLBufferMgr.hpp XMLBuffer.hpp XMLChTranscoder.hpp XMLEBCDICTranscoder.hpp 
  167. XMLEnumerator.hpp XMLExceptMsgs.hpp XMLIBM1140Transcoder.hpp XMLMsgLoader.hpp 
  168. Mutexes.hpp XMLPScanToken.hpp XMLRecognizer.hpp XMLRefInfo.hpp StringPool.hpp 
  169. XMLUCS4Transcoder.hpp XMLUTF16Transcoder.hpp XMLUTF8Transcoder.hpp XMLWin1252Transcoder.hpp
  170. # The EXAMPLE_PATH tag can be used to specify one or more files or
  171. # directories that contain example code fragments that are included (see
  172. # the include command).
  173. EXAMPLE_PATH         =
  174. # If the value of the EXAMPLE_PATH tag contains directories, you can use the
  175. # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
  176. # and *.h) to filter out the source-files in the directories. If left
  177. # blank all files are included.
  178. EXAMPLE_PATTERNS     =
  179. # The IMAGE_PATH tag can be used to specify one or more files or
  180. # directories that contain image that are included in the documentation (see
  181. # the image command).
  182. IMAGE_PATH           =
  183. # The INPUT_FILTER tag can be used to specify a program that doxygen should
  184. # invoke to filter for each input file. Doxygen will invoke the filter program
  185. # by executing (via popen()) the command <filter> <input-file>, where <filter>
  186. # is the value of the INPUT_FILTER tag, and <input-file> is the name of an
  187. # input file. Doxygen will then use the output that the filter program writes
  188. # to standard output.
  189. INPUT_FILTER         =
  190. #---------------------------------------------------------------------------
  191. # configuration options related to the HTML output
  192. #---------------------------------------------------------------------------
  193. # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
  194. # generate HTML output
  195. GENERATE_HTML        = YES
  196. # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
  197. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  198. # put in front of it. If left blank `html' will be used as the default path.
  199. HTML_OUTPUT          = apiDocs
  200. # The HTML_HEADER tag can be used to specify a personal HTML header for
  201. # each generated HTML page. If it is left blank doxygen will generate a
  202. # standard header.
  203. HTML_HEADER          = html/apiDocs/header.html
  204. #HTML_HEADER          =
  205. # The HTML_FOOTER tag can be used to specify a personal HTML footer for
  206. # each generated HTML page. If it is left blank doxygen will generate a
  207. # standard footer.
  208. HTML_FOOTER          = html/apiDocs/footer.html
  209. #HTML_FOOTER          =
  210. # The HTML_STYLESHEET tag can be used to specify a user defined cascading
  211. # style sheet that is used by each HTML page. It can be used to
  212. # fine-tune the look of the HTML output. If the tag is left blank doxygen
  213. # will generate a default style sheet
  214. #HTML_STYLESHEET      = html/apiDocs/XercesApi.css
  215. HTML_STYLESHEET      =
  216. # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
  217. # files or namespaces will be aligned in HTML using tables. If set to
  218. # NO a bullet list will be used.
  219. HTML_ALIGN_MEMBERS   = YES
  220. # If the GENERATE_HTMLHELP tag is set to YES, additional index files
  221. # will be generated that can be used as input for tools like the
  222. # Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
  223. # of the generated HTML documentation.
  224. GENERATE_HTMLHELP    = NO
  225. #---------------------------------------------------------------------------
  226. # configuration options related to the alphabetical class index
  227. #---------------------------------------------------------------------------
  228. # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
  229. # of all compounds will be generated. Enable this if the project
  230. # contains a lot of classes, structs, unions or interfaces.
  231. ALPHABETICAL_INDEX   = YES
  232. # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
  233. # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
  234. # in which this list will be split (can be a number in the range [1..20])
  235. COLS_IN_ALPHA_INDEX  = 2
  236. # In case all classes in a project start with a common prefix, all
  237. # classes will be put under the same header in the alphabetical index.
  238. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that
  239. # should be ignored while generating the index headers.
  240. IGNORE_PREFIX        =
  241. #---------------------------------------------------------------------------
  242. # configuration options related to the LaTeX output
  243. #---------------------------------------------------------------------------
  244. # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
  245. # generate Latex output.
  246. GENERATE_LATEX       = NO
  247. # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
  248. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  249. # put in front of it. If left blank `latex' will be used as the default path.
  250. LATEX_OUTPUT         = latex
  251. # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
  252. # LaTeX documents. This may be useful for small projects and may help to
  253. # save some trees in general.
  254. COMPACT_LATEX        = NO
  255. # The PAPER_TYPE tag can be used to set the paper type that is used
  256. # by the printer. Possible values are: a4, a4wide, letter, legal and
  257. # executive. If left blank a4wide will be used.
  258. PAPER_TYPE           = a4wide
  259. # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
  260. # packages that should be included in the LaTeX output.
  261. EXTRA_PACKAGES       =
  262. # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
  263. # the generated latex document. The header should contain everything until
  264. # the first chapter. If it is left blank doxygen will generate a
  265. # standard header. Notice: only use this tag if you know what you are doing!
  266. LATEX_HEADER         =
  267. # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
  268. # is prepared for conversion to pdf (using ps2pdf). The pdf file will
  269. # contain links (just like the HTML output) instead of page references
  270. # This makes the output suitable for online browsing using a pdf viewer.
  271. PDF_HYPERLINKS       = NO
  272. # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the batchmode.
  273. # command to the generated LaTeX files. This will instruct LaTeX to keep
  274. # running if errors occur, instead of asking the user for help.
  275. # This option is also used when generating formulas in HTML.
  276. LATEX_BATCHMODE      = NO
  277. #---------------------------------------------------------------------------
  278. # configuration options related to the RTF output
  279. #---------------------------------------------------------------------------
  280. # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
  281. # For now this is experimental and is disabled by default. The RTF output
  282. # is optimised for Word 97 and may not look too pretty with other readers
  283. # or editors.
  284. GENERATE_RTF         = NO
  285. # The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
  286. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  287. # put in front of it. If left blank `rtf' will be used as the default path.
  288. RTF_OUTPUT           = rtf
  289. # If the COMPACT_RTF tag is set to YES Doxygen generates more compact
  290. # RTF documents. This may be useful for small projects and may help to
  291. # save some trees in general.
  292. COMPACT_RTF          = NO
  293. # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
  294. # will contain hyperlink fields. The RTF file will
  295. # contain links (just like the HTML output) instead of page references.
  296. # This makes the output suitable for online browsing using a WORD or other.
  297. # programs which support those fields.
  298. # Note: wordpad (write) and others do not support links.
  299. RTF_HYPERLINKS       = NO
  300. #---------------------------------------------------------------------------
  301. # configuration options related to the man page output
  302. #---------------------------------------------------------------------------
  303. # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
  304. # generate man pages
  305. GENERATE_MAN         = NO
  306. # The MAN_OUTPUT tag is used to specify where the man pages will be put.
  307. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  308. # put in front of it. If left blank `man' will be used as the default path.
  309. MAN_OUTPUT           = man
  310. # The MAN_EXTENSION tag determines the extension that is added to
  311. # the generated man pages (default is the subroutine's section .3)
  312. MAN_EXTENSION        = .3
  313. #---------------------------------------------------------------------------
  314. # Configuration options related to the preprocessor
  315. #---------------------------------------------------------------------------
  316. # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
  317. # evaluate all C-preprocessor directives found in the sources and include
  318. # files.
  319. ENABLE_PREPROCESSING = YES
  320. # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
  321. # names in the source code. If set to NO (the default) only conditional
  322. # compilation will be performed.
  323. MACRO_EXPANSION      = YES
  324. # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
  325. # in the INCLUDE_PATH (see below) will be search if a #include is found.
  326. SEARCH_INCLUDES      = YES
  327. # The INCLUDE_PATH tag can be used to specify one or more directories that
  328. # contain include files that are not input files but should be processed by
  329. # the preprocessor.
  330. INCLUDE_PATH         =
  331. # The PREDEFINED tag can be used to specify one or more macro names that
  332. # are defined before the preprocessor is started (similar to the -D option of
  333. # gcc). The argument of the tag is a list of macros of the form: name
  334. # or name=definition (no spaces). If the definition and the = are
  335. # omitted =1 is assumed.
  336. PREDEFINED           =
  337. # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
  338. # then the macro expansion is limited to the macros specified with the
  339. # PREDEFINED tag.
  340. EXPAND_ONLY_PREDEF   = NO
  341. #---------------------------------------------------------------------------
  342. # Configuration options related to external references
  343. #---------------------------------------------------------------------------
  344. # The TAGFILES tag can be used to specify one or more tagfiles.
  345. TAGFILES             =
  346. # When a file name is specified after GENERATE_TAGFILE, doxygen will create
  347. # a tag file that is based on the input files it reads.
  348. GENERATE_TAGFILE     =
  349. # If the ALLEXTERNALS tag is set to YES all external classes will be listed
  350. # in the class index. If set to NO only the inherited external classes
  351. # will be listed.
  352. ALLEXTERNALS         = NO
  353. # The PERL_PATH should be the absolute path and name of the perl script
  354. # interpreter (i.e. the result of `which perl').
  355. PERL_PATH            = /usr/bin/perl
  356. #---------------------------------------------------------------------------
  357. # Configuration options related to the dot tool
  358. #---------------------------------------------------------------------------
  359. # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
  360. # available from the path. This tool is part of Graphviz, a graph visualization
  361. # toolkit from AT&T and Lucent Bell Labs. The other options in this section
  362. # have no effect if this option is set to NO (the default)
  363. HAVE_DOT             = YES
  364. # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
  365. # will generate a graph for each documented class showing the direct and
  366. # indirect implementation dependencies (inheritance, containment, and
  367. # class references variables) of the class with other documented classes.
  368. COLLABORATION_GRAPH  = YES
  369. # If the ENABLE_PREPROCESSING, INCLUDE_GRAPH, and HAVE_DOT tags are set to
  370. # YES then doxygen will generate a graph for each documented file showing
  371. # the direct and indirect include dependencies of the file with other
  372. # documented files.
  373. INCLUDE_GRAPH        = YES
  374. # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
  375. # will graphical hierarchy of all classes instead of a textual one.
  376. GRAPHICAL_HIERARCHY  = YES
  377. #---------------------------------------------------------------------------
  378. # Configuration options related to the search engine
  379. #---------------------------------------------------------------------------
  380. # The SEARCHENGINE tag specifies whether or not a search engine should be
  381. # used. If set to NO the values of all tags below this one will be ignored.
  382. SEARCHENGINE         = NO
  383. # The CGI_NAME tag should be the name of the CGI script that
  384. # starts the search engine (doxysearch) with the correct parameters.
  385. # A script with this name will be generated by doxygen.
  386. CGI_NAME             = search.cgi
  387. # The CGI_URL tag should be the absolute URL to the directory where the
  388. # cgi binaries are located. See the documentation of your http daemon for
  389. # details.
  390. CGI_URL              =
  391. # The DOC_URL tag should be the absolute URL to the directory where the
  392. # documentation is located. If left blank the absolute path to the
  393. # documentation, with file:// prepended to it, will be used.
  394. DOC_URL              =
  395. # The DOC_ABSPATH tag should be the absolute path to the directory where the
  396. # documentation is located. If left blank the directory on the local machine
  397. # will be used.
  398. DOC_ABSPATH          =
  399. # The BIN_ABSPATH tag must point to the directory where the doxysearch binary
  400. # is installed.
  401. BIN_ABSPATH          = /usr/local/bin/
  402. # The EXT_DOC_PATHS tag can be used to specify one or more paths to
  403. # documentation generated for other projects. This allows doxysearch to search
  404. # the documentation for these projects as well.
  405. EXT_DOC_PATHS        =