jack1 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1096 lines
43KB

  1. # Doxyfile 1.3.4
  2. # This file describes the settings to be used by the documentation system
  3. # doxygen (www.doxygen.org) for a project
  4. #
  5. # All text after a hash (#) is considered a comment and will be ignored
  6. # The format is:
  7. # TAG = value [value, ...]
  8. # For lists items can also be appended using:
  9. # TAG += value [value, ...]
  10. # Values that contain spaces should be placed between quotes (" ")
  11. #---------------------------------------------------------------------------
  12. # Project related configuration options
  13. #---------------------------------------------------------------------------
  14. # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
  15. # by quotes) that should identify the project.
  16. PROJECT_NAME = JACK-AUDIO-CONNECTION-KIT
  17. # The PROJECT_NUMBER tag can be used to enter a project or revision number.
  18. # This could be handy for archiving the generated documentation or
  19. # if some version control system is used.
  20. PROJECT_NUMBER = @JACK_VERSION@
  21. # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
  22. # base path where the generated documentation will be put.
  23. # If a relative path is entered, it will be relative to the location
  24. # where doxygen was started. If left blank the current directory will be used.
  25. OUTPUT_DIRECTORY = reference
  26. # The OUTPUT_LANGUAGE tag is used to specify the language in which all
  27. # documentation generated by doxygen is written. Doxygen will use this
  28. # information to generate all constant output in the proper
  29. # language. The default language is English, other supported languages
  30. # are: Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian,
  31. # Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian,
  32. # Italian, Japanese, Japanese-en (Japanese with English messages),
  33. # Korean, Norwegian, Polish, Portuguese, Romanian, Russian, Serbian,
  34. # Slovak, Slovene, Spanish, Swedish, and Ukrainian.
  35. OUTPUT_LANGUAGE = English
  36. # This tag can be used to specify the encoding used in the generated output.
  37. # The encoding is not always determined by the language that is chosen,
  38. # but also whether or not the output is meant for Windows or non-Windows users.
  39. # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
  40. # forces the Windows encoding (this is the default for the Windows binary),
  41. # whereas setting the tag to NO uses a Unix-style encoding (the default for
  42. # all platforms other than Windows).
  43. USE_WINDOWS_ENCODING = NO
  44. # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
  45. # include brief member descriptions after the members that are listed in
  46. # the file and class documentation (similar to JavaDoc).
  47. # Set to NO to disable this.
  48. BRIEF_MEMBER_DESC = YES
  49. # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
  50. # the brief description of a member or function before the detailed description.
  51. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
  52. # brief descriptions will be completely suppressed.
  53. REPEAT_BRIEF = YES
  54. # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
  55. # Doxygen will generate a detailed section even if there is only a brief
  56. # description.
  57. ALWAYS_DETAILED_SEC = NO
  58. # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited
  59. # members of a class in the documentation of that class as if those members were
  60. # ordinary class members. Constructors, destructors and assignment operators of
  61. # the base classes will not be shown.
  62. INLINE_INHERITED_MEMB = NO
  63. # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
  64. # path before files name in the file list and in the header files. If set
  65. # to NO the shortest path that makes the file name unique will be used.
  66. FULL_PATH_NAMES = NO
  67. # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
  68. # can be used to strip a user-defined part of the path. Stripping is
  69. # only done if one of the specified strings matches the left-hand part of
  70. # the path. It is allowed to use relative paths in the argument list.
  71. STRIP_FROM_PATH =
  72. # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
  73. # (but less readable) file names. This can be useful is your file systems
  74. # doesn't support long names like on DOS, Mac, or CD-ROM.
  75. SHORT_NAMES = NO
  76. # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
  77. # will interpret the first line (until the first dot) of a JavaDoc-style
  78. # comment as the brief description. If set to NO, the JavaDoc
  79. # comments will behave just like the Qt-style comments (thus requiring an
  80. # explict @brief command for a brief description.
  81. JAVADOC_AUTOBRIEF = NO
  82. # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
  83. # treat a multi-line C++ special comment block (i.e. a block of //! or ///
  84. # comments) as a brief description. This used to be the default behaviour.
  85. # The new default is to treat a multi-line C++ comment block as a detailed
  86. # description. Set this tag to YES if you prefer the old behaviour instead.
  87. MULTILINE_CPP_IS_BRIEF = NO
  88. # If the DETAILS_AT_TOP tag is set to YES then Doxygen
  89. # will output the detailed description near the top, like JavaDoc.
  90. # If set to NO, the detailed description appears after the member
  91. # documentation.
  92. DETAILS_AT_TOP = NO
  93. # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
  94. # member inherits the documentation from any documented member that it
  95. # reimplements.
  96. INHERIT_DOCS = YES
  97. # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
  98. # tag is set to YES, then doxygen will reuse the documentation of the first
  99. # member in the group (if any) for the other members of the group. By default
  100. # all members of a group must be documented explicitly.
  101. DISTRIBUTE_GROUP_DOC = NO
  102. # The TAB_SIZE tag can be used to set the number of spaces in a tab.
  103. # Doxygen uses this value to replace tabs by spaces in code fragments.
  104. TAB_SIZE = 8
  105. # This tag can be used to specify a number of aliases that acts
  106. # as commands in the documentation. An alias has the form "name=value".
  107. # For example adding "sideeffect=\par Side Effects:\n" will allow you to
  108. # put the command \sideeffect (or @sideeffect) in the documentation, which
  109. # will result in a user-defined paragraph with heading "Side Effects:".
  110. # You can put \n's in the value part of an alias to insert newlines.
  111. ALIASES =
  112. # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
  113. # only. Doxygen will then generate output that is more tailored for C.
  114. # For instance, some of the names that are used will be different. The list
  115. # of all members will be omitted, etc.
  116. OPTIMIZE_OUTPUT_FOR_C = YES
  117. # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources
  118. # only. Doxygen will then generate output that is more tailored for Java.
  119. # For instance, namespaces will be presented as packages, qualified scopes
  120. # will look different, etc.
  121. OPTIMIZE_OUTPUT_JAVA = NO
  122. # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
  123. # the same type (for instance a group of public functions) to be put as a
  124. # subgroup of that type (e.g. under the Public Functions section). Set it to
  125. # NO to prevent subgrouping. Alternatively, this can be done per class using
  126. # the \nosubgrouping command.
  127. SUBGROUPING = YES
  128. #---------------------------------------------------------------------------
  129. # Build related configuration options
  130. #---------------------------------------------------------------------------
  131. # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
  132. # documentation are documented, even if no documentation was available.
  133. # Private class members and static file members will be hidden unless
  134. # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
  135. EXTRACT_ALL = YES
  136. # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
  137. # will be included in the documentation.
  138. EXTRACT_PRIVATE = NO
  139. # If the EXTRACT_STATIC tag is set to YES all static members of a file
  140. # will be included in the documentation.
  141. EXTRACT_STATIC = NO
  142. # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
  143. # defined locally in source files will be included in the documentation.
  144. # If set to NO only classes defined in header files are included.
  145. EXTRACT_LOCAL_CLASSES = YES
  146. # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
  147. # undocumented members of documented classes, files or namespaces.
  148. # If set to NO (the default) these members will be included in the
  149. # various overviews, but no documentation section is generated.
  150. # This option has no effect if EXTRACT_ALL is enabled.
  151. HIDE_UNDOC_MEMBERS = NO
  152. # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
  153. # undocumented classes that are normally visible in the class hierarchy.
  154. # If set to NO (the default) these classes will be included in the various
  155. # overviews. This option has no effect if EXTRACT_ALL is enabled.
  156. HIDE_UNDOC_CLASSES = NO
  157. # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
  158. # friend (class|struct|union) declarations.
  159. # If set to NO (the default) these declarations will be included in the
  160. # documentation.
  161. HIDE_FRIEND_COMPOUNDS = NO
  162. # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
  163. # documentation blocks found inside the body of a function.
  164. # If set to NO (the default) these blocks will be appended to the
  165. # function's detailed documentation block.
  166. HIDE_IN_BODY_DOCS = NO
  167. # The INTERNAL_DOCS tag determines if documentation
  168. # that is typed after a \internal command is included. If the tag is set
  169. # to NO (the default) then the documentation will be excluded.
  170. # Set it to YES to include the internal documentation.
  171. INTERNAL_DOCS = NO
  172. # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
  173. # file names in lower-case letters. If set to YES upper-case letters are also
  174. # allowed. This is useful if you have classes or files whose names only differ
  175. # in case and if your file system supports case sensitive file names. Windows
  176. # users are advised to set this option to NO.
  177. CASE_SENSE_NAMES = YES
  178. # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
  179. # will show members with their full class and namespace scopes in the
  180. # documentation. If set to YES the scope will be hidden.
  181. HIDE_SCOPE_NAMES = NO
  182. # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
  183. # will put a list of the files that are included by a file in the documentation
  184. # of that file.
  185. SHOW_INCLUDE_FILES = YES
  186. # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
  187. # is inserted in the documentation for inline members.
  188. INLINE_INFO = YES
  189. # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
  190. # will sort the (detailed) documentation of file and class members
  191. # alphabetically by member name. If set to NO the members will appear in
  192. # declaration order.
  193. SORT_MEMBER_DOCS = YES
  194. # The GENERATE_TODOLIST tag can be used to enable (YES) or
  195. # disable (NO) the todo list. This list is created by putting \todo
  196. # commands in the documentation.
  197. GENERATE_TODOLIST = NO
  198. # The GENERATE_TESTLIST tag can be used to enable (YES) or
  199. # disable (NO) the test list. This list is created by putting \test
  200. # commands in the documentation.
  201. GENERATE_TESTLIST = NO
  202. # The GENERATE_BUGLIST tag can be used to enable (YES) or
  203. # disable (NO) the bug list. This list is created by putting \bug
  204. # commands in the documentation.
  205. GENERATE_BUGLIST = NO
  206. # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
  207. # disable (NO) the deprecated list. This list is created by putting
  208. # \deprecated commands in the documentation.
  209. GENERATE_DEPRECATEDLIST= YES
  210. # The ENABLED_SECTIONS tag can be used to enable conditional
  211. # documentation sections, marked by \if sectionname ... \endif.
  212. ENABLED_SECTIONS =
  213. # The MAX_INITIALIZER_LINES tag determines the maximum number of lines
  214. # the initial value of a variable or define consists of for it to appear in
  215. # the documentation. If the initializer consists of more lines than specified
  216. # here it will be hidden. Use a value of 0 to hide initializers completely.
  217. # The appearance of the initializer of individual variables and defines in the
  218. # documentation can be controlled using \showinitializer or \hideinitializer
  219. # command in the documentation regardless of this setting.
  220. MAX_INITIALIZER_LINES = 30
  221. # Set the SHOW_USED_FILES tag to NO to disable the list of files generated
  222. # at the bottom of the documentation of classes and structs. If set to YES the
  223. # list will mention the files that were used to generate the documentation.
  224. SHOW_USED_FILES = YES
  225. #---------------------------------------------------------------------------
  226. # configuration options related to warning and progress messages
  227. #---------------------------------------------------------------------------
  228. # The QUIET tag can be used to turn on/off the messages that are generated
  229. # by doxygen. Possible values are YES and NO. If left blank NO is used.
  230. QUIET = NO
  231. # The WARNINGS tag can be used to turn on/off the warning messages that are
  232. # generated by doxygen. Possible values are YES and NO. If left blank
  233. # NO is used.
  234. WARNINGS = YES
  235. # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
  236. # for undocumented members. If EXTRACT_ALL is set to YES then this flag will
  237. # automatically be disabled.
  238. WARN_IF_UNDOCUMENTED = YES
  239. # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
  240. # potential errors in the documentation, such as not documenting some
  241. # parameters in a documented function, or documenting parameters that
  242. # don't exist or using markup commands wrongly.
  243. WARN_IF_DOC_ERROR = YES
  244. # The WARN_FORMAT tag determines the format of the warning messages that
  245. # doxygen can produce. The string should contain the $file, $line, and $text
  246. # tags, which will be replaced by the file and line number from which the
  247. # warning originated and the warning text.
  248. WARN_FORMAT = "$file:$line: $text"
  249. # The WARN_LOGFILE tag can be used to specify a file to which warning
  250. # and error messages should be written. If left blank the output is written
  251. # to stderr.
  252. WARN_LOGFILE =
  253. #---------------------------------------------------------------------------
  254. # configuration options related to the input files
  255. #---------------------------------------------------------------------------
  256. # The INPUT tag can be used to specify the files and/or directories that contain
  257. # documented source files. You may enter file names like "myfile.cpp" or
  258. # directories like "/usr/src/myproject". Separate the files or directories
  259. # with spaces.
  260. INPUT = @top_srcdir@/doc/mainpage.dox \
  261. @top_srcdir@/doc/transport.dox \
  262. @top_srcdir@/doc/porting.dox \
  263. @top_srcdir@/example-clients/inprocess.c \
  264. @top_srcdir@/example-clients/simple_client.c \
  265. @top_srcdir@/jack/intclient.h \
  266. @top_srcdir@/jack/jack.h \
  267. @top_srcdir@/jack/ringbuffer.h \
  268. @top_srcdir@/jack/statistics.h \
  269. @top_srcdir@/jack/thread.h \
  270. @top_srcdir@/jack/transport.h \
  271. @top_srcdir@/jack/types.h \
  272. @top_srcdir@/jack/midiport.h
  273. # If the value of the INPUT tag contains directories, you can use the
  274. # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
  275. # and *.h) to filter out the source-files in the directories. If left
  276. # blank the following patterns are tested:
  277. # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp
  278. # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc
  279. FILE_PATTERNS =
  280. # The RECURSIVE tag can be used to turn specify whether or not subdirectories
  281. # should be searched for input files as well. Possible values are YES and NO.
  282. # If left blank NO is used.
  283. RECURSIVE = NO
  284. # The EXCLUDE tag can be used to specify files and/or directories that should
  285. # excluded from the INPUT source files. This way you can easily exclude a
  286. # subdirectory from a directory tree whose root is specified with the INPUT tag.
  287. EXCLUDE =
  288. # The EXCLUDE_SYMLINKS tag can be used select whether or not files or
  289. # directories that are symbolic links (a Unix filesystem feature) are
  290. # excluded from the input.
  291. EXCLUDE_SYMLINKS = NO
  292. # If the value of the INPUT tag contains directories, you can use the
  293. # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
  294. # certain files from those directories.
  295. EXCLUDE_PATTERNS =
  296. # The EXAMPLE_PATH tag can be used to specify one or more files or
  297. # directories that contain example code fragments that are included (see
  298. # the \include command).
  299. EXAMPLE_PATH =
  300. # If the value of the EXAMPLE_PATH tag contains directories, you can use the
  301. # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
  302. # and *.h) to filter out the source-files in the directories. If left
  303. # blank all files are included.
  304. EXAMPLE_PATTERNS =
  305. # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
  306. # searched for input files to be used with the \include or \dontinclude
  307. # commands irrespective of the value of the RECURSIVE tag.
  308. # Possible values are YES and NO. If left blank NO is used.
  309. EXAMPLE_RECURSIVE = NO
  310. # The IMAGE_PATH tag can be used to specify one or more files or
  311. # directories that contain image that are included in the documentation (see
  312. # the \image command).
  313. IMAGE_PATH = .
  314. # The INPUT_FILTER tag can be used to specify a program that doxygen should
  315. # invoke to filter for each input file. Doxygen will invoke the filter program
  316. # by executing (via popen()) the command <filter> <input-file>, where <filter>
  317. # is the value of the INPUT_FILTER tag, and <input-file> is the name of an
  318. # input file. Doxygen will then use the output that the filter program writes
  319. # to standard output.
  320. INPUT_FILTER =
  321. # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
  322. # INPUT_FILTER) will be used to filter the input files when producing source
  323. # files to browse (i.e. when SOURCE_BROWSER is set to YES).
  324. FILTER_SOURCE_FILES = NO
  325. #---------------------------------------------------------------------------
  326. # configuration options related to source browsing
  327. #---------------------------------------------------------------------------
  328. # If the SOURCE_BROWSER tag is set to YES then a list of source files will
  329. # be generated. Documented entities will be cross-referenced with these sources.
  330. SOURCE_BROWSER = NO
  331. # Setting the INLINE_SOURCES tag to YES will include the body
  332. # of functions and classes directly in the documentation.
  333. INLINE_SOURCES = NO
  334. # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
  335. # doxygen to hide any special comment blocks from generated source code
  336. # fragments. Normal C and C++ comments will always remain visible.
  337. STRIP_CODE_COMMENTS = YES
  338. # If the REFERENCED_BY_RELATION tag is set to YES (the default)
  339. # then for each documented function all documented
  340. # functions referencing it will be listed.
  341. REFERENCED_BY_RELATION = YES
  342. # If the REFERENCES_RELATION tag is set to YES (the default)
  343. # then for each documented function all documented entities
  344. # called/used by that function will be listed.
  345. REFERENCES_RELATION = YES
  346. # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
  347. # will generate a verbatim copy of the header file for each class for
  348. # which an include is specified. Set to NO to disable this.
  349. VERBATIM_HEADERS = YES
  350. #---------------------------------------------------------------------------
  351. # configuration options related to the alphabetical class index
  352. #---------------------------------------------------------------------------
  353. # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
  354. # of all compounds will be generated. Enable this if the project
  355. # contains a lot of classes, structs, unions or interfaces.
  356. ALPHABETICAL_INDEX = NO
  357. # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
  358. # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
  359. # in which this list will be split (can be a number in the range [1..20])
  360. COLS_IN_ALPHA_INDEX = 5
  361. # In case all classes in a project start with a common prefix, all
  362. # classes will be put under the same header in the alphabetical index.
  363. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that
  364. # should be ignored while generating the index headers.
  365. IGNORE_PREFIX =
  366. #---------------------------------------------------------------------------
  367. # configuration options related to the HTML output
  368. #---------------------------------------------------------------------------
  369. # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
  370. # generate HTML output.
  371. GENERATE_HTML = YES
  372. # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
  373. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  374. # put in front of it. If left blank `html' will be used as the default path.
  375. HTML_OUTPUT = html
  376. # The HTML_FILE_EXTENSION tag can be used to specify the file extension for
  377. # each generated HTML page (for example: .htm,.php,.asp). If it is left blank
  378. # doxygen will generate files with .html extension.
  379. HTML_FILE_EXTENSION = .html
  380. # The HTML_HEADER tag can be used to specify a personal HTML header for
  381. # each generated HTML page. If it is left blank doxygen will generate a
  382. # standard header.
  383. HTML_HEADER =
  384. # The HTML_FOOTER tag can be used to specify a personal HTML footer for
  385. # each generated HTML page. If it is left blank doxygen will generate a
  386. # standard footer.
  387. HTML_FOOTER =
  388. # The HTML_STYLESHEET tag can be used to specify a user-defined cascading
  389. # style sheet that is used by each HTML page. It can be used to
  390. # fine-tune the look of the HTML output. If the tag is left blank doxygen
  391. # will generate a default style sheet
  392. HTML_STYLESHEET =
  393. # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
  394. # files or namespaces will be aligned in HTML using tables. If set to
  395. # NO a bullet list will be used.
  396. HTML_ALIGN_MEMBERS = YES
  397. # If the GENERATE_HTMLHELP tag is set to YES, additional index files
  398. # will be generated that can be used as input for tools like the
  399. # Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
  400. # of the generated HTML documentation.
  401. GENERATE_HTMLHELP = NO
  402. # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
  403. # be used to specify the file name of the resulting .chm file. You
  404. # can add a path in front of the file if the result should not be
  405. # written to the html output dir.
  406. CHM_FILE =
  407. # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
  408. # be used to specify the location (absolute path including file name) of
  409. # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
  410. # the HTML help compiler on the generated index.hhp.
  411. HHC_LOCATION =
  412. # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
  413. # controls if a separate .chi index file is generated (YES) or that
  414. # it should be included in the master .chm file (NO).
  415. GENERATE_CHI = NO
  416. # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
  417. # controls whether a binary table of contents is generated (YES) or a
  418. # normal table of contents (NO) in the .chm file.
  419. BINARY_TOC = NO
  420. # The TOC_EXPAND flag can be set to YES to add extra items for group members
  421. # to the contents of the HTML help documentation and to the tree view.
  422. TOC_EXPAND = NO
  423. # The DISABLE_INDEX tag can be used to turn on/off the condensed index at
  424. # top of each HTML page. The value NO (the default) enables the index and
  425. # the value YES disables it.
  426. DISABLE_INDEX = YES
  427. # This tag can be used to set the number of enum values (range [1..20])
  428. # that doxygen will group on one line in the generated HTML documentation.
  429. ENUM_VALUES_PER_LINE = 4
  430. # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
  431. # generated containing a tree-like index structure (just like the one that
  432. # is generated for HTML Help). For this to work a browser that supports
  433. # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,
  434. # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
  435. # probably better off using the HTML help feature.
  436. GENERATE_TREEVIEW = NO
  437. # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
  438. # used to set the initial width (in pixels) of the frame in which the tree
  439. # is shown.
  440. TREEVIEW_WIDTH = 250
  441. #---------------------------------------------------------------------------
  442. # configuration options related to the LaTeX output
  443. #---------------------------------------------------------------------------
  444. # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
  445. # generate Latex output.
  446. GENERATE_LATEX = YES
  447. # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
  448. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  449. # put in front of it. If left blank `latex' will be used as the default path.
  450. LATEX_OUTPUT = latex
  451. # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
  452. # invoked. If left blank `latex' will be used as the default command name.
  453. LATEX_CMD_NAME = latex
  454. # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
  455. # generate index for LaTeX. If left blank `makeindex' will be used as the
  456. # default command name.
  457. MAKEINDEX_CMD_NAME = makeindex
  458. # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
  459. # LaTeX documents. This may be useful for small projects and may help to
  460. # save some trees in general.
  461. COMPACT_LATEX = NO
  462. # The PAPER_TYPE tag can be used to set the paper type that is used
  463. # by the printer. Possible values are: a4, a4wide, letter, legal and
  464. # executive. If left blank a4wide will be used.
  465. PAPER_TYPE = letter
  466. # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
  467. # packages that should be included in the LaTeX output.
  468. EXTRA_PACKAGES =
  469. # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
  470. # the generated latex document. The header should contain everything until
  471. # the first chapter. If it is left blank doxygen will generate a
  472. # standard header. Notice: only use this tag if you know what you are doing!
  473. LATEX_HEADER =
  474. # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
  475. # is prepared for conversion to pdf (using ps2pdf). The pdf file will
  476. # contain links (just like the HTML output) instead of page references
  477. # This makes the output suitable for online browsing using a pdf viewer.
  478. PDF_HYPERLINKS = YES
  479. # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
  480. # plain latex in the generated Makefile. Set this option to YES to get a
  481. # higher quality PDF documentation.
  482. USE_PDFLATEX = YES
  483. # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
  484. # command to the generated LaTeX files. This will instruct LaTeX to keep
  485. # running if errors occur, instead of asking the user for help.
  486. # This option is also used when generating formulas in HTML.
  487. LATEX_BATCHMODE = NO
  488. # If LATEX_HIDE_INDICES is set to YES then doxygen will not
  489. # include the index chapters (such as File Index, Compound Index, etc.)
  490. # in the output.
  491. LATEX_HIDE_INDICES = NO
  492. #---------------------------------------------------------------------------
  493. # configuration options related to the RTF output
  494. #---------------------------------------------------------------------------
  495. # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
  496. # The RTF output is optimised for Word 97 and may not look very pretty with
  497. # other RTF readers or editors.
  498. GENERATE_RTF = NO
  499. # The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
  500. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  501. # put in front of it. If left blank `rtf' will be used as the default path.
  502. RTF_OUTPUT = rtf
  503. # If the COMPACT_RTF tag is set to YES Doxygen generates more compact
  504. # RTF documents. This may be useful for small projects and may help to
  505. # save some trees in general.
  506. COMPACT_RTF = NO
  507. # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
  508. # will contain hyperlink fields. The RTF file will
  509. # contain links (just like the HTML output) instead of page references.
  510. # This makes the output suitable for online browsing using WORD or other
  511. # programs which support those fields.
  512. # Note: wordpad (write) and others do not support links.
  513. RTF_HYPERLINKS = NO
  514. # Load stylesheet definitions from file. Syntax is similar to doxygen's
  515. # config file, i.e. a series of assigments. You only have to provide
  516. # replacements, missing definitions are set to their default value.
  517. RTF_STYLESHEET_FILE =
  518. # Set optional variables used in the generation of an rtf document.
  519. # Syntax is similar to doxygen's config file.
  520. RTF_EXTENSIONS_FILE =
  521. #---------------------------------------------------------------------------
  522. # configuration options related to the man page output
  523. #---------------------------------------------------------------------------
  524. # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
  525. # generate man pages
  526. GENERATE_MAN = NO
  527. # The MAN_OUTPUT tag is used to specify where the man pages will be put.
  528. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  529. # put in front of it. If left blank `man' will be used as the default path.
  530. MAN_OUTPUT = man
  531. # The MAN_EXTENSION tag determines the extension that is added to
  532. # the generated man pages (default is the subroutine's section .3)
  533. MAN_EXTENSION = .3
  534. # If the MAN_LINKS tag is set to YES and Doxygen generates man output,
  535. # then it will generate one additional man file for each entity
  536. # documented in the real man page(s). These additional files
  537. # only source the real man page, but without them the man command
  538. # would be unable to find the correct page. The default is NO.
  539. MAN_LINKS = NO
  540. #---------------------------------------------------------------------------
  541. # configuration options related to the XML output
  542. #---------------------------------------------------------------------------
  543. # If the GENERATE_XML tag is set to YES Doxygen will
  544. # generate an XML file that captures the structure of
  545. # the code including all documentation. Note that this
  546. # feature is still experimental and incomplete at the
  547. # moment.
  548. GENERATE_XML = NO
  549. # The XML_OUTPUT tag is used to specify where the XML pages will be put.
  550. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  551. # put in front of it. If left blank `xml' will be used as the default path.
  552. XML_OUTPUT = xml
  553. # The XML_SCHEMA tag can be used to specify an XML schema,
  554. # which can be used by a validating XML parser to check the
  555. # syntax of the XML files.
  556. XML_SCHEMA =
  557. # The XML_DTD tag can be used to specify an XML DTD,
  558. # which can be used by a validating XML parser to check the
  559. # syntax of the XML files.
  560. XML_DTD =
  561. #---------------------------------------------------------------------------
  562. # configuration options for the AutoGen Definitions output
  563. #---------------------------------------------------------------------------
  564. # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
  565. # generate an AutoGen Definitions (see autogen.sf.net) file
  566. # that captures the structure of the code including all
  567. # documentation. Note that this feature is still experimental
  568. # and incomplete at the moment.
  569. GENERATE_AUTOGEN_DEF = NO
  570. #---------------------------------------------------------------------------
  571. # configuration options related to the Perl module output
  572. #---------------------------------------------------------------------------
  573. # If the GENERATE_PERLMOD tag is set to YES Doxygen will
  574. # generate a Perl module file that captures the structure of
  575. # the code including all documentation. Note that this
  576. # feature is still experimental and incomplete at the
  577. # moment.
  578. GENERATE_PERLMOD = NO
  579. # If the PERLMOD_LATEX tag is set to YES Doxygen will generate
  580. # the necessary Makefile rules, Perl scripts and LaTeX code to be able
  581. # to generate PDF and DVI output from the Perl module output.
  582. PERLMOD_LATEX = NO
  583. # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
  584. # nicely formatted so it can be parsed by a human reader. This is useful
  585. # if you want to understand what is going on. On the other hand, if this
  586. # tag is set to NO the size of the Perl module output will be much smaller
  587. # and Perl will parse it just the same.
  588. PERLMOD_PRETTY = YES
  589. # The names of the make variables in the generated doxyrules.make file
  590. # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
  591. # This is useful so different doxyrules.make files included by the same
  592. # Makefile don't overwrite each other's variables.
  593. PERLMOD_MAKEVAR_PREFIX =
  594. #---------------------------------------------------------------------------
  595. # Configuration options related to the preprocessor
  596. #---------------------------------------------------------------------------
  597. # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
  598. # evaluate all C-preprocessor directives found in the sources and include
  599. # files.
  600. ENABLE_PREPROCESSING = YES
  601. # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
  602. # names in the source code. If set to NO (the default) only conditional
  603. # compilation will be performed. Macro expansion can be done in a controlled
  604. # way by setting EXPAND_ONLY_PREDEF to YES.
  605. MACRO_EXPANSION = NO
  606. # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
  607. # then the macro expansion is limited to the macros specified with the
  608. # PREDEFINED and EXPAND_AS_PREDEFINED tags.
  609. EXPAND_ONLY_PREDEF = NO
  610. # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
  611. # in the INCLUDE_PATH (see below) will be search if a #include is found.
  612. SEARCH_INCLUDES = YES
  613. # The INCLUDE_PATH tag can be used to specify one or more directories that
  614. # contain include files that are not input files but should be processed by
  615. # the preprocessor.
  616. INCLUDE_PATH =
  617. # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
  618. # patterns (like *.h and *.hpp) to filter out the header-files in the
  619. # directories. If left blank, the patterns specified with FILE_PATTERNS will
  620. # be used.
  621. INCLUDE_FILE_PATTERNS =
  622. # The PREDEFINED tag can be used to specify one or more macro names that
  623. # are defined before the preprocessor is started (similar to the -D option of
  624. # gcc). The argument of the tag is a list of macros of the form: name
  625. # or name=definition (no spaces). If the definition and the = are
  626. # omitted =1 is assumed.
  627. PREDEFINED =
  628. # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
  629. # this tag can be used to specify a list of macro names that should be expanded.
  630. # The macro definition that is found in the sources will be used.
  631. # Use the PREDEFINED tag if you want to use a different macro definition.
  632. EXPAND_AS_DEFINED =
  633. # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
  634. # doxygen's preprocessor will remove all function-like macros that are
  635. # alone on a line, have an all uppercase name, and do not end with a
  636. # semicolon. Such function macros are typically used for boiler-plate
  637. # code, and will confuse the parser if not removed.
  638. SKIP_FUNCTION_MACROS = YES
  639. #---------------------------------------------------------------------------
  640. # Configuration::addtions related to external references
  641. #---------------------------------------------------------------------------
  642. # The TAGFILES option can be used to specify one or more tagfiles.
  643. # Optionally an initial location of the external documentation
  644. # can be added for each tagfile. The format of a tag file without
  645. # this location is as follows:
  646. # TAGFILES = file1 file2 ...
  647. # Adding location for the tag files is done as follows:
  648. # TAGFILES = file1=loc1 "file2 = loc2" ...
  649. # where "loc1" and "loc2" can be relative or absolute paths or
  650. # URLs. If a location is present for each tag, the installdox tool
  651. # does not have to be run to correct the links.
  652. # Note that each tag file must have a unique name
  653. # (where the name does NOT include the path)
  654. # If a tag file is not located in the directory in which doxygen
  655. # is run, you must also specify the path to the tagfile here.
  656. TAGFILES =
  657. # When a file name is specified after GENERATE_TAGFILE, doxygen will create
  658. # a tag file that is based on the input files it reads.
  659. GENERATE_TAGFILE =
  660. # If the ALLEXTERNALS tag is set to YES all external classes will be listed
  661. # in the class index. If set to NO only the inherited external classes
  662. # will be listed.
  663. ALLEXTERNALS = NO
  664. # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
  665. # in the modules index. If set to NO, only the current project's groups will
  666. # be listed.
  667. EXTERNAL_GROUPS = YES
  668. # The PERL_PATH should be the absolute path and name of the perl script
  669. # interpreter (i.e. the result of `which perl').
  670. PERL_PATH = /usr/bin/perl
  671. #---------------------------------------------------------------------------
  672. # Configuration options related to the dot tool
  673. #---------------------------------------------------------------------------
  674. # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
  675. # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes
  676. # with base or super classes. Setting the tag to NO turns the diagrams
  677. # off. Note that this option is superceded by the HAVE_DOT option
  678. # below. This is only a fallback. It is recommended to install and use
  679. # dot, since it yields more powerful graphs.
  680. CLASS_DIAGRAMS = NO
  681. # If set to YES, the inheritance and collaboration graphs will hide
  682. # inheritance and usage relations if the target is undocumented
  683. # or is not a class.
  684. HIDE_UNDOC_RELATIONS = YES
  685. # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
  686. # available from the path. This tool is part of Graphviz, a graph visualization
  687. # toolkit from AT&T and Lucent Bell Labs. The other options in this section
  688. # have no effect if this option is set to NO (the default)
  689. HAVE_DOT = NO
  690. # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
  691. # will generate a graph for each documented class showing the direct and
  692. # indirect inheritance relations. Setting this tag to YES will force the
  693. # the CLASS_DIAGRAMS tag to NO.
  694. CLASS_GRAPH = YES
  695. # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
  696. # will generate a graph for each documented class showing the direct and
  697. # indirect implementation dependencies (inheritance, containment, and
  698. # class references variables) of the class with other documented classes.
  699. COLLABORATION_GRAPH = YES
  700. # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
  701. # collaboration diagrams in a style similiar to the OMG's Unified Modeling
  702. # Language.
  703. UML_LOOK = NO
  704. # If set to YES, the inheritance and collaboration graphs will show the
  705. # relations between templates and their instances.
  706. TEMPLATE_RELATIONS = YES
  707. # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
  708. # tags are set to YES then doxygen will generate a graph for each documented
  709. # file showing the direct and indirect include dependencies of the file with
  710. # other documented files.
  711. INCLUDE_GRAPH = YES
  712. # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
  713. # HAVE_DOT tags are set to YES then doxygen will generate a graph for each
  714. # documented header file showing the documented files that directly or
  715. # indirectly include this file.
  716. INCLUDED_BY_GRAPH = YES
  717. # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
  718. # generate a call dependency graph for every global function or class method.
  719. # Note that enabling this option will significantly increase the time of a run.
  720. # So in most cases it will be better to enable call graphs for selected
  721. # functions only using the \callgraph command.
  722. CALL_GRAPH = NO
  723. # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
  724. # will graphical hierarchy of all classes instead of a textual one.
  725. GRAPHICAL_HIERARCHY = YES
  726. # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
  727. # generated by dot. Possible values are png, jpg, or gif
  728. # If left blank png will be used.
  729. DOT_IMAGE_FORMAT = png
  730. # The tag DOT_PATH can be used to specify the path where the dot tool can be
  731. # found. If left blank, it is assumed the dot tool can be found on the path.
  732. DOT_PATH =
  733. # The DOTFILE_DIRS tag can be used to specify one or more directories that
  734. # contain dot files that are included in the documentation (see the
  735. # \dotfile command).
  736. DOTFILE_DIRS =
  737. # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width
  738. # (in pixels) of the graphs generated by dot. If a graph becomes larger than
  739. # this value, doxygen will try to truncate the graph, so that it fits within
  740. # the specified constraint. Beware that most browsers cannot cope with very
  741. # large images.
  742. MAX_DOT_GRAPH_WIDTH = 1024
  743. # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height
  744. # (in pixels) of the graphs generated by dot. If a graph becomes larger than
  745. # this value, doxygen will try to truncate the graph, so that it fits within
  746. # the specified constraint. Beware that most browsers cannot cope with very
  747. # large images.
  748. MAX_DOT_GRAPH_HEIGHT = 1024
  749. # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of
  750. # the graphs generated by dot. A depth value of 3 means that only
  751. # nodes reachable from the root by following a path via at most 3
  752. # edges will be shown. Nodes that lay further from the root node will
  753. # be omitted. Note that setting this option to 1 or 2 may greatly
  754. # reduce the computation time needed for large code bases. Also note
  755. # that a graph may be further truncated if the graph's image
  756. # dimensions are not sufficient to fit the graph (see
  757. # MAX_DOT_GRAPH_WIDTH and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the
  758. # depth value (the default), the graph is not depth-constrained.
  759. MAX_DOT_GRAPH_DEPTH = 0
  760. # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
  761. # generate a legend page explaining the meaning of the various boxes and
  762. # arrows in the dot generated graphs.
  763. GENERATE_LEGEND = YES
  764. # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
  765. # remove the intermediate dot files that are used to generate
  766. # the various graphs.
  767. DOT_CLEANUP = YES
  768. #---------------------------------------------------------------------------
  769. # Configuration::addtions related to the search engine
  770. #---------------------------------------------------------------------------
  771. # The SEARCHENGINE tag specifies whether or not a search engine should be
  772. # used. If set to NO the values of all tags below this one will be ignored.
  773. SEARCHENGINE = NO