2
0

Doxyfile 40 KB

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