doxygen.cfg 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031
  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 = "PJSIP Reference"
  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 = $(PJ_VERSION)
  21. # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
  22. # base path where the generated documentation will be put.
  23. # If a relative path is entered, it will be relative to the location
  24. # where doxygen was started. If left blank the current directory will be used.
  25. OUTPUT_DIRECTORY = docs/$(PJ_VERSION)
  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 = NO
  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 = YES
  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 = YES
  85. # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited
  86. # members of a class in the documentation of that class as if those members were
  87. # ordinary class members. Constructors, destructors and assignment operators of
  88. # the base classes will not be shown.
  89. INLINE_INHERITED_MEMB = NO
  90. # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
  91. # path before files name in the file list and in the header files. If set
  92. # to NO the shortest path that makes the file name unique will be used.
  93. FULL_PATH_NAMES = NO
  94. # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
  95. # can be used to strip a user defined part of the path. Stripping is
  96. # only done if one of the specified strings matches the left-hand part of
  97. # the path. It is allowed to use relative paths in the argument list.
  98. #STRIP_FROM_PATH = "/cygdrive/e/project/bulukucing.org/pjsip/src"
  99. STRIP_FROM_PATH = "/c/project/pjproject/pjsip"
  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 = NO
  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 = YES
  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 = YES
  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 = NO
  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 = 8
  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. ALIASES += src{1}="\verbatim embed:rst:inline :source:`\1` \endverbatim"
  188. ALIASES += srcdir{1}="\verbatim embed:rst:inline :sourcedir:`\1` \endverbatim"
  189. ALIASES += img{1}="<img src=\"https://raw.githubusercontent.com/pjsip/pjproject/master/\1\" />"
  190. ALIASES += img{2}="<img src=\"https://raw.githubusercontent.com/pjsip/pjproject/master/\1\" alt=\"\2\" />"
  191. # The ENABLED_SECTIONS tag can be used to enable conditional
  192. # documentation sections, marked by \if sectionname ... \endif.
  193. ENABLED_SECTIONS =
  194. # The MAX_INITIALIZER_LINES tag determines the maximum number of lines
  195. # the initial value of a variable or define consist of for it to appear in
  196. # the documentation. If the initializer consists of more lines than specified
  197. # here it will be hidden. Use a value of 0 to hide initializers completely.
  198. # The appearance of the initializer of individual variables and defines in the
  199. # documentation can be controlled using \showinitializer or \hideinitializer
  200. # command in the documentation regardless of this setting.
  201. MAX_INITIALIZER_LINES = 30
  202. # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
  203. # only. Doxygen will then generate output that is more tailored for C.
  204. # For instance some of the names that are used will be different. The list
  205. # of all members will be omitted, etc.
  206. OPTIMIZE_OUTPUT_FOR_C = YES
  207. # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources
  208. # only. Doxygen will then generate output that is more tailored for Java.
  209. # For instance namespaces will be presented as packages, qualified scopes
  210. # will look different, etc.
  211. OPTIMIZE_OUTPUT_JAVA = NO
  212. # Set the SHOW_USED_FILES tag to NO to disable the list of files generated
  213. # at the bottom of the documentation of classes and structs. If set to YES the
  214. # list will mention the files that were used to generate the documentation.
  215. SHOW_USED_FILES = YES
  216. TYPEDEF_HIDES_STRUCT = YES
  217. #---------------------------------------------------------------------------
  218. # configuration options related to warning and progress messages
  219. #---------------------------------------------------------------------------
  220. # The QUIET tag can be used to turn on/off the messages that are generated
  221. # by doxygen. Possible values are YES and NO. If left blank NO is used.
  222. QUIET = NO
  223. # The WARNINGS tag can be used to turn on/off the warning messages that are
  224. # generated by doxygen. Possible values are YES and NO. If left blank
  225. # NO is used.
  226. WARNINGS = YES
  227. # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
  228. # for undocumented members. If EXTRACT_ALL is set to YES then this flag will
  229. # automatically be disabled.
  230. WARN_IF_UNDOCUMENTED = YES
  231. # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
  232. # potential errors in the documentation, such as not documenting some
  233. # parameters in a documented function, or documenting parameters that
  234. # don't exist or using markup commands wrongly.
  235. WARN_IF_DOC_ERROR = YES
  236. # The WARN_FORMAT tag determines the format of the warning messages that
  237. # doxygen can produce. The string should contain the $file, $line, and $text
  238. # tags, which will be replaced by the file and line number from which the
  239. # warning originated and the warning text.
  240. WARN_FORMAT = "$file:$line: $text"
  241. # The WARN_LOGFILE tag can be used to specify a file to which warning
  242. # and error messages should be written. If left blank the output is written
  243. # to stderr.
  244. WARN_LOGFILE =
  245. #---------------------------------------------------------------------------
  246. # configuration options related to the input files
  247. #---------------------------------------------------------------------------
  248. # The INPUT tag can be used to specify the files and/or directories that contain
  249. # documented source files. You may enter file names like "myfile.cpp" or
  250. # directories like "/usr/src/myproject". Separate the files or directories
  251. # with spaces.
  252. INPUT = docs include
  253. # If the value of the INPUT tag contains directories, you can use the
  254. # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
  255. # and *.h) to filter out the source-files in the directories. If left
  256. # blank the following patterns are tested:
  257. # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp
  258. # *.h++ *.idl *.odl
  259. FILE_PATTERNS = *.h *.hpp
  260. # The RECURSIVE tag can be used to turn specify whether or not subdirectories
  261. # should be searched for input files as well. Possible values are YES and NO.
  262. # If left blank NO is used.
  263. RECURSIVE = YES
  264. # The EXCLUDE tag can be used to specify files and/or directories that should
  265. # excluded from the INPUT source files. This way you can easily exclude a
  266. # subdirectory from a directory tree whose root is specified with the INPUT tag.
  267. EXCLUDE = *_i.h pjsua_internal.h
  268. # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories
  269. # that are symbolic links (a Unix filesystem feature) are excluded from the input.
  270. EXCLUDE_SYMLINKS = NO
  271. # If the value of the INPUT tag contains directories, you can use the
  272. # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
  273. # certain files from those directories.
  274. EXCLUDE_PATTERNS =
  275. # The EXAMPLE_PATH tag can be used to specify one or more files or
  276. # directories that contain example code fragments that are included (see
  277. # the \include command).
  278. EXAMPLE_PATH = ../pjsip-apps/src/samples ../pjsip-apps/src/pjsua
  279. # If the value of the EXAMPLE_PATH tag contains directories, you can use the
  280. # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
  281. # and *.h) to filter out the source-files in the directories. If left
  282. # blank all files are included.
  283. EXAMPLE_PATTERNS =
  284. # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
  285. # searched for input files to be used with the \include or \dontinclude
  286. # commands irrespective of the value of the RECURSIVE tag.
  287. # Possible values are YES and NO. If left blank NO is used.
  288. EXAMPLE_RECURSIVE = NO
  289. # The IMAGE_PATH tag can be used to specify one or more files or
  290. # directories that contain image that are included in the documentation (see
  291. # the \image command).
  292. IMAGE_PATH = docs ../pjmedia/docs
  293. # The INPUT_FILTER tag can be used to specify a program that doxygen should
  294. # invoke to filter for each input file. Doxygen will invoke the filter program
  295. # by executing (via popen()) the command <filter> <input-file>, where <filter>
  296. # is the value of the INPUT_FILTER tag, and <input-file> is the name of an
  297. # input file. Doxygen will then use the output that the filter program writes
  298. # to standard output.
  299. INPUT_FILTER =
  300. # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
  301. # INPUT_FILTER) will be used to filter the input files when producing source
  302. # files to browse (i.e. when SOURCE_BROWSER is set to YES).
  303. FILTER_SOURCE_FILES = NO
  304. #---------------------------------------------------------------------------
  305. # configuration options related to source browsing
  306. #---------------------------------------------------------------------------
  307. # If the SOURCE_BROWSER tag is set to YES then a list of source files will
  308. # be generated. Documented entities will be cross-referenced with these sources.
  309. SOURCE_BROWSER = NO
  310. # Setting the INLINE_SOURCES tag to YES will include the body
  311. # of functions and classes directly in the documentation.
  312. INLINE_SOURCES = NO
  313. # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
  314. # doxygen to hide any special comment blocks from generated source code
  315. # fragments. Normal C and C++ comments will always remain visible.
  316. STRIP_CODE_COMMENTS = YES
  317. # If the REFERENCED_BY_RELATION tag is set to YES (the default)
  318. # then for each documented function all documented
  319. # functions referencing it will be listed.
  320. REFERENCED_BY_RELATION = YES
  321. # If the REFERENCES_RELATION tag is set to YES (the default)
  322. # then for each documented function all documented entities
  323. # called/used by that function will be listed.
  324. REFERENCES_RELATION = YES
  325. #---------------------------------------------------------------------------
  326. # configuration options related to the alphabetical class index
  327. #---------------------------------------------------------------------------
  328. # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
  329. # of all compounds will be generated. Enable this if the project
  330. # contains a lot of classes, structs, unions or interfaces.
  331. ALPHABETICAL_INDEX = NO
  332. # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
  333. # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
  334. # in which this list will be split (can be a number in the range [1..20])
  335. COLS_IN_ALPHA_INDEX = 5
  336. # In case all classes in a project start with a common prefix, all
  337. # classes will be put under the same header in the alphabetical index.
  338. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that
  339. # should be ignored while generating the index headers.
  340. IGNORE_PREFIX = /c/project/pjproject/pjsip
  341. #---------------------------------------------------------------------------
  342. # configuration options related to the HTML output
  343. #---------------------------------------------------------------------------
  344. # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
  345. # generate HTML output.
  346. GENERATE_HTML = YES
  347. # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
  348. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  349. # put in front of it. If left blank `html' will be used as the default path.
  350. HTML_OUTPUT = html
  351. # The HTML_FILE_EXTENSION tag can be used to specify the file extension for
  352. # each generated HTML page (for example: .htm,.php,.asp). If it is left blank
  353. # doxygen will generate files with .html extension.
  354. HTML_FILE_EXTENSION = .htm
  355. # The HTML_HEADER tag can be used to specify a personal HTML header for
  356. # each generated HTML page. If it is left blank doxygen will generate a
  357. # standard header.
  358. HTML_HEADER = docs/header.html
  359. # The HTML_FOOTER tag can be used to specify a personal HTML footer for
  360. # each generated HTML page. If it is left blank doxygen will generate a
  361. # standard footer.
  362. HTML_FOOTER = docs/footer.html
  363. # The HTML_STYLESHEET tag can be used to specify a user defined cascading
  364. # style sheet that is used by each HTML page. It can be used to
  365. # fine-tune the look of the HTML output. If the tag is left blank doxygen
  366. # will generate a default style sheet
  367. HTML_STYLESHEET =
  368. # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
  369. # files or namespaces will be aligned in HTML using tables. If set to
  370. # NO a bullet list will be used.
  371. HTML_ALIGN_MEMBERS = YES
  372. # If the GENERATE_HTMLHELP tag is set to YES, additional index files
  373. # will be generated that can be used as input for tools like the
  374. # Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
  375. # of the generated HTML documentation.
  376. GENERATE_HTMLHELP = NO
  377. # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
  378. # be used to specify the file name of the resulting .chm file. You
  379. # can add a path in front of the file if the result should not be
  380. # written to the html output dir.
  381. CHM_FILE =
  382. # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
  383. # be used to specify the location (absolute path including file name) of
  384. # the HTML help compiler (hhc.exe). If non empty doxygen will try to run
  385. # the html help compiler on the generated index.hhp.
  386. HHC_LOCATION =
  387. # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
  388. # controls if a separate .chi index file is generated (YES) or that
  389. # it should be included in the master .chm file (NO).
  390. GENERATE_CHI = NO
  391. # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
  392. # controls whether a binary table of contents is generated (YES) or a
  393. # normal table of contents (NO) in the .chm file.
  394. BINARY_TOC = NO
  395. # The TOC_EXPAND flag can be set to YES to add extra items for group members
  396. # to the contents of the Html help documentation and to the tree view.
  397. TOC_EXPAND = NO
  398. # The DISABLE_INDEX tag can be used to turn on/off the condensed index at
  399. # top of each HTML page. The value NO (the default) enables the index and
  400. # the value YES disables it.
  401. DISABLE_INDEX = NO
  402. # This tag can be used to set the number of enum values (range [1..20])
  403. # that doxygen will group on one line in the generated HTML documentation.
  404. ENUM_VALUES_PER_LINE = 4
  405. # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
  406. # generated containing a tree-like index structure (just like the one that
  407. # is generated for HTML Help). For this to work a browser that supports
  408. # JavaScript, DHTML, CSS and frames is required (for instance Mozilla,
  409. # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
  410. # probably better off using the HTML help feature.
  411. GENERATE_TREEVIEW = NO
  412. # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
  413. # used to set the initial width (in pixels) of the frame in which the tree
  414. # is shown.
  415. TREEVIEW_WIDTH = 250
  416. #---------------------------------------------------------------------------
  417. # configuration options related to the LaTeX output
  418. #---------------------------------------------------------------------------
  419. # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
  420. # generate Latex output.
  421. GENERATE_LATEX = NO
  422. # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
  423. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  424. # put in front of it. If left blank `latex' will be used as the default path.
  425. LATEX_OUTPUT = latex
  426. # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
  427. # invoked. If left blank `latex' will be used as the default command name.
  428. LATEX_CMD_NAME = latex
  429. # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
  430. # generate index for LaTeX. If left blank `makeindex' will be used as the
  431. # default command name.
  432. MAKEINDEX_CMD_NAME = makeindex
  433. # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
  434. # LaTeX documents. This may be useful for small projects and may help to
  435. # save some trees in general.
  436. COMPACT_LATEX = NO
  437. # The PAPER_TYPE tag can be used to set the paper type that is used
  438. # by the printer. Possible values are: a4, a4wide, letter, legal and
  439. # executive. If left blank a4wide will be used.
  440. PAPER_TYPE = a4wide
  441. # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
  442. # packages that should be included in the LaTeX output.
  443. EXTRA_PACKAGES =
  444. # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
  445. # the generated latex document. The header should contain everything until
  446. # the first chapter. If it is left blank doxygen will generate a
  447. # standard header. Notice: only use this tag if you know what you are doing!
  448. LATEX_HEADER =
  449. # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
  450. # is prepared for conversion to pdf (using ps2pdf). The pdf file will
  451. # contain links (just like the HTML output) instead of page references
  452. # This makes the output suitable for online browsing using a pdf viewer.
  453. PDF_HYPERLINKS = NO
  454. # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
  455. # plain latex in the generated Makefile. Set this option to YES to get a
  456. # higher quality PDF documentation.
  457. USE_PDFLATEX = NO
  458. # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
  459. # command to the generated LaTeX files. This will instruct LaTeX to keep
  460. # running if errors occur, instead of asking the user for help.
  461. # This option is also used when generating formulas in HTML.
  462. LATEX_BATCHMODE = NO
  463. #---------------------------------------------------------------------------
  464. # configuration options related to the RTF output
  465. #---------------------------------------------------------------------------
  466. # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
  467. # The RTF output is optimised for Word 97 and may not look very pretty with
  468. # other RTF readers or editors.
  469. GENERATE_RTF = NO
  470. # The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
  471. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  472. # put in front of it. If left blank `rtf' will be used as the default path.
  473. RTF_OUTPUT = rtf
  474. # If the COMPACT_RTF tag is set to YES Doxygen generates more compact
  475. # RTF documents. This may be useful for small projects and may help to
  476. # save some trees in general.
  477. COMPACT_RTF = NO
  478. # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
  479. # will contain hyperlink fields. The RTF file will
  480. # contain links (just like the HTML output) instead of page references.
  481. # This makes the output suitable for online browsing using WORD or other
  482. # programs which support those fields.
  483. # Note: wordpad (write) and others do not support links.
  484. RTF_HYPERLINKS = NO
  485. # Load stylesheet definitions from file. Syntax is similar to doxygen's
  486. # config file, i.e. a series of assigments. You only have to provide
  487. # replacements, missing definitions are set to their default value.
  488. RTF_STYLESHEET_FILE =
  489. # Set optional variables used in the generation of an rtf document.
  490. # Syntax is similar to doxygen's config file.
  491. RTF_EXTENSIONS_FILE =
  492. #---------------------------------------------------------------------------
  493. # configuration options related to the man page output
  494. #---------------------------------------------------------------------------
  495. # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
  496. # generate man pages
  497. GENERATE_MAN = NO
  498. # The MAN_OUTPUT tag is used to specify where the man pages will be put.
  499. # If a relative path is entered the value of OUTPUT_DIRECTORY will be
  500. # put in front of it. If left blank `man' will be used as the default path.
  501. MAN_OUTPUT = man
  502. # The MAN_EXTENSION tag determines the extension that is added to
  503. # the generated man pages (default is the subroutine's section .3)
  504. MAN_EXTENSION = .3
  505. # If the MAN_LINKS tag is set to YES and Doxygen generates man output,
  506. # then it will generate one additional man file for each entity
  507. # documented in the real man page(s). These additional files
  508. # only source the real man page, but without them the man command
  509. # would be unable to find the correct page. The default is NO.
  510. MAN_LINKS = NO
  511. #---------------------------------------------------------------------------
  512. # configuration options related to the XML output
  513. #---------------------------------------------------------------------------
  514. # If the GENERATE_XML tag is set to YES Doxygen will
  515. # generate an XML file that captures the structure of
  516. # the code including all documentation. Note that this
  517. # feature is still experimental and incomplete at the
  518. # moment.
  519. GENERATE_XML = YES
  520. # The XML_SCHEMA tag can be used to specify an XML schema,
  521. # which can be used by a validating XML parser to check the
  522. # syntax of the XML files.
  523. XML_SCHEMA =
  524. # The XML_DTD tag can be used to specify an XML DTD,
  525. # which can be used by a validating XML parser to check the
  526. # syntax of the XML files.
  527. XML_DTD =
  528. #---------------------------------------------------------------------------
  529. # configuration options for the AutoGen Definitions output
  530. #---------------------------------------------------------------------------
  531. # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
  532. # generate an AutoGen Definitions (see autogen.sf.net) file
  533. # that captures the structure of the code including all
  534. # documentation. Note that this feature is still experimental
  535. # and incomplete at the moment.
  536. GENERATE_AUTOGEN_DEF = NO
  537. #---------------------------------------------------------------------------
  538. # configuration options related to the Perl module output
  539. #---------------------------------------------------------------------------
  540. # If the GENERATE_PERLMOD tag is set to YES Doxygen will
  541. # generate a Perl module file that captures the structure of
  542. # the code including all documentation. Note that this
  543. # feature is still experimental and incomplete at the
  544. # moment.
  545. GENERATE_PERLMOD = NO
  546. # If the PERLMOD_LATEX tag is set to YES Doxygen will generate
  547. # the necessary Makefile rules, Perl scripts and LaTeX code to be able
  548. # to generate PDF and DVI output from the Perl module output.
  549. PERLMOD_LATEX = NO
  550. # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
  551. # nicely formatted so it can be parsed by a human reader. This is useful
  552. # if you want to understand what is going on. On the other hand, if this
  553. # tag is set to NO the size of the Perl module output will be much smaller
  554. # and Perl will parse it just the same.
  555. PERLMOD_PRETTY = YES
  556. # The names of the make variables in the generated doxyrules.make file
  557. # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
  558. # This is useful so different doxyrules.make files included by the same
  559. # Makefile don't overwrite each other's variables.
  560. PERLMOD_MAKEVAR_PREFIX =
  561. #---------------------------------------------------------------------------
  562. # Configuration options related to the preprocessor
  563. #---------------------------------------------------------------------------
  564. # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
  565. # evaluate all C-preprocessor directives found in the sources and include
  566. # files.
  567. ENABLE_PREPROCESSING = YES
  568. # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
  569. # names in the source code. If set to NO (the default) only conditional
  570. # compilation will be performed. Macro expansion can be done in a controlled
  571. # way by setting EXPAND_ONLY_PREDEF to YES.
  572. MACRO_EXPANSION = YES
  573. # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
  574. # then the macro expansion is limited to the macros specified with the
  575. # PREDEFINED and EXPAND_AS_PREDEFINED tags.
  576. EXPAND_ONLY_PREDEF = NO
  577. # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
  578. # in the INCLUDE_PATH (see below) will be search if a #include is found.
  579. SEARCH_INCLUDES = YES
  580. # The INCLUDE_PATH tag can be used to specify one or more directories that
  581. # contain include files that are not input files but should be processed by
  582. # the preprocessor.
  583. INCLUDE_PATH =
  584. # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
  585. # patterns (like *.h and *.hpp) to filter out the header-files in the
  586. # directories. If left blank, the patterns specified with FILE_PATTERNS will
  587. # be used.
  588. INCLUDE_FILE_PATTERNS =
  589. # The PREDEFINED tag can be used to specify one or more macro names that
  590. # are defined before the preprocessor is started (similar to the -D option of
  591. # gcc). The argument of the tag is a list of macros of the form: name
  592. # or name=definition (no spaces). If the definition and the = are
  593. # omitted =1 is assumed.
  594. PREDEFINED = PJ_DECL(x)=x PJ_DEF(x)=x PJ_IDECL(x)=x \
  595. PJ_IDEF(x)=x PJ_INLINE(x)=x \
  596. PJ_DECL_DATA(x)=x \
  597. PJ_DECL_NO_RETURN(x)=x \
  598. PJ_NO_RETURN=x \
  599. PJ_THREAD_FUNC= \
  600. PJ_HAS_HIGH_RES_TIMER=1 \
  601. PJ_LOG_MAX_LEVEL=4 \
  602. PJ_HAS_SEMAPHORE=1 \
  603. PJ_HAS_EVENT_OBJ=1 \
  604. PJ_HAS_TCP=1 \
  605. PJSUA2_THROW=throw \
  606. PJ_BEGIN_DECL= \
  607. PJ_END_DECL= \
  608. PJ_ATTR_MAY_ALIAS= \
  609. PJMEDIA_HAS_SRTP=1
  610. # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
  611. # this tag can be used to specify a list of macro names that should be expanded.
  612. # The macro definition that is found in the sources will be used.
  613. # Use the PREDEFINED tag if you want to use a different macro definition.
  614. EXPAND_AS_DEFINED =
  615. # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
  616. # doxygen's preprocessor will remove all function-like macros that are alone
  617. # on a line, have an all uppercase name, and do not end with a semicolon. Such
  618. # function macros are typically used for boiler-plate code, and will confuse the
  619. # parser if not removed.
  620. SKIP_FUNCTION_MACROS = YES
  621. #---------------------------------------------------------------------------
  622. # Configuration::addtions related to external references
  623. #---------------------------------------------------------------------------
  624. # The TAGFILES tag can be used to specify one or more tagfiles.
  625. TAGFILES = ../pjlib/docs/pjlib.tag=../../../pjlib/docs/html ../pjlib-util/docs/pjlib-util.tag=../../../pjlib-util/docs/html ../pjnath/docs/pjnath.tag=../../../pjnath/docs/html ../pjmedia/docs/pjmedia.tag=../../../pjmedia/docs/html
  626. # When a file name is specified after GENERATE_TAGFILE, doxygen will create
  627. # a tag file that is based on the input files it reads.
  628. GENERATE_TAGFILE = docs/pjsip.tag
  629. # If the ALLEXTERNALS tag is set to YES all external classes will be listed
  630. # in the class index. If set to NO only the inherited external classes
  631. # will be listed.
  632. ALLEXTERNALS = NO
  633. # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
  634. # in the modules index. If set to NO, only the current project's groups will
  635. # be listed.
  636. EXTERNAL_GROUPS = NO
  637. # The PERL_PATH should be the absolute path and name of the perl script
  638. # interpreter (i.e. the result of `which perl').
  639. #PERL_PATH = /usr/bin/perl
  640. PERL_PATH = /c/Perl/bin/perl
  641. #---------------------------------------------------------------------------
  642. # Configuration options related to the dot tool
  643. #---------------------------------------------------------------------------
  644. # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
  645. # generate a inheritance diagram (in Html, RTF and LaTeX) for classes with base or
  646. # super classes. Setting the tag to NO turns the diagrams off. Note that this
  647. # option is superceded by the HAVE_DOT option below. This is only a fallback. It is
  648. # recommended to install and use dot, since it yield more powerful graphs.
  649. CLASS_DIAGRAMS = YES
  650. # If set to YES, the inheritance and collaboration graphs will hide
  651. # inheritance and usage relations if the target is undocumented
  652. # or is not a class.
  653. HIDE_UNDOC_RELATIONS = YES
  654. # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
  655. # available from the path. This tool is part of Graphviz, a graph visualization
  656. # toolkit from AT&T and Lucent Bell Labs. The other options in this section
  657. # have no effect if this option is set to NO (the default)
  658. HAVE_DOT = NO
  659. # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
  660. # will generate a graph for each documented class showing the direct and
  661. # indirect inheritance relations. Setting this tag to YES will force the
  662. # the CLASS_DIAGRAMS tag to NO.
  663. CLASS_GRAPH = YES
  664. # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
  665. # will generate a graph for each documented class showing the direct and
  666. # indirect implementation dependencies (inheritance, containment, and
  667. # class references variables) of the class with other documented classes.
  668. COLLABORATION_GRAPH = YES
  669. # If set to YES, the inheritance and collaboration graphs will show the
  670. # relations between templates and their instances.
  671. TEMPLATE_RELATIONS = YES
  672. # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
  673. # tags are set to YES then doxygen will generate a graph for each documented
  674. # file showing the direct and indirect include dependencies of the file with
  675. # other documented files.
  676. INCLUDE_GRAPH = YES
  677. # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
  678. # HAVE_DOT tags are set to YES then doxygen will generate a graph for each
  679. # documented header file showing the documented files that directly or
  680. # indirectly include this file.
  681. INCLUDED_BY_GRAPH = YES
  682. # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
  683. # will graphical hierarchy of all classes instead of a textual one.
  684. GRAPHICAL_HIERARCHY = YES
  685. # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
  686. # generated by dot. Possible values are png, jpg, or gif
  687. # If left blank png will be used.
  688. DOT_IMAGE_FORMAT = png
  689. # The tag DOT_PATH can be used to specify the path where the dot tool can be
  690. # found. If left blank, it is assumed the dot tool can be found on the path.
  691. DOT_PATH =
  692. # The DOTFILE_DIRS tag can be used to specify one or more directories that
  693. # contain dot files that are included in the documentation (see the
  694. # \dotfile command).
  695. DOTFILE_DIRS =
  696. # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width
  697. # (in pixels) of the graphs generated by dot. If a graph becomes larger than
  698. # this value, doxygen will try to truncate the graph, so that it fits within
  699. # the specified constraint. Beware that most browsers cannot cope with very
  700. # large images.
  701. MAX_DOT_GRAPH_WIDTH = 1024
  702. # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height
  703. # (in pixels) of the graphs generated by dot. If a graph becomes larger than
  704. # this value, doxygen will try to truncate the graph, so that it fits within
  705. # the specified constraint. Beware that most browsers cannot cope with very
  706. # large images.
  707. MAX_DOT_GRAPH_HEIGHT = 1024
  708. # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
  709. # generate a legend page explaining the meaning of the various boxes and
  710. # arrows in the dot generated graphs.
  711. GENERATE_LEGEND = YES
  712. # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
  713. # remove the intermedate dot files that are used to generate
  714. # the various graphs.
  715. DOT_CLEANUP = YES
  716. #---------------------------------------------------------------------------
  717. # Configuration::addtions related to the search engine
  718. #---------------------------------------------------------------------------
  719. # The SEARCHENGINE tag specifies whether or not a search engine should be
  720. # used. If set to NO the values of all tags below this one will be ignored.
  721. SEARCHENGINE = NO