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.

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