Doxyfile.in 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307
  1. # Doxyfile 1.8.6
  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 double hash (##) is considered a comment and is placed in
  6. # front of the TAG it is preceding.
  7. #
  8. # All text after a single hash (#) is considered a comment and will be ignored.
  9. # The format is:
  10. # TAG = value [value, ...]
  11. # For lists, items can also be appended using:
  12. # TAG += value [value, ...]
  13. # Values that contain spaces should be placed between quotes (\" \").
  14. #---------------------------------------------------------------------------
  15. # Project related configuration options
  16. #---------------------------------------------------------------------------
  17. # This tag specifies the encoding used for all characters in the config file
  18. # that follow. The default is UTF-8 which is also the encoding used for all text
  19. # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
  20. # built into libc) for the transcoding. See http://www.gnu.org/software/libiconv
  21. # for the list of possible encodings.
  22. # The default value is: UTF-8.
  23. DOXYFILE_ENCODING = UTF-8
  24. # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
  25. # double-quotes, unless you are using Doxywizard) that should identify the
  26. # project for which the documentation is generated. This name is used in the
  27. # title of most generated pages and in a few other places.
  28. # The default value is: My Project.
  29. PROJECT_NAME = "Nextcloud Desktop Client Developer Documentation"
  30. # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
  31. # could be handy for archiving the generated documentation or if some version
  32. # control system is used.
  33. PROJECT_NUMBER = @MIRALL_VERSION@
  34. # Using the PROJECT_BRIEF tag one can provide an optional one line description
  35. # for a project that appears at the top of each page and should give viewer a
  36. # quick idea about the purpose of the project. Keep the description short.
  37. PROJECT_BRIEF = "APIs, Designs and Concepts"
  38. # With the PROJECT_LOGO tag one can specify an logo or icon that is included in
  39. # the documentation. The maximum height of the logo should not exceed 55 pixels
  40. # and the maximum width should not exceed 200 pixels. Doxygen will copy the logo
  41. # to the output directory.
  42. PROJECT_LOGO =
  43. # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
  44. # into which the generated documentation will be written. If a relative path is
  45. # entered, it will be relative to the location where doxygen was started. If
  46. # left blank the current directory will be used.
  47. OUTPUT_DIRECTORY =
  48. # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
  49. # directories (in 2 levels) under the output directory of each output format and
  50. # will distribute the generated files over these directories. Enabling this
  51. # option can be useful when feeding doxygen a huge amount of source files, where
  52. # putting all generated files in the same directory would otherwise causes
  53. # performance problems for the file system.
  54. # The default value is: NO.
  55. CREATE_SUBDIRS = NO
  56. # The OUTPUT_LANGUAGE tag is used to specify the language in which all
  57. # documentation generated by doxygen is written. Doxygen will use this
  58. # information to generate all constant output in the proper language.
  59. # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,
  60. # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
  61. # Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,
  62. # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),
  63. # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,
  64. # Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,
  65. # Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,
  66. # Ukrainian and Vietnamese.
  67. # The default value is: English.
  68. OUTPUT_LANGUAGE = English
  69. # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
  70. # descriptions after the members that are listed in the file and class
  71. # documentation (similar to Javadoc). Set to NO to disable this.
  72. # The default value is: YES.
  73. BRIEF_MEMBER_DESC = YES
  74. # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
  75. # description of a member or function before the detailed description
  76. #
  77. # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
  78. # brief descriptions will be completely suppressed.
  79. # The default value is: YES.
  80. REPEAT_BRIEF = YES
  81. # This tag implements a quasi-intelligent brief description abbreviator that is
  82. # used to form the text in various listings. Each string in this list, if found
  83. # as the leading text of the brief description, will be stripped from the text
  84. # and the result, after processing the whole list, is used as the annotated
  85. # text. Otherwise, the brief description is used as-is. If left blank, the
  86. # following values are used ($name is automatically replaced with the name of
  87. # the entity):The $name class, The $name widget, The $name file, is, provides,
  88. # specifies, contains, represents, a, an and the.
  89. ABBREVIATE_BRIEF =
  90. # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
  91. # doxygen will generate a detailed section even if there is only a brief
  92. # description.
  93. # The default value is: NO.
  94. ALWAYS_DETAILED_SEC = NO
  95. # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
  96. # inherited members of a class in the documentation of that class as if those
  97. # members were ordinary class members. Constructors, destructors and assignment
  98. # operators of the base classes will not be shown.
  99. # The default value is: NO.
  100. INLINE_INHERITED_MEMB = NO
  101. # If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path
  102. # before files name in the file list and in the header files. If set to NO the
  103. # shortest path that makes the file name unique will be used
  104. # The default value is: YES.
  105. FULL_PATH_NAMES = YES
  106. # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
  107. # Stripping is only done if one of the specified strings matches the left-hand
  108. # part of the path. The tag can be used to show relative paths in the file list.
  109. # If left blank the directory from which doxygen is run is used as the path to
  110. # strip.
  111. #
  112. # Note that you can specify absolute paths here, but also relative paths, which
  113. # will be relative from the directory where doxygen is started.
  114. # This tag requires that the tag FULL_PATH_NAMES is set to YES.
  115. STRIP_FROM_PATH =
  116. # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
  117. # path mentioned in the documentation of a class, which tells the reader which
  118. # header file to include in order to use a class. If left blank only the name of
  119. # the header file containing the class definition is used. Otherwise one should
  120. # specify the list of include paths that are normally passed to the compiler
  121. # using the -I flag.
  122. STRIP_FROM_INC_PATH =
  123. # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
  124. # less readable) file names. This can be useful is your file systems doesn't
  125. # support long names like on DOS, Mac, or CD-ROM.
  126. # The default value is: NO.
  127. SHORT_NAMES = NO
  128. # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
  129. # first line (until the first dot) of a Javadoc-style comment as the brief
  130. # description. If set to NO, the Javadoc-style will behave just like regular Qt-
  131. # style comments (thus requiring an explicit @brief command for a brief
  132. # description.)
  133. # The default value is: NO.
  134. JAVADOC_AUTOBRIEF = NO
  135. # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
  136. # line (until the first dot) of a Qt-style comment as the brief description. If
  137. # set to NO, the Qt-style will behave just like regular Qt-style comments (thus
  138. # requiring an explicit \brief command for a brief description.)
  139. # The default value is: NO.
  140. QT_AUTOBRIEF = NO
  141. # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
  142. # multi-line C++ special comment block (i.e. a block of //! or /// comments) as
  143. # a brief description. This used to be the default behavior. The new default is
  144. # to treat a multi-line C++ comment block as a detailed description. Set this
  145. # tag to YES if you prefer the old behavior instead.
  146. #
  147. # Note that setting this tag to YES also means that rational rose comments are
  148. # not recognized any more.
  149. # The default value is: NO.
  150. MULTILINE_CPP_IS_BRIEF = NO
  151. # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
  152. # documentation from any documented member that it re-implements.
  153. # The default value is: YES.
  154. INHERIT_DOCS = YES
  155. # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a
  156. # new page for each member. If set to NO, the documentation of a member will be
  157. # part of the file/class/namespace that contains it.
  158. # The default value is: NO.
  159. SEPARATE_MEMBER_PAGES = NO
  160. # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
  161. # uses this value to replace tabs by spaces in code fragments.
  162. # Minimum value: 1, maximum value: 16, default value: 4.
  163. TAB_SIZE = 4
  164. # This tag can be used to specify a number of aliases that act as commands in
  165. # the documentation. An alias has the form:
  166. # name=value
  167. # For example adding
  168. # "sideeffect=@par Side Effects:\n"
  169. # will allow you to put the command \sideeffect (or @sideeffect) in the
  170. # documentation, which will result in a user-defined paragraph with heading
  171. # "Side Effects:". You can put \n's in the value part of an alias to insert
  172. # newlines.
  173. ALIASES =
  174. # This tag can be used to specify a number of word-keyword mappings (TCL only).
  175. # A mapping has the form "name=value". For example adding "class=itcl::class"
  176. # will allow you to use the command class in the itcl::class meaning.
  177. TCL_SUBST =
  178. # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
  179. # only. Doxygen will then generate output that is more tailored for C. For
  180. # instance, some of the names that are used will be different. The list of all
  181. # members will be omitted, etc.
  182. # The default value is: NO.
  183. OPTIMIZE_OUTPUT_FOR_C = NO
  184. # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
  185. # Python sources only. Doxygen will then generate output that is more tailored
  186. # for that language. For instance, namespaces will be presented as packages,
  187. # qualified scopes will look different, etc.
  188. # The default value is: NO.
  189. OPTIMIZE_OUTPUT_JAVA = NO
  190. # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
  191. # sources. Doxygen will then generate output that is tailored for Fortran.
  192. # The default value is: NO.
  193. OPTIMIZE_FOR_FORTRAN = NO
  194. # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
  195. # sources. Doxygen will then generate output that is tailored for VHDL.
  196. # The default value is: NO.
  197. OPTIMIZE_OUTPUT_VHDL = NO
  198. # Doxygen selects the parser to use depending on the extension of the files it
  199. # parses. With this tag you can assign which parser to use for a given
  200. # extension. Doxygen has a built-in mapping, but you can override or extend it
  201. # using this tag. The format is ext=language, where ext is a file extension, and
  202. # language is one of the parsers supported by doxygen: IDL, Java, Javascript,
  203. # C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make
  204. # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
  205. # (default is Fortran), use: inc=Fortran f=C.
  206. #
  207. # Note For files without extension you can use no_extension as a placeholder.
  208. #
  209. # Note that for custom extensions you also need to set FILE_PATTERNS otherwise
  210. # the files are not read by doxygen.
  211. EXTENSION_MAPPING =
  212. # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
  213. # according to the Markdown format, which allows for more readable
  214. # documentation. See http://daringfireball.net/projects/markdown/ for details.
  215. # The output of markdown processing is further processed by doxygen, so you can
  216. # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
  217. # case of backward compatibilities issues.
  218. # The default value is: YES.
  219. MARKDOWN_SUPPORT = YES
  220. # When enabled doxygen tries to link words that correspond to documented
  221. # classes, or namespaces to their corresponding documentation. Such a link can
  222. # be prevented in individual cases by by putting a % sign in front of the word
  223. # or globally by setting AUTOLINK_SUPPORT to NO.
  224. # The default value is: YES.
  225. AUTOLINK_SUPPORT = YES
  226. # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
  227. # to include (a tag file for) the STL sources as input, then you should set this
  228. # tag to YES in order to let doxygen match functions declarations and
  229. # definitions whose arguments contain STL classes (e.g. func(std::string);
  230. # versus func(std::string) {}). This also make the inheritance and collaboration
  231. # diagrams that involve STL classes more complete and accurate.
  232. # The default value is: NO.
  233. BUILTIN_STL_SUPPORT = NO
  234. # If you use Microsoft's C++/CLI language, you should set this option to YES to
  235. # enable parsing support.
  236. # The default value is: NO.
  237. CPP_CLI_SUPPORT = NO
  238. # Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
  239. # http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen
  240. # will parse them like normal C++ but will assume all classes use public instead
  241. # of private inheritance when no explicit protection keyword is present.
  242. # The default value is: NO.
  243. SIP_SUPPORT = NO
  244. # For Microsoft's IDL there are propget and propput attributes to indicate
  245. # getter and setter methods for a property. Setting this option to YES will make
  246. # doxygen to replace the get and set methods by a property in the documentation.
  247. # This will only work if the methods are indeed getting or setting a simple
  248. # type. If this is not the case, or you want to show the methods anyway, you
  249. # should set this option to NO.
  250. # The default value is: YES.
  251. IDL_PROPERTY_SUPPORT = YES
  252. # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
  253. # tag is set to YES, then doxygen will reuse the documentation of the first
  254. # member in the group (if any) for the other members of the group. By default
  255. # all members of a group must be documented explicitly.
  256. # The default value is: NO.
  257. DISTRIBUTE_GROUP_DOC = NO
  258. # Set the SUBGROUPING tag to YES to allow class member groups of the same type
  259. # (for instance a group of public functions) to be put as a subgroup of that
  260. # type (e.g. under the Public Functions section). Set it to NO to prevent
  261. # subgrouping. Alternatively, this can be done per class using the
  262. # \nosubgrouping command.
  263. # The default value is: YES.
  264. SUBGROUPING = YES
  265. # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
  266. # are shown inside the group in which they are included (e.g. using \ingroup)
  267. # instead of on a separate page (for HTML and Man pages) or section (for LaTeX
  268. # and RTF).
  269. #
  270. # Note that this feature does not work in combination with
  271. # SEPARATE_MEMBER_PAGES.
  272. # The default value is: NO.
  273. INLINE_GROUPED_CLASSES = NO
  274. # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
  275. # with only public data fields or simple typedef fields will be shown inline in
  276. # the documentation of the scope in which they are defined (i.e. file,
  277. # namespace, or group documentation), provided this scope is documented. If set
  278. # to NO, structs, classes, and unions are shown on a separate page (for HTML and
  279. # Man pages) or section (for LaTeX and RTF).
  280. # The default value is: NO.
  281. INLINE_SIMPLE_STRUCTS = NO
  282. # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
  283. # enum is documented as struct, union, or enum with the name of the typedef. So
  284. # typedef struct TypeS {} TypeT, will appear in the documentation as a struct
  285. # with name TypeT. When disabled the typedef will appear as a member of a file,
  286. # namespace, or class. And the struct will be named TypeS. This can typically be
  287. # useful for C code in case the coding convention dictates that all compound
  288. # types are typedef'ed and only the typedef is referenced, never the tag name.
  289. # The default value is: NO.
  290. TYPEDEF_HIDES_STRUCT = NO
  291. # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
  292. # cache is used to resolve symbols given their name and scope. Since this can be
  293. # an expensive process and often the same symbol appears multiple times in the
  294. # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
  295. # doxygen will become slower. If the cache is too large, memory is wasted. The
  296. # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
  297. # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
  298. # symbols. At the end of a run doxygen will report the cache usage and suggest
  299. # the optimal cache size from a speed point of view.
  300. # Minimum value: 0, maximum value: 9, default value: 0.
  301. LOOKUP_CACHE_SIZE = 0
  302. #---------------------------------------------------------------------------
  303. # Build related configuration options
  304. #---------------------------------------------------------------------------
  305. # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
  306. # documentation are documented, even if no documentation was available. Private
  307. # class members and static file members will be hidden unless the
  308. # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
  309. # Note: This will also disable the warnings about undocumented members that are
  310. # normally produced when WARNINGS is set to YES.
  311. # The default value is: NO.
  312. EXTRACT_ALL = NO
  313. # If the EXTRACT_PRIVATE tag is set to YES all private members of a class will
  314. # be included in the documentation.
  315. # The default value is: NO.
  316. EXTRACT_PRIVATE = NO
  317. # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal
  318. # scope will be included in the documentation.
  319. # The default value is: NO.
  320. EXTRACT_PACKAGE = NO
  321. # If the EXTRACT_STATIC tag is set to YES all static members of a file will be
  322. # included in the documentation.
  323. # The default value is: NO.
  324. EXTRACT_STATIC = NO
  325. # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined
  326. # locally in source files will be included in the documentation. If set to NO
  327. # only classes defined in header files are included. Does not have any effect
  328. # for Java sources.
  329. # The default value is: YES.
  330. EXTRACT_LOCAL_CLASSES = YES
  331. # This flag is only useful for Objective-C code. When set to YES local methods,
  332. # which are defined in the implementation section but not in the interface are
  333. # included in the documentation. If set to NO only methods in the interface are
  334. # included.
  335. # The default value is: NO.
  336. EXTRACT_LOCAL_METHODS = NO
  337. # If this flag is set to YES, the members of anonymous namespaces will be
  338. # extracted and appear in the documentation as a namespace called
  339. # 'anonymous_namespace{file}', where file will be replaced with the base name of
  340. # the file that contains the anonymous namespace. By default anonymous namespace
  341. # are hidden.
  342. # The default value is: NO.
  343. EXTRACT_ANON_NSPACES = NO
  344. # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
  345. # undocumented members inside documented classes or files. If set to NO these
  346. # members will be included in the various overviews, but no documentation
  347. # section is generated. This option has no effect if EXTRACT_ALL is enabled.
  348. # The default value is: NO.
  349. HIDE_UNDOC_MEMBERS = NO
  350. # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
  351. # undocumented classes that are normally visible in the class hierarchy. If set
  352. # to NO these classes will be included in the various overviews. This option has
  353. # no effect if EXTRACT_ALL is enabled.
  354. # The default value is: NO.
  355. HIDE_UNDOC_CLASSES = YES
  356. # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
  357. # (class|struct|union) declarations. If set to NO these declarations will be
  358. # included in the documentation.
  359. # The default value is: NO.
  360. HIDE_FRIEND_COMPOUNDS = NO
  361. # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
  362. # documentation blocks found inside the body of a function. If set to NO these
  363. # blocks will be appended to the function's detailed documentation block.
  364. # The default value is: NO.
  365. HIDE_IN_BODY_DOCS = NO
  366. # The INTERNAL_DOCS tag determines if documentation that is typed after a
  367. # \internal command is included. If the tag is set to NO then the documentation
  368. # will be excluded. Set it to YES to include the internal documentation.
  369. # The default value is: NO.
  370. INTERNAL_DOCS = NO
  371. # If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
  372. # names in lower-case letters. If set to YES upper-case letters are also
  373. # allowed. This is useful if you have classes or files whose names only differ
  374. # in case and if your file system supports case sensitive file names. Windows
  375. # and Mac users are advised to set this option to NO.
  376. # The default value is: system dependent.
  377. CASE_SENSE_NAMES = YES
  378. # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
  379. # their full class and namespace scopes in the documentation. If set to YES the
  380. # scope will be hidden.
  381. # The default value is: NO.
  382. HIDE_SCOPE_NAMES = NO
  383. # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
  384. # the files that are included by a file in the documentation of that file.
  385. # The default value is: YES.
  386. SHOW_INCLUDE_FILES = YES
  387. # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
  388. # grouped member an include statement to the documentation, telling the reader
  389. # which file to include in order to use the member.
  390. # The default value is: NO.
  391. SHOW_GROUPED_MEMB_INC = NO
  392. # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
  393. # files with double quotes in the documentation rather than with sharp brackets.
  394. # The default value is: NO.
  395. FORCE_LOCAL_INCLUDES = NO
  396. # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
  397. # documentation for inline members.
  398. # The default value is: YES.
  399. INLINE_INFO = YES
  400. # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
  401. # (detailed) documentation of file and class members alphabetically by member
  402. # name. If set to NO the members will appear in declaration order.
  403. # The default value is: YES.
  404. SORT_MEMBER_DOCS = YES
  405. # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
  406. # descriptions of file, namespace and class members alphabetically by member
  407. # name. If set to NO the members will appear in declaration order. Note that
  408. # this will also influence the order of the classes in the class list.
  409. # The default value is: NO.
  410. SORT_BRIEF_DOCS = NO
  411. # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
  412. # (brief and detailed) documentation of class members so that constructors and
  413. # destructors are listed first. If set to NO the constructors will appear in the
  414. # respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
  415. # Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
  416. # member documentation.
  417. # Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
  418. # detailed member documentation.
  419. # The default value is: NO.
  420. SORT_MEMBERS_CTORS_1ST = NO
  421. # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
  422. # of group names into alphabetical order. If set to NO the group names will
  423. # appear in their defined order.
  424. # The default value is: NO.
  425. SORT_GROUP_NAMES = YES
  426. # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
  427. # fully-qualified names, including namespaces. If set to NO, the class list will
  428. # be sorted only by class name, not including the namespace part.
  429. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
  430. # Note: This option applies only to the class list, not to the alphabetical
  431. # list.
  432. # The default value is: NO.
  433. SORT_BY_SCOPE_NAME = NO
  434. # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
  435. # type resolution of all parameters of a function it will reject a match between
  436. # the prototype and the implementation of a member function even if there is
  437. # only one candidate or it is obvious which candidate to choose by doing a
  438. # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
  439. # accept a match between prototype and implementation in such cases.
  440. # The default value is: NO.
  441. STRICT_PROTO_MATCHING = NO
  442. # The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the
  443. # todo list. This list is created by putting \todo commands in the
  444. # documentation.
  445. # The default value is: YES.
  446. GENERATE_TODOLIST = YES
  447. # The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the
  448. # test list. This list is created by putting \test commands in the
  449. # documentation.
  450. # The default value is: YES.
  451. GENERATE_TESTLIST = YES
  452. # The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug
  453. # list. This list is created by putting \bug commands in the documentation.
  454. # The default value is: YES.
  455. GENERATE_BUGLIST = YES
  456. # The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO)
  457. # the deprecated list. This list is created by putting \deprecated commands in
  458. # the documentation.
  459. # The default value is: YES.
  460. GENERATE_DEPRECATEDLIST= YES
  461. # The ENABLED_SECTIONS tag can be used to enable conditional documentation
  462. # sections, marked by \if <section_label> ... \endif and \cond <section_label>
  463. # ... \endcond blocks.
  464. ENABLED_SECTIONS =
  465. # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
  466. # initial value of a variable or macro / define can have for it to appear in the
  467. # documentation. If the initializer consists of more lines than specified here
  468. # it will be hidden. Use a value of 0 to hide initializers completely. The
  469. # appearance of the value of individual variables and macros / defines can be
  470. # controlled using \showinitializer or \hideinitializer command in the
  471. # documentation regardless of this setting.
  472. # Minimum value: 0, maximum value: 10000, default value: 30.
  473. MAX_INITIALIZER_LINES = 30
  474. # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
  475. # the bottom of the documentation of classes and structs. If set to YES the list
  476. # will mention the files that were used to generate the documentation.
  477. # The default value is: YES.
  478. SHOW_USED_FILES = YES
  479. # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
  480. # will remove the Files entry from the Quick Index and from the Folder Tree View
  481. # (if specified).
  482. # The default value is: YES.
  483. SHOW_FILES = YES
  484. # Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
  485. # page. This will remove the Namespaces entry from the Quick Index and from the
  486. # Folder Tree View (if specified).
  487. # The default value is: YES.
  488. SHOW_NAMESPACES = YES
  489. # The FILE_VERSION_FILTER tag can be used to specify a program or script that
  490. # doxygen should invoke to get the current version for each file (typically from
  491. # the version control system). Doxygen will invoke the program by executing (via
  492. # popen()) the command command input-file, where command is the value of the
  493. # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
  494. # by doxygen. Whatever the program writes to standard output is used as the file
  495. # version. For an example see the documentation.
  496. FILE_VERSION_FILTER =
  497. # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
  498. # by doxygen. The layout file controls the global structure of the generated
  499. # output files in an output format independent way. To create the layout file
  500. # that represents doxygen's defaults, run doxygen with the -l option. You can
  501. # optionally specify a file name after the option, if omitted DoxygenLayout.xml
  502. # will be used as the name of the layout file.
  503. #
  504. # Note that if you run doxygen from a directory containing a file called
  505. # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
  506. # tag is left empty.
  507. LAYOUT_FILE =
  508. # The CITE_BIB_FILES tag can be used to specify one or more bib files containing
  509. # the reference definitions. This must be a list of .bib files. The .bib
  510. # extension is automatically appended if omitted. This requires the bibtex tool
  511. # to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info.
  512. # For LaTeX the style of the bibliography can be controlled using
  513. # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
  514. # search path. Do not use file names with spaces, bibtex cannot handle them. See
  515. # also \cite for info how to create references.
  516. CITE_BIB_FILES =
  517. #---------------------------------------------------------------------------
  518. # Configuration options related to warning and progress messages
  519. #---------------------------------------------------------------------------
  520. # The QUIET tag can be used to turn on/off the messages that are generated to
  521. # standard output by doxygen. If QUIET is set to YES this implies that the
  522. # messages are off.
  523. # The default value is: NO.
  524. QUIET = NO
  525. # The WARNINGS tag can be used to turn on/off the warning messages that are
  526. # generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES
  527. # this implies that the warnings are on.
  528. #
  529. # Tip: Turn warnings on while writing the documentation.
  530. # The default value is: YES.
  531. WARNINGS = YES
  532. # If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate
  533. # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
  534. # will automatically be disabled.
  535. # The default value is: YES.
  536. WARN_IF_UNDOCUMENTED = YES
  537. # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
  538. # potential errors in the documentation, such as not documenting some parameters
  539. # in a documented function, or documenting parameters that don't exist or using
  540. # markup commands wrongly.
  541. # The default value is: YES.
  542. WARN_IF_DOC_ERROR = YES
  543. # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
  544. # are documented, but have no documentation for their parameters or return
  545. # value. If set to NO doxygen will only warn about wrong or incomplete parameter
  546. # documentation, but not about the absence of documentation.
  547. # The default value is: NO.
  548. WARN_NO_PARAMDOC = NO
  549. # The WARN_FORMAT tag determines the format of the warning messages that doxygen
  550. # can produce. The string should contain the $file, $line, and $text tags, which
  551. # will be replaced by the file and line number from which the warning originated
  552. # and the warning text. Optionally the format may contain $version, which will
  553. # be replaced by the version of the file (if it could be obtained via
  554. # FILE_VERSION_FILTER)
  555. # The default value is: $file:$line: $text.
  556. WARN_FORMAT = "$file:$line: $text"
  557. # The WARN_LOGFILE tag can be used to specify a file to which warning and error
  558. # messages should be written. If left blank the output is written to standard
  559. # error (stderr).
  560. WARN_LOGFILE =
  561. #---------------------------------------------------------------------------
  562. # Configuration options related to the input files
  563. #---------------------------------------------------------------------------
  564. # The INPUT tag is used to specify the files and/or directories that contain
  565. # documented source files. You may enter file names like myfile.cpp or
  566. # directories like /usr/src/myproject. Separate the files or directories with
  567. # spaces.
  568. # Note: If this tag is empty the current directory is searched.
  569. INPUT = @CMAKE_SOURCE_DIR@/src/cmd \
  570. @CMAKE_SOURCE_DIR@/src/crashreporter \
  571. @CMAKE_SOURCE_DIR@/src/gui \
  572. @CMAKE_SOURCE_DIR@/src/libsync \
  573. @CMAKE_CURRENT_SOURCE_DIR@ # for main README.md
  574. # This tag can be used to specify the character encoding of the source files
  575. # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
  576. # libiconv (or the iconv built into libc) for the transcoding. See the libiconv
  577. # documentation (see: http://www.gnu.org/software/libiconv) for the list of
  578. # possible encodings.
  579. # The default value is: UTF-8.
  580. INPUT_ENCODING = UTF-8
  581. # If the value of the INPUT tag contains directories, you can use the
  582. # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
  583. # *.h) to filter out the source-files in the directories. If left blank the
  584. # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii,
  585. # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp,
  586. # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown,
  587. # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf,
  588. # *.qsf, *.as and *.js.
  589. FILE_PATTERNS =
  590. # The RECURSIVE tag can be used to specify whether or not subdirectories should
  591. # be searched for input files as well.
  592. # The default value is: NO.
  593. RECURSIVE = YES
  594. # The EXCLUDE tag can be used to specify files and/or directories that should be
  595. # excluded from the INPUT source files. This way you can easily exclude a
  596. # subdirectory from a directory tree whose root is specified with the INPUT tag.
  597. #
  598. # Note that relative paths are relative to the directory from which doxygen is
  599. # run.
  600. EXCLUDE =
  601. # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
  602. # directories that are symbolic links (a Unix file system feature) are excluded
  603. # from the input.
  604. # The default value is: NO.
  605. EXCLUDE_SYMLINKS = NO
  606. # If the value of the INPUT tag contains directories, you can use the
  607. # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
  608. # certain files from those directories.
  609. #
  610. # Note that the wildcards are matched against the file with absolute path, so to
  611. # exclude all test directories for example use the pattern */test/*
  612. EXCLUDE_PATTERNS =
  613. # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
  614. # (namespaces, classes, functions, etc.) that should be excluded from the
  615. # output. The symbol name can be a fully qualified name, a word, or if the
  616. # wildcard * is used, a substring. Examples: ANamespace, AClass,
  617. # AClass::ANamespace, ANamespace::*Test
  618. #
  619. # Note that the wildcards are matched against the file with absolute path, so to
  620. # exclude all test directories use the pattern */test/*
  621. EXCLUDE_SYMBOLS =
  622. # The EXAMPLE_PATH tag can be used to specify one or more files or directories
  623. # that contain example code fragments that are included (see the \include
  624. # command).
  625. EXAMPLE_PATH =
  626. # If the value of the EXAMPLE_PATH tag contains directories, you can use the
  627. # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
  628. # *.h) to filter out the source-files in the directories. If left blank all
  629. # files are included.
  630. EXAMPLE_PATTERNS =
  631. # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
  632. # searched for input files to be used with the \include or \dontinclude commands
  633. # irrespective of the value of the RECURSIVE tag.
  634. # The default value is: NO.
  635. EXAMPLE_RECURSIVE = NO
  636. # The IMAGE_PATH tag can be used to specify one or more files or directories
  637. # that contain images that are to be included in the documentation (see the
  638. # \image command).
  639. IMAGE_PATH =
  640. # The INPUT_FILTER tag can be used to specify a program that doxygen should
  641. # invoke to filter for each input file. Doxygen will invoke the filter program
  642. # by executing (via popen()) the command:
  643. #
  644. # <filter> <input-file>
  645. #
  646. # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
  647. # name of an input file. Doxygen will then use the output that the filter
  648. # program writes to standard output. If FILTER_PATTERNS is specified, this tag
  649. # will be ignored.
  650. #
  651. # Note that the filter must not add or remove lines; it is applied before the
  652. # code is scanned, but not when the output code is generated. If lines are added
  653. # or removed, the anchors will not be placed correctly.
  654. INPUT_FILTER =
  655. # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
  656. # basis. Doxygen will compare the file name with each pattern and apply the
  657. # filter if there is a match. The filters are a list of the form: pattern=filter
  658. # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
  659. # filters are used. If the FILTER_PATTERNS tag is empty or if none of the
  660. # patterns match the file name, INPUT_FILTER is applied.
  661. FILTER_PATTERNS =
  662. # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
  663. # INPUT_FILTER ) will also be used to filter the input files that are used for
  664. # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
  665. # The default value is: NO.
  666. FILTER_SOURCE_FILES = NO
  667. # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
  668. # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
  669. # it is also possible to disable source filtering for a specific pattern using
  670. # *.ext= (so without naming a filter).
  671. # This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
  672. FILTER_SOURCE_PATTERNS =
  673. # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
  674. # is part of the input, its contents will be placed on the main page
  675. # (index.html). This can be useful if you have a project on for instance GitHub
  676. # and want to reuse the introduction page also for the doxygen output.
  677. USE_MDFILE_AS_MAINPAGE =
  678. #---------------------------------------------------------------------------
  679. # Configuration options related to source browsing
  680. #---------------------------------------------------------------------------
  681. # If the SOURCE_BROWSER tag is set to YES then a list of source files will be
  682. # generated. Documented entities will be cross-referenced with these sources.
  683. #
  684. # Note: To get rid of all source code in the generated output, make sure that
  685. # also VERBATIM_HEADERS is set to NO.
  686. # The default value is: NO.
  687. SOURCE_BROWSER = NO
  688. # Setting the INLINE_SOURCES tag to YES will include the body of functions,
  689. # classes and enums directly into the documentation.
  690. # The default value is: NO.
  691. INLINE_SOURCES = NO
  692. # Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
  693. # special comment blocks from generated source code fragments. Normal C, C++ and
  694. # Fortran comments will always remain visible.
  695. # The default value is: YES.
  696. STRIP_CODE_COMMENTS = YES
  697. # If the REFERENCED_BY_RELATION tag is set to YES then for each documented
  698. # function all documented functions referencing it will be listed.
  699. # The default value is: NO.
  700. REFERENCED_BY_RELATION = NO
  701. # If the REFERENCES_RELATION tag is set to YES then for each documented function
  702. # all documented entities called/used by that function will be listed.
  703. # The default value is: NO.
  704. REFERENCES_RELATION = NO
  705. # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
  706. # to YES, then the hyperlinks from functions in REFERENCES_RELATION and
  707. # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
  708. # link to the documentation.
  709. # The default value is: YES.
  710. REFERENCES_LINK_SOURCE = YES
  711. # If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
  712. # source code will show a tooltip with additional information such as prototype,
  713. # brief description and links to the definition and documentation. Since this
  714. # will make the HTML file larger and loading of large files a bit slower, you
  715. # can opt to disable this feature.
  716. # The default value is: YES.
  717. # This tag requires that the tag SOURCE_BROWSER is set to YES.
  718. SOURCE_TOOLTIPS = YES
  719. # If the USE_HTAGS tag is set to YES then the references to source code will
  720. # point to the HTML generated by the htags(1) tool instead of doxygen built-in
  721. # source browser. The htags tool is part of GNU's global source tagging system
  722. # (see http://www.gnu.org/software/global/global.html). You will need version
  723. # 4.8.6 or higher.
  724. #
  725. # To use it do the following:
  726. # - Install the latest version of global
  727. # - Enable SOURCE_BROWSER and USE_HTAGS in the config file
  728. # - Make sure the INPUT points to the root of the source tree
  729. # - Run doxygen as normal
  730. #
  731. # Doxygen will invoke htags (and that will in turn invoke gtags), so these
  732. # tools must be available from the command line (i.e. in the search path).
  733. #
  734. # The result: instead of the source browser generated by doxygen, the links to
  735. # source code will now point to the output of htags.
  736. # The default value is: NO.
  737. # This tag requires that the tag SOURCE_BROWSER is set to YES.
  738. USE_HTAGS = NO
  739. # If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
  740. # verbatim copy of the header file for each class for which an include is
  741. # specified. Set to NO to disable this.
  742. # See also: Section \class.
  743. # The default value is: YES.
  744. VERBATIM_HEADERS = YES
  745. #---------------------------------------------------------------------------
  746. # Configuration options related to the alphabetical class index
  747. #---------------------------------------------------------------------------
  748. # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
  749. # compounds will be generated. Enable this if the project contains a lot of
  750. # classes, structs, unions or interfaces.
  751. # The default value is: YES.
  752. ALPHABETICAL_INDEX = YES
  753. # The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
  754. # which the alphabetical index list will be split.
  755. # Minimum value: 1, maximum value: 20, default value: 5.
  756. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
  757. COLS_IN_ALPHA_INDEX = 5
  758. # In case all classes in a project start with a common prefix, all classes will
  759. # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
  760. # can be used to specify a prefix (or a list of prefixes) that should be ignored
  761. # while generating the index headers.
  762. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
  763. IGNORE_PREFIX =
  764. #---------------------------------------------------------------------------
  765. # Configuration options related to the HTML output
  766. #---------------------------------------------------------------------------
  767. # If the GENERATE_HTML tag is set to YES doxygen will generate HTML output
  768. # The default value is: YES.
  769. GENERATE_HTML = YES
  770. # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
  771. # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
  772. # it.
  773. # The default directory is: html.
  774. # This tag requires that the tag GENERATE_HTML is set to YES.
  775. HTML_OUTPUT = html
  776. # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
  777. # generated HTML page (for example: .htm, .php, .asp).
  778. # The default value is: .html.
  779. # This tag requires that the tag GENERATE_HTML is set to YES.
  780. HTML_FILE_EXTENSION = .html
  781. # The HTML_HEADER tag can be used to specify a user-defined HTML header file for
  782. # each generated HTML page. If the tag is left blank doxygen will generate a
  783. # standard header.
  784. #
  785. # To get valid HTML the header file that includes any scripts and style sheets
  786. # that doxygen needs, which is dependent on the configuration options used (e.g.
  787. # the setting GENERATE_TREEVIEW). It is highly recommended to start with a
  788. # default header using
  789. # doxygen -w html new_header.html new_footer.html new_stylesheet.css
  790. # YourConfigFile
  791. # and then modify the file new_header.html. See also section "Doxygen usage"
  792. # for information on how to generate the default header that doxygen normally
  793. # uses.
  794. # Note: The header is subject to change so you typically have to regenerate the
  795. # default header when upgrading to a newer version of doxygen. For a description
  796. # of the possible markers and block names see the documentation.
  797. # This tag requires that the tag GENERATE_HTML is set to YES.
  798. HTML_HEADER =
  799. # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
  800. # generated HTML page. If the tag is left blank doxygen will generate a standard
  801. # footer. See HTML_HEADER for more information on how to generate a default
  802. # footer and what special commands can be used inside the footer. See also
  803. # section "Doxygen usage" for information on how to generate the default footer
  804. # that doxygen normally uses.
  805. # This tag requires that the tag GENERATE_HTML is set to YES.
  806. HTML_FOOTER =
  807. # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
  808. # sheet that is used by each HTML page. It can be used to fine-tune the look of
  809. # the HTML output. If left blank doxygen will generate a default style sheet.
  810. # See also section "Doxygen usage" for information on how to generate the style
  811. # sheet that doxygen normally uses.
  812. # Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
  813. # it is more robust and this tag (HTML_STYLESHEET) will in the future become
  814. # obsolete.
  815. # This tag requires that the tag GENERATE_HTML is set to YES.
  816. HTML_STYLESHEET =
  817. # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user-
  818. # defined cascading style sheet that is included after the standard style sheets
  819. # created by doxygen. Using this option one can overrule certain style aspects.
  820. # This is preferred over using HTML_STYLESHEET since it does not replace the
  821. # standard style sheet and is therefore more robust against future updates.
  822. # Doxygen will copy the style sheet file to the output directory. For an example
  823. # see the documentation.
  824. # This tag requires that the tag GENERATE_HTML is set to YES.
  825. HTML_EXTRA_STYLESHEET =
  826. # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
  827. # other source files which should be copied to the HTML output directory. Note
  828. # that these files will be copied to the base HTML output directory. Use the
  829. # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
  830. # files. In the HTML_STYLESHEET file, use the file name only. Also note that the
  831. # files will be copied as-is; there are no commands or markers available.
  832. # This tag requires that the tag GENERATE_HTML is set to YES.
  833. HTML_EXTRA_FILES =
  834. # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
  835. # will adjust the colors in the stylesheet and background images according to
  836. # this color. Hue is specified as an angle on a colorwheel, see
  837. # http://en.wikipedia.org/wiki/Hue for more information. For instance the value
  838. # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
  839. # purple, and 360 is red again.
  840. # Minimum value: 0, maximum value: 359, default value: 220.
  841. # This tag requires that the tag GENERATE_HTML is set to YES.
  842. HTML_COLORSTYLE_HUE = 220
  843. # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
  844. # in the HTML output. For a value of 0 the output will use grayscales only. A
  845. # value of 255 will produce the most vivid colors.
  846. # Minimum value: 0, maximum value: 255, default value: 100.
  847. # This tag requires that the tag GENERATE_HTML is set to YES.
  848. HTML_COLORSTYLE_SAT = 100
  849. # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
  850. # luminance component of the colors in the HTML output. Values below 100
  851. # gradually make the output lighter, whereas values above 100 make the output
  852. # darker. The value divided by 100 is the actual gamma applied, so 80 represents
  853. # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
  854. # change the gamma.
  855. # Minimum value: 40, maximum value: 240, default value: 80.
  856. # This tag requires that the tag GENERATE_HTML is set to YES.
  857. HTML_COLORSTYLE_GAMMA = 80
  858. # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
  859. # page will contain the date and time when the page was generated. Setting this
  860. # to NO can help when comparing the output of multiple runs.
  861. # The default value is: YES.
  862. # This tag requires that the tag GENERATE_HTML is set to YES.
  863. HTML_TIMESTAMP = YES
  864. # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
  865. # documentation will contain sections that can be hidden and shown after the
  866. # page has loaded.
  867. # The default value is: NO.
  868. # This tag requires that the tag GENERATE_HTML is set to YES.
  869. HTML_DYNAMIC_SECTIONS = NO
  870. # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
  871. # shown in the various tree structured indices initially; the user can expand
  872. # and collapse entries dynamically later on. Doxygen will expand the tree to
  873. # such a level that at most the specified number of entries are visible (unless
  874. # a fully collapsed tree already exceeds this amount). So setting the number of
  875. # entries 1 will produce a full collapsed tree by default. 0 is a special value
  876. # representing an infinite number of entries and will result in a full expanded
  877. # tree by default.
  878. # Minimum value: 0, maximum value: 9999, default value: 100.
  879. # This tag requires that the tag GENERATE_HTML is set to YES.
  880. HTML_INDEX_NUM_ENTRIES = 100
  881. # If the GENERATE_DOCSET tag is set to YES, additional index files will be
  882. # generated that can be used as input for Apple's Xcode 3 integrated development
  883. # environment (see: http://developer.apple.com/tools/xcode/), introduced with
  884. # OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a
  885. # Makefile in the HTML output directory. Running make will produce the docset in
  886. # that directory and running make install will install the docset in
  887. # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
  888. # startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
  889. # for more information.
  890. # The default value is: NO.
  891. # This tag requires that the tag GENERATE_HTML is set to YES.
  892. GENERATE_DOCSET = NO
  893. # This tag determines the name of the docset feed. A documentation feed provides
  894. # an umbrella under which multiple documentation sets from a single provider
  895. # (such as a company or product suite) can be grouped.
  896. # The default value is: Doxygen generated docs.
  897. # This tag requires that the tag GENERATE_DOCSET is set to YES.
  898. DOCSET_FEEDNAME = "Doxygen generated docs"
  899. # This tag specifies a string that should uniquely identify the documentation
  900. # set bundle. This should be a reverse domain-name style string, e.g.
  901. # com.mycompany.MyDocSet. Doxygen will append .docset to the name.
  902. # The default value is: org.doxygen.Project.
  903. # This tag requires that the tag GENERATE_DOCSET is set to YES.
  904. DOCSET_BUNDLE_ID = org.doxygen.Project
  905. # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
  906. # the documentation publisher. This should be a reverse domain-name style
  907. # string, e.g. com.mycompany.MyDocSet.documentation.
  908. # The default value is: org.doxygen.Publisher.
  909. # This tag requires that the tag GENERATE_DOCSET is set to YES.
  910. DOCSET_PUBLISHER_ID = org.doxygen.Publisher
  911. # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
  912. # The default value is: Publisher.
  913. # This tag requires that the tag GENERATE_DOCSET is set to YES.
  914. DOCSET_PUBLISHER_NAME = Publisher
  915. # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
  916. # additional HTML index files: index.hhp, index.hhc, and index.hhk. The
  917. # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
  918. # (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on
  919. # Windows.
  920. #
  921. # The HTML Help Workshop contains a compiler that can convert all HTML output
  922. # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
  923. # files are now used as the Windows 98 help format, and will replace the old
  924. # Windows help format (.hlp) on all Windows platforms in the future. Compressed
  925. # HTML files also contain an index, a table of contents, and you can search for
  926. # words in the documentation. The HTML workshop also contains a viewer for
  927. # compressed HTML files.
  928. # The default value is: NO.
  929. # This tag requires that the tag GENERATE_HTML is set to YES.
  930. GENERATE_HTMLHELP = NO
  931. # The CHM_FILE tag can be used to specify the file name of the resulting .chm
  932. # file. You can add a path in front of the file if the result should not be
  933. # written to the html output directory.
  934. # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
  935. CHM_FILE =
  936. # The HHC_LOCATION tag can be used to specify the location (absolute path
  937. # including file name) of the HTML help compiler ( hhc.exe). If non-empty
  938. # doxygen will try to run the HTML help compiler on the generated index.hhp.
  939. # The file has to be specified with full path.
  940. # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
  941. HHC_LOCATION =
  942. # The GENERATE_CHI flag controls if a separate .chi index file is generated (
  943. # YES) or that it should be included in the master .chm file ( NO).
  944. # The default value is: NO.
  945. # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
  946. GENERATE_CHI = NO
  947. # The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc)
  948. # and project file content.
  949. # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
  950. CHM_INDEX_ENCODING =
  951. # The BINARY_TOC flag controls whether a binary table of contents is generated (
  952. # YES) or a normal table of contents ( NO) in the .chm file.
  953. # The default value is: NO.
  954. # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
  955. BINARY_TOC = NO
  956. # The TOC_EXPAND flag can be set to YES to add extra items for group members to
  957. # the table of contents of the HTML help documentation and to the tree view.
  958. # The default value is: NO.
  959. # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
  960. TOC_EXPAND = NO
  961. # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
  962. # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
  963. # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
  964. # (.qch) of the generated HTML documentation.
  965. # The default value is: NO.
  966. # This tag requires that the tag GENERATE_HTML is set to YES.
  967. GENERATE_QHP = NO
  968. # If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
  969. # the file name of the resulting .qch file. The path specified is relative to
  970. # the HTML output folder.
  971. # This tag requires that the tag GENERATE_QHP is set to YES.
  972. QCH_FILE =
  973. # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
  974. # Project output. For more information please see Qt Help Project / Namespace
  975. # (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace).
  976. # The default value is: org.doxygen.Project.
  977. # This tag requires that the tag GENERATE_QHP is set to YES.
  978. QHP_NAMESPACE = org.doxygen.Project
  979. # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
  980. # Help Project output. For more information please see Qt Help Project / Virtual
  981. # Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual-
  982. # folders).
  983. # The default value is: doc.
  984. # This tag requires that the tag GENERATE_QHP is set to YES.
  985. QHP_VIRTUAL_FOLDER = doc
  986. # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
  987. # filter to add. For more information please see Qt Help Project / Custom
  988. # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
  989. # filters).
  990. # This tag requires that the tag GENERATE_QHP is set to YES.
  991. QHP_CUST_FILTER_NAME =
  992. # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
  993. # custom filter to add. For more information please see Qt Help Project / Custom
  994. # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
  995. # filters).
  996. # This tag requires that the tag GENERATE_QHP is set to YES.
  997. QHP_CUST_FILTER_ATTRS =
  998. # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
  999. # project's filter section matches. Qt Help Project / Filter Attributes (see:
  1000. # http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes).
  1001. # This tag requires that the tag GENERATE_QHP is set to YES.
  1002. QHP_SECT_FILTER_ATTRS =
  1003. # The QHG_LOCATION tag can be used to specify the location of Qt's
  1004. # qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
  1005. # generated .qhp file.
  1006. # This tag requires that the tag GENERATE_QHP is set to YES.
  1007. QHG_LOCATION =
  1008. # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
  1009. # generated, together with the HTML files, they form an Eclipse help plugin. To
  1010. # install this plugin and make it available under the help contents menu in
  1011. # Eclipse, the contents of the directory containing the HTML and XML files needs
  1012. # to be copied into the plugins directory of eclipse. The name of the directory
  1013. # within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
  1014. # After copying Eclipse needs to be restarted before the help appears.
  1015. # The default value is: NO.
  1016. # This tag requires that the tag GENERATE_HTML is set to YES.
  1017. GENERATE_ECLIPSEHELP = NO
  1018. # A unique identifier for the Eclipse help plugin. When installing the plugin
  1019. # the directory name containing the HTML and XML files should also have this
  1020. # name. Each documentation set should have its own identifier.
  1021. # The default value is: org.doxygen.Project.
  1022. # This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
  1023. ECLIPSE_DOC_ID = org.doxygen.Project
  1024. # If you want full control over the layout of the generated HTML pages it might
  1025. # be necessary to disable the index and replace it with your own. The
  1026. # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
  1027. # of each HTML page. A value of NO enables the index and the value YES disables
  1028. # it. Since the tabs in the index contain the same information as the navigation
  1029. # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
  1030. # The default value is: NO.
  1031. # This tag requires that the tag GENERATE_HTML is set to YES.
  1032. DISABLE_INDEX = NO
  1033. # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
  1034. # structure should be generated to display hierarchical information. If the tag
  1035. # value is set to YES, a side panel will be generated containing a tree-like
  1036. # index structure (just like the one that is generated for HTML Help). For this
  1037. # to work a browser that supports JavaScript, DHTML, CSS and frames is required
  1038. # (i.e. any modern browser). Windows users are probably better off using the
  1039. # HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can
  1040. # further fine-tune the look of the index. As an example, the default style
  1041. # sheet generated by doxygen has an example that shows how to put an image at
  1042. # the root of the tree instead of the PROJECT_NAME. Since the tree basically has
  1043. # the same information as the tab index, you could consider setting
  1044. # DISABLE_INDEX to YES when enabling this option.
  1045. # The default value is: NO.
  1046. # This tag requires that the tag GENERATE_HTML is set to YES.
  1047. GENERATE_TREEVIEW = NO
  1048. # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
  1049. # doxygen will group on one line in the generated HTML documentation.
  1050. #
  1051. # Note that a value of 0 will completely suppress the enum values from appearing
  1052. # in the overview section.
  1053. # Minimum value: 0, maximum value: 20, default value: 4.
  1054. # This tag requires that the tag GENERATE_HTML is set to YES.
  1055. ENUM_VALUES_PER_LINE = 4
  1056. # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
  1057. # to set the initial width (in pixels) of the frame in which the tree is shown.
  1058. # Minimum value: 0, maximum value: 1500, default value: 250.
  1059. # This tag requires that the tag GENERATE_HTML is set to YES.
  1060. TREEVIEW_WIDTH = 250
  1061. # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to
  1062. # external symbols imported via tag files in a separate window.
  1063. # The default value is: NO.
  1064. # This tag requires that the tag GENERATE_HTML is set to YES.
  1065. EXT_LINKS_IN_WINDOW = NO
  1066. # Use this tag to change the font size of LaTeX formulas included as images in
  1067. # the HTML documentation. When you change the font size after a successful
  1068. # doxygen run you need to manually remove any form_*.png images from the HTML
  1069. # output directory to force them to be regenerated.
  1070. # Minimum value: 8, maximum value: 50, default value: 10.
  1071. # This tag requires that the tag GENERATE_HTML is set to YES.
  1072. FORMULA_FONTSIZE = 10
  1073. # Use the FORMULA_TRANPARENT tag to determine whether or not the images
  1074. # generated for formulas are transparent PNGs. Transparent PNGs are not
  1075. # supported properly for IE 6.0, but are supported on all modern browsers.
  1076. #
  1077. # Note that when changing this option you need to delete any form_*.png files in
  1078. # the HTML output directory before the changes have effect.
  1079. # The default value is: YES.
  1080. # This tag requires that the tag GENERATE_HTML is set to YES.
  1081. FORMULA_TRANSPARENT = YES
  1082. # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
  1083. # http://www.mathjax.org) which uses client side Javascript for the rendering
  1084. # instead of using prerendered bitmaps. Use this if you do not have LaTeX
  1085. # installed or if you want to formulas look prettier in the HTML output. When
  1086. # enabled you may also need to install MathJax separately and configure the path
  1087. # to it using the MATHJAX_RELPATH option.
  1088. # The default value is: NO.
  1089. # This tag requires that the tag GENERATE_HTML is set to YES.
  1090. USE_MATHJAX = NO
  1091. # When MathJax is enabled you can set the default output format to be used for
  1092. # the MathJax output. See the MathJax site (see:
  1093. # http://docs.mathjax.org/en/latest/output.html) for more details.
  1094. # Possible values are: HTML-CSS (which is slower, but has the best
  1095. # compatibility), NativeMML (i.e. MathML) and SVG.
  1096. # The default value is: HTML-CSS.
  1097. # This tag requires that the tag USE_MATHJAX is set to YES.
  1098. MATHJAX_FORMAT = HTML-CSS
  1099. # When MathJax is enabled you need to specify the location relative to the HTML
  1100. # output directory using the MATHJAX_RELPATH option. The destination directory
  1101. # should contain the MathJax.js script. For instance, if the mathjax directory
  1102. # is located at the same level as the HTML output directory, then
  1103. # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
  1104. # Content Delivery Network so you can quickly see the result without installing
  1105. # MathJax. However, it is strongly recommended to install a local copy of
  1106. # MathJax from http://www.mathjax.org before deployment.
  1107. # The default value is: http://cdn.mathjax.org/mathjax/latest.
  1108. # This tag requires that the tag USE_MATHJAX is set to YES.
  1109. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest
  1110. # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
  1111. # extension names that should be enabled during MathJax rendering. For example
  1112. # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
  1113. # This tag requires that the tag USE_MATHJAX is set to YES.
  1114. MATHJAX_EXTENSIONS =
  1115. # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
  1116. # of code that will be used on startup of the MathJax code. See the MathJax site
  1117. # (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an
  1118. # example see the documentation.
  1119. # This tag requires that the tag USE_MATHJAX is set to YES.
  1120. MATHJAX_CODEFILE =
  1121. # When the SEARCHENGINE tag is enabled doxygen will generate a search box for
  1122. # the HTML output. The underlying search engine uses javascript and DHTML and
  1123. # should work on any modern browser. Note that when using HTML help
  1124. # (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
  1125. # there is already a search function so this one should typically be disabled.
  1126. # For large projects the javascript based search engine can be slow, then
  1127. # enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
  1128. # search using the keyboard; to jump to the search box use <access key> + S
  1129. # (what the <access key> is depends on the OS and browser, but it is typically
  1130. # <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
  1131. # key> to jump into the search results window, the results can be navigated
  1132. # using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
  1133. # the search. The filter options can be selected when the cursor is inside the
  1134. # search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
  1135. # to select a filter and <Enter> or <escape> to activate or cancel the filter
  1136. # option.
  1137. # The default value is: YES.
  1138. # This tag requires that the tag GENERATE_HTML is set to YES.
  1139. SEARCHENGINE = YES
  1140. # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
  1141. # implemented using a web server instead of a web client using Javascript. There
  1142. # are two flavours of web server based searching depending on the
  1143. # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for
  1144. # searching and an index file used by the script. When EXTERNAL_SEARCH is
  1145. # enabled the indexing and searching needs to be provided by external tools. See
  1146. # the section "External Indexing and Searching" for details.
  1147. # The default value is: NO.
  1148. # This tag requires that the tag SEARCHENGINE is set to YES.
  1149. SERVER_BASED_SEARCH = NO
  1150. # When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
  1151. # script for searching. Instead the search results are written to an XML file
  1152. # which needs to be processed by an external indexer. Doxygen will invoke an
  1153. # external search engine pointed to by the SEARCHENGINE_URL option to obtain the
  1154. # search results.
  1155. #
  1156. # Doxygen ships with an example indexer ( doxyindexer) and search engine
  1157. # (doxysearch.cgi) which are based on the open source search engine library
  1158. # Xapian (see: http://xapian.org/).
  1159. #
  1160. # See the section "External Indexing and Searching" for details.
  1161. # The default value is: NO.
  1162. # This tag requires that the tag SEARCHENGINE is set to YES.
  1163. EXTERNAL_SEARCH = NO
  1164. # The SEARCHENGINE_URL should point to a search engine hosted by a web server
  1165. # which will return the search results when EXTERNAL_SEARCH is enabled.
  1166. #
  1167. # Doxygen ships with an example indexer ( doxyindexer) and search engine
  1168. # (doxysearch.cgi) which are based on the open source search engine library
  1169. # Xapian (see: http://xapian.org/). See the section "External Indexing and
  1170. # Searching" for details.
  1171. # This tag requires that the tag SEARCHENGINE is set to YES.
  1172. SEARCHENGINE_URL =
  1173. # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
  1174. # search data is written to a file for indexing by an external tool. With the
  1175. # SEARCHDATA_FILE tag the name of this file can be specified.
  1176. # The default file is: searchdata.xml.
  1177. # This tag requires that the tag SEARCHENGINE is set to YES.
  1178. SEARCHDATA_FILE = searchdata.xml
  1179. # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
  1180. # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
  1181. # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
  1182. # projects and redirect the results back to the right project.
  1183. # This tag requires that the tag SEARCHENGINE is set to YES.
  1184. EXTERNAL_SEARCH_ID =
  1185. # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
  1186. # projects other than the one defined by this configuration file, but that are
  1187. # all added to the same external search index. Each project needs to have a
  1188. # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
  1189. # to a relative location where the documentation can be found. The format is:
  1190. # EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
  1191. # This tag requires that the tag SEARCHENGINE is set to YES.
  1192. EXTRA_SEARCH_MAPPINGS =
  1193. #---------------------------------------------------------------------------
  1194. # Configuration options related to the LaTeX output
  1195. #---------------------------------------------------------------------------
  1196. # If the GENERATE_LATEX tag is set to YES doxygen will generate LaTeX output.
  1197. # The default value is: YES.
  1198. GENERATE_LATEX = NO
  1199. # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
  1200. # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
  1201. # it.
  1202. # The default directory is: latex.
  1203. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1204. LATEX_OUTPUT = latex
  1205. # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
  1206. # invoked.
  1207. #
  1208. # Note that when enabling USE_PDFLATEX this option is only used for generating
  1209. # bitmaps for formulas in the HTML output, but not in the Makefile that is
  1210. # written to the output directory.
  1211. # The default file is: latex.
  1212. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1213. LATEX_CMD_NAME = latex
  1214. # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
  1215. # index for LaTeX.
  1216. # The default file is: makeindex.
  1217. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1218. MAKEINDEX_CMD_NAME = makeindex
  1219. # If the COMPACT_LATEX tag is set to YES doxygen generates more compact LaTeX
  1220. # documents. This may be useful for small projects and may help to save some
  1221. # trees in general.
  1222. # The default value is: NO.
  1223. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1224. COMPACT_LATEX = NO
  1225. # The PAPER_TYPE tag can be used to set the paper type that is used by the
  1226. # printer.
  1227. # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
  1228. # 14 inches) and executive (7.25 x 10.5 inches).
  1229. # The default value is: a4.
  1230. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1231. PAPER_TYPE = a4
  1232. # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
  1233. # that should be included in the LaTeX output. To get the times font for
  1234. # instance you can specify
  1235. # EXTRA_PACKAGES=times
  1236. # If left blank no extra packages will be included.
  1237. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1238. EXTRA_PACKAGES =
  1239. # The LATEX_HEADER tag can be used to specify a personal LaTeX header for the
  1240. # generated LaTeX document. The header should contain everything until the first
  1241. # chapter. If it is left blank doxygen will generate a standard header. See
  1242. # section "Doxygen usage" for information on how to let doxygen write the
  1243. # default header to a separate file.
  1244. #
  1245. # Note: Only use a user-defined header if you know what you are doing! The
  1246. # following commands have a special meaning inside the header: $title,
  1247. # $datetime, $date, $doxygenversion, $projectname, $projectnumber. Doxygen will
  1248. # replace them by respectively the title of the page, the current date and time,
  1249. # only the current date, the version number of doxygen, the project name (see
  1250. # PROJECT_NAME), or the project number (see PROJECT_NUMBER).
  1251. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1252. LATEX_HEADER =
  1253. # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the
  1254. # generated LaTeX document. The footer should contain everything after the last
  1255. # chapter. If it is left blank doxygen will generate a standard footer.
  1256. #
  1257. # Note: Only use a user-defined footer if you know what you are doing!
  1258. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1259. LATEX_FOOTER =
  1260. # The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
  1261. # other source files which should be copied to the LATEX_OUTPUT output
  1262. # directory. Note that the files will be copied as-is; there are no commands or
  1263. # markers available.
  1264. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1265. LATEX_EXTRA_FILES =
  1266. # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
  1267. # prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
  1268. # contain links (just like the HTML output) instead of page references. This
  1269. # makes the output suitable for online browsing using a PDF viewer.
  1270. # The default value is: YES.
  1271. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1272. PDF_HYPERLINKS = YES
  1273. # If the LATEX_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate
  1274. # the PDF file directly from the LaTeX files. Set this option to YES to get a
  1275. # higher quality PDF documentation.
  1276. # The default value is: YES.
  1277. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1278. USE_PDFLATEX = YES
  1279. # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
  1280. # command to the generated LaTeX files. This will instruct LaTeX to keep running
  1281. # if errors occur, instead of asking the user for help. This option is also used
  1282. # when generating formulas in HTML.
  1283. # The default value is: NO.
  1284. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1285. LATEX_BATCHMODE = NO
  1286. # If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
  1287. # index chapters (such as File Index, Compound Index, etc.) in the output.
  1288. # The default value is: NO.
  1289. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1290. LATEX_HIDE_INDICES = NO
  1291. # If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
  1292. # code with syntax highlighting in the LaTeX output.
  1293. #
  1294. # Note that which sources are shown also depends on other settings such as
  1295. # SOURCE_BROWSER.
  1296. # The default value is: NO.
  1297. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1298. LATEX_SOURCE_CODE = NO
  1299. # The LATEX_BIB_STYLE tag can be used to specify the style to use for the
  1300. # bibliography, e.g. plainnat, or ieeetr. See
  1301. # http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
  1302. # The default value is: plain.
  1303. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1304. LATEX_BIB_STYLE = plain
  1305. #---------------------------------------------------------------------------
  1306. # Configuration options related to the RTF output
  1307. #---------------------------------------------------------------------------
  1308. # If the GENERATE_RTF tag is set to YES doxygen will generate RTF output. The
  1309. # RTF output is optimized for Word 97 and may not look too pretty with other RTF
  1310. # readers/editors.
  1311. # The default value is: NO.
  1312. GENERATE_RTF = NO
  1313. # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
  1314. # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
  1315. # it.
  1316. # The default directory is: rtf.
  1317. # This tag requires that the tag GENERATE_RTF is set to YES.
  1318. RTF_OUTPUT = rtf
  1319. # If the COMPACT_RTF tag is set to YES doxygen generates more compact RTF
  1320. # documents. This may be useful for small projects and may help to save some
  1321. # trees in general.
  1322. # The default value is: NO.
  1323. # This tag requires that the tag GENERATE_RTF is set to YES.
  1324. COMPACT_RTF = NO
  1325. # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
  1326. # contain hyperlink fields. The RTF file will contain links (just like the HTML
  1327. # output) instead of page references. This makes the output suitable for online
  1328. # browsing using Word or some other Word compatible readers that support those
  1329. # fields.
  1330. #
  1331. # Note: WordPad (write) and others do not support links.
  1332. # The default value is: NO.
  1333. # This tag requires that the tag GENERATE_RTF is set to YES.
  1334. RTF_HYPERLINKS = NO
  1335. # Load stylesheet definitions from file. Syntax is similar to doxygen's config
  1336. # file, i.e. a series of assignments. You only have to provide replacements,
  1337. # missing definitions are set to their default value.
  1338. #
  1339. # See also section "Doxygen usage" for information on how to generate the
  1340. # default style sheet that doxygen normally uses.
  1341. # This tag requires that the tag GENERATE_RTF is set to YES.
  1342. RTF_STYLESHEET_FILE =
  1343. # Set optional variables used in the generation of an RTF document. Syntax is
  1344. # similar to doxygen's config file. A template extensions file can be generated
  1345. # using doxygen -e rtf extensionFile.
  1346. # This tag requires that the tag GENERATE_RTF is set to YES.
  1347. RTF_EXTENSIONS_FILE =
  1348. #---------------------------------------------------------------------------
  1349. # Configuration options related to the man page output
  1350. #---------------------------------------------------------------------------
  1351. # If the GENERATE_MAN tag is set to YES doxygen will generate man pages for
  1352. # classes and files.
  1353. # The default value is: NO.
  1354. GENERATE_MAN = NO
  1355. # The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
  1356. # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
  1357. # it. A directory man3 will be created inside the directory specified by
  1358. # MAN_OUTPUT.
  1359. # The default directory is: man.
  1360. # This tag requires that the tag GENERATE_MAN is set to YES.
  1361. MAN_OUTPUT = man
  1362. # The MAN_EXTENSION tag determines the extension that is added to the generated
  1363. # man pages. In case the manual section does not start with a number, the number
  1364. # 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
  1365. # optional.
  1366. # The default value is: .3.
  1367. # This tag requires that the tag GENERATE_MAN is set to YES.
  1368. MAN_EXTENSION = .3
  1369. # If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
  1370. # will generate one additional man file for each entity documented in the real
  1371. # man page(s). These additional files only source the real man page, but without
  1372. # them the man command would be unable to find the correct page.
  1373. # The default value is: NO.
  1374. # This tag requires that the tag GENERATE_MAN is set to YES.
  1375. MAN_LINKS = NO
  1376. #---------------------------------------------------------------------------
  1377. # Configuration options related to the XML output
  1378. #---------------------------------------------------------------------------
  1379. # If the GENERATE_XML tag is set to YES doxygen will generate an XML file that
  1380. # captures the structure of the code including all documentation.
  1381. # The default value is: NO.
  1382. GENERATE_XML = NO
  1383. # The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
  1384. # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
  1385. # it.
  1386. # The default directory is: xml.
  1387. # This tag requires that the tag GENERATE_XML is set to YES.
  1388. XML_OUTPUT = xml
  1389. # The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a
  1390. # validating XML parser to check the syntax of the XML files.
  1391. # This tag requires that the tag GENERATE_XML is set to YES.
  1392. XML_SCHEMA =
  1393. # The XML_DTD tag can be used to specify a XML DTD, which can be used by a
  1394. # validating XML parser to check the syntax of the XML files.
  1395. # This tag requires that the tag GENERATE_XML is set to YES.
  1396. XML_DTD =
  1397. # If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program
  1398. # listings (including syntax highlighting and cross-referencing information) to
  1399. # the XML output. Note that enabling this will significantly increase the size
  1400. # of the XML output.
  1401. # The default value is: YES.
  1402. # This tag requires that the tag GENERATE_XML is set to YES.
  1403. XML_PROGRAMLISTING = YES
  1404. #---------------------------------------------------------------------------
  1405. # Configuration options related to the DOCBOOK output
  1406. #---------------------------------------------------------------------------
  1407. # If the GENERATE_DOCBOOK tag is set to YES doxygen will generate Docbook files
  1408. # that can be used to generate PDF.
  1409. # The default value is: NO.
  1410. GENERATE_DOCBOOK = NO
  1411. # The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
  1412. # If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
  1413. # front of it.
  1414. # The default directory is: docbook.
  1415. # This tag requires that the tag GENERATE_DOCBOOK is set to YES.
  1416. DOCBOOK_OUTPUT = docbook
  1417. #---------------------------------------------------------------------------
  1418. # Configuration options for the AutoGen Definitions output
  1419. #---------------------------------------------------------------------------
  1420. # If the GENERATE_AUTOGEN_DEF tag is set to YES doxygen will generate an AutoGen
  1421. # Definitions (see http://autogen.sf.net) file that captures the structure of
  1422. # the code including all documentation. Note that this feature is still
  1423. # experimental and incomplete at the moment.
  1424. # The default value is: NO.
  1425. GENERATE_AUTOGEN_DEF = NO
  1426. #---------------------------------------------------------------------------
  1427. # Configuration options related to the Perl module output
  1428. #---------------------------------------------------------------------------
  1429. # If the GENERATE_PERLMOD tag is set to YES doxygen will generate a Perl module
  1430. # file that captures the structure of the code including all documentation.
  1431. #
  1432. # Note that this feature is still experimental and incomplete at the moment.
  1433. # The default value is: NO.
  1434. GENERATE_PERLMOD = NO
  1435. # If the PERLMOD_LATEX tag is set to YES doxygen will generate the necessary
  1436. # Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
  1437. # output from the Perl module output.
  1438. # The default value is: NO.
  1439. # This tag requires that the tag GENERATE_PERLMOD is set to YES.
  1440. PERLMOD_LATEX = NO
  1441. # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be nicely
  1442. # formatted so it can be parsed by a human reader. This is useful if you want to
  1443. # understand what is going on. On the other hand, if this tag is set to NO the
  1444. # size of the Perl module output will be much smaller and Perl will parse it
  1445. # just the same.
  1446. # The default value is: YES.
  1447. # This tag requires that the tag GENERATE_PERLMOD is set to YES.
  1448. PERLMOD_PRETTY = YES
  1449. # The names of the make variables in the generated doxyrules.make file are
  1450. # prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
  1451. # so different doxyrules.make files included by the same Makefile don't
  1452. # overwrite each other's variables.
  1453. # This tag requires that the tag GENERATE_PERLMOD is set to YES.
  1454. PERLMOD_MAKEVAR_PREFIX =
  1455. #---------------------------------------------------------------------------
  1456. # Configuration options related to the preprocessor
  1457. #---------------------------------------------------------------------------
  1458. # If the ENABLE_PREPROCESSING tag is set to YES doxygen will evaluate all
  1459. # C-preprocessor directives found in the sources and include files.
  1460. # The default value is: YES.
  1461. ENABLE_PREPROCESSING = YES
  1462. # If the MACRO_EXPANSION tag is set to YES doxygen will expand all macro names
  1463. # in the source code. If set to NO only conditional compilation will be
  1464. # performed. Macro expansion can be done in a controlled way by setting
  1465. # EXPAND_ONLY_PREDEF to YES.
  1466. # The default value is: NO.
  1467. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1468. MACRO_EXPANSION = YES
  1469. # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
  1470. # the macro expansion is limited to the macros specified with the PREDEFINED and
  1471. # EXPAND_AS_DEFINED tags.
  1472. # The default value is: NO.
  1473. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1474. EXPAND_ONLY_PREDEF = YES
  1475. # If the SEARCH_INCLUDES tag is set to YES the includes files in the
  1476. # INCLUDE_PATH will be searched if a #include is found.
  1477. # The default value is: YES.
  1478. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1479. SEARCH_INCLUDES = YES
  1480. # The INCLUDE_PATH tag can be used to specify one or more directories that
  1481. # contain include files that are not input files but should be processed by the
  1482. # preprocessor.
  1483. # This tag requires that the tag SEARCH_INCLUDES is set to YES.
  1484. INCLUDE_PATH =
  1485. # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
  1486. # patterns (like *.h and *.hpp) to filter out the header-files in the
  1487. # directories. If left blank, the patterns specified with FILE_PATTERNS will be
  1488. # used.
  1489. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1490. INCLUDE_FILE_PATTERNS =
  1491. # The PREDEFINED tag can be used to specify one or more macro names that are
  1492. # defined before the preprocessor is started (similar to the -D option of e.g.
  1493. # gcc). The argument of the tag is a list of macros of the form: name or
  1494. # name=definition (no spaces). If the definition and the "=" are omitted, "=1"
  1495. # is assumed. To prevent a macro definition from being undefined via #undef or
  1496. # recursively expanded use the := operator instead of the = operator.
  1497. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1498. PREDEFINED = OWNCLOUDSYNC_EXPORT
  1499. # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
  1500. # tag can be used to specify a list of macro names that should be expanded. The
  1501. # macro definition that is found in the sources will be used. Use the PREDEFINED
  1502. # tag if you want to use a different macro definition that overrules the
  1503. # definition found in the source code.
  1504. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1505. EXPAND_AS_DEFINED =
  1506. # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
  1507. # remove all references to function-like macros that are alone on a line, have an
  1508. # all uppercase name, and do not end with a semicolon. Such function macros are
  1509. # typically used for boiler-plate code, and will confuse the parser if not
  1510. # removed.
  1511. # The default value is: YES.
  1512. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1513. SKIP_FUNCTION_MACROS = YES
  1514. #---------------------------------------------------------------------------
  1515. # Configuration options related to external references
  1516. #---------------------------------------------------------------------------
  1517. # The TAGFILES tag can be used to specify one or more tag files. For each tag
  1518. # file the location of the external documentation should be added. The format of
  1519. # a tag file without this location is as follows:
  1520. # TAGFILES = file1 file2 ...
  1521. # Adding location for the tag files is done as follows:
  1522. # TAGFILES = file1=loc1 "file2 = loc2" ...
  1523. # where loc1 and loc2 can be relative or absolute paths or URLs. See the
  1524. # section "Linking to external documentation" for more information about the use
  1525. # of tag files.
  1526. # Note: Each tag file must have an unique name (where the name does NOT include
  1527. # the path). If a tag file is not located in the directory in which doxygen is
  1528. # run, you must also specify the path to the tagfile here.
  1529. TAGFILES =
  1530. # When a file name is specified after GENERATE_TAGFILE, doxygen will create a
  1531. # tag file that is based on the input files it reads. See section "Linking to
  1532. # external documentation" for more information about the usage of tag files.
  1533. GENERATE_TAGFILE =
  1534. # If the ALLEXTERNALS tag is set to YES all external class will be listed in the
  1535. # class index. If set to NO only the inherited external classes will be listed.
  1536. # The default value is: NO.
  1537. ALLEXTERNALS = NO
  1538. # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed in
  1539. # the modules index. If set to NO, only the current project's groups will be
  1540. # listed.
  1541. # The default value is: YES.
  1542. EXTERNAL_GROUPS = YES
  1543. # If the EXTERNAL_PAGES tag is set to YES all external pages will be listed in
  1544. # the related pages index. If set to NO, only the current project's pages will
  1545. # be listed.
  1546. # The default value is: YES.
  1547. EXTERNAL_PAGES = YES
  1548. # The PERL_PATH should be the absolute path and name of the perl script
  1549. # interpreter (i.e. the result of 'which perl').
  1550. # The default file (with absolute path) is: /usr/bin/perl.
  1551. PERL_PATH = /usr/bin/perl
  1552. #---------------------------------------------------------------------------
  1553. # Configuration options related to the dot tool
  1554. #---------------------------------------------------------------------------
  1555. # If the CLASS_DIAGRAMS tag is set to YES doxygen will generate a class diagram
  1556. # (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
  1557. # NO turns the diagrams off. Note that this option also works with HAVE_DOT
  1558. # disabled, but it is recommended to install and use dot, since it yields more
  1559. # powerful graphs.
  1560. # The default value is: YES.
  1561. CLASS_DIAGRAMS = YES
  1562. # You can define message sequence charts within doxygen comments using the \msc
  1563. # command. Doxygen will then run the mscgen tool (see:
  1564. # http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the
  1565. # documentation. The MSCGEN_PATH tag allows you to specify the directory where
  1566. # the mscgen tool resides. If left empty the tool is assumed to be found in the
  1567. # default search path.
  1568. MSCGEN_PATH =
  1569. # You can include diagrams made with dia in doxygen documentation. Doxygen will
  1570. # then run dia to produce the diagram and insert it in the documentation. The
  1571. # DIA_PATH tag allows you to specify the directory where the dia binary resides.
  1572. # If left empty dia is assumed to be found in the default search path.
  1573. DIA_PATH =
  1574. # If set to YES, the inheritance and collaboration graphs will hide inheritance
  1575. # and usage relations if the target is undocumented or is not a class.
  1576. # The default value is: YES.
  1577. HIDE_UNDOC_RELATIONS = YES
  1578. # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
  1579. # available from the path. This tool is part of Graphviz (see:
  1580. # http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
  1581. # Bell Labs. The other options in this section have no effect if this option is
  1582. # set to NO
  1583. # The default value is: NO.
  1584. HAVE_DOT = @DOXYGEN_DOT_FOUND@
  1585. # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
  1586. # to run in parallel. When set to 0 doxygen will base this on the number of
  1587. # processors available in the system. You can set it explicitly to a value
  1588. # larger than 0 to get control over the balance between CPU load and processing
  1589. # speed.
  1590. # Minimum value: 0, maximum value: 32, default value: 0.
  1591. # This tag requires that the tag HAVE_DOT is set to YES.
  1592. DOT_NUM_THREADS = 0
  1593. # When you want a differently looking font n the dot files that doxygen
  1594. # generates you can specify the font name using DOT_FONTNAME. You need to make
  1595. # sure dot is able to find the font, which can be done by putting it in a
  1596. # standard location or by setting the DOTFONTPATH environment variable or by
  1597. # setting DOT_FONTPATH to the directory containing the font.
  1598. # The default value is: Helvetica.
  1599. # This tag requires that the tag HAVE_DOT is set to YES.
  1600. DOT_FONTNAME = Helvetica
  1601. # The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
  1602. # dot graphs.
  1603. # Minimum value: 4, maximum value: 24, default value: 10.
  1604. # This tag requires that the tag HAVE_DOT is set to YES.
  1605. DOT_FONTSIZE = 10
  1606. # By default doxygen will tell dot to use the default font as specified with
  1607. # DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
  1608. # the path where dot can find it using this tag.
  1609. # This tag requires that the tag HAVE_DOT is set to YES.
  1610. DOT_FONTPATH =
  1611. # If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for
  1612. # each documented class showing the direct and indirect inheritance relations.
  1613. # Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.
  1614. # The default value is: YES.
  1615. # This tag requires that the tag HAVE_DOT is set to YES.
  1616. CLASS_GRAPH = YES
  1617. # If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a
  1618. # graph for each documented class showing the direct and indirect implementation
  1619. # dependencies (inheritance, containment, and class references variables) of the
  1620. # class with other documented classes.
  1621. # The default value is: YES.
  1622. # This tag requires that the tag HAVE_DOT is set to YES.
  1623. COLLABORATION_GRAPH = YES
  1624. # If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for
  1625. # groups, showing the direct groups dependencies.
  1626. # The default value is: YES.
  1627. # This tag requires that the tag HAVE_DOT is set to YES.
  1628. GROUP_GRAPHS = YES
  1629. # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
  1630. # collaboration diagrams in a style similar to the OMG's Unified Modeling
  1631. # Language.
  1632. # The default value is: NO.
  1633. # This tag requires that the tag HAVE_DOT is set to YES.
  1634. UML_LOOK = NO
  1635. # If the UML_LOOK tag is enabled, the fields and methods are shown inside the
  1636. # class node. If there are many fields or methods and many nodes the graph may
  1637. # become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
  1638. # number of items for each type to make the size more manageable. Set this to 0
  1639. # for no limit. Note that the threshold may be exceeded by 50% before the limit
  1640. # is enforced. So when you set the threshold to 10, up to 15 fields may appear,
  1641. # but if the number exceeds 15, the total amount of fields shown is limited to
  1642. # 10.
  1643. # Minimum value: 0, maximum value: 100, default value: 10.
  1644. # This tag requires that the tag HAVE_DOT is set to YES.
  1645. UML_LIMIT_NUM_FIELDS = 10
  1646. # If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
  1647. # collaboration graphs will show the relations between templates and their
  1648. # instances.
  1649. # The default value is: NO.
  1650. # This tag requires that the tag HAVE_DOT is set to YES.
  1651. TEMPLATE_RELATIONS = NO
  1652. # If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
  1653. # YES then doxygen will generate a graph for each documented file showing the
  1654. # direct and indirect include dependencies of the file with other documented
  1655. # files.
  1656. # The default value is: YES.
  1657. # This tag requires that the tag HAVE_DOT is set to YES.
  1658. INCLUDE_GRAPH = YES
  1659. # If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
  1660. # set to YES then doxygen will generate a graph for each documented file showing
  1661. # the direct and indirect include dependencies of the file with other documented
  1662. # files.
  1663. # The default value is: YES.
  1664. # This tag requires that the tag HAVE_DOT is set to YES.
  1665. INCLUDED_BY_GRAPH = YES
  1666. # If the CALL_GRAPH tag is set to YES then doxygen will generate a call
  1667. # dependency graph for every global function or class method.
  1668. #
  1669. # Note that enabling this option will significantly increase the time of a run.
  1670. # So in most cases it will be better to enable call graphs for selected
  1671. # functions only using the \callgraph command.
  1672. # The default value is: NO.
  1673. # This tag requires that the tag HAVE_DOT is set to YES.
  1674. CALL_GRAPH = NO
  1675. # If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
  1676. # dependency graph for every global function or class method.
  1677. #
  1678. # Note that enabling this option will significantly increase the time of a run.
  1679. # So in most cases it will be better to enable caller graphs for selected
  1680. # functions only using the \callergraph command.
  1681. # The default value is: NO.
  1682. # This tag requires that the tag HAVE_DOT is set to YES.
  1683. CALLER_GRAPH = NO
  1684. # If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
  1685. # hierarchy of all classes instead of a textual one.
  1686. # The default value is: YES.
  1687. # This tag requires that the tag HAVE_DOT is set to YES.
  1688. GRAPHICAL_HIERARCHY = YES
  1689. # If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
  1690. # dependencies a directory has on other directories in a graphical way. The
  1691. # dependency relations are determined by the #include relations between the
  1692. # files in the directories.
  1693. # The default value is: YES.
  1694. # This tag requires that the tag HAVE_DOT is set to YES.
  1695. DIRECTORY_GRAPH = YES
  1696. # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
  1697. # generated by dot.
  1698. # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
  1699. # to make the SVG files visible in IE 9+ (other browsers do not have this
  1700. # requirement).
  1701. # Possible values are: png, jpg, gif and svg.
  1702. # The default value is: png.
  1703. # This tag requires that the tag HAVE_DOT is set to YES.
  1704. DOT_IMAGE_FORMAT = png
  1705. # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
  1706. # enable generation of interactive SVG images that allow zooming and panning.
  1707. #
  1708. # Note that this requires a modern browser other than Internet Explorer. Tested
  1709. # and working are Firefox, Chrome, Safari, and Opera.
  1710. # Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
  1711. # the SVG files visible. Older versions of IE do not have SVG support.
  1712. # The default value is: NO.
  1713. # This tag requires that the tag HAVE_DOT is set to YES.
  1714. INTERACTIVE_SVG = NO
  1715. # The DOT_PATH tag can be used to specify the path where the dot tool can be
  1716. # found. If left blank, it is assumed the dot tool can be found in the path.
  1717. # This tag requires that the tag HAVE_DOT is set to YES.
  1718. DOT_PATH =
  1719. # The DOTFILE_DIRS tag can be used to specify one or more directories that
  1720. # contain dot files that are included in the documentation (see the \dotfile
  1721. # command).
  1722. # This tag requires that the tag HAVE_DOT is set to YES.
  1723. DOTFILE_DIRS =
  1724. # The MSCFILE_DIRS tag can be used to specify one or more directories that
  1725. # contain msc files that are included in the documentation (see the \mscfile
  1726. # command).
  1727. MSCFILE_DIRS =
  1728. # The DIAFILE_DIRS tag can be used to specify one or more directories that
  1729. # contain dia files that are included in the documentation (see the \diafile
  1730. # command).
  1731. DIAFILE_DIRS =
  1732. # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
  1733. # that will be shown in the graph. If the number of nodes in a graph becomes
  1734. # larger than this value, doxygen will truncate the graph, which is visualized
  1735. # by representing a node as a red box. Note that doxygen if the number of direct
  1736. # children of the root node in a graph is already larger than
  1737. # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
  1738. # the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
  1739. # Minimum value: 0, maximum value: 10000, default value: 50.
  1740. # This tag requires that the tag HAVE_DOT is set to YES.
  1741. DOT_GRAPH_MAX_NODES = 50
  1742. # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
  1743. # generated by dot. A depth value of 3 means that only nodes reachable from the
  1744. # root by following a path via at most 3 edges will be shown. Nodes that lay
  1745. # further from the root node will be omitted. Note that setting this option to 1
  1746. # or 2 may greatly reduce the computation time needed for large code bases. Also
  1747. # note that the size of a graph can be further restricted by
  1748. # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
  1749. # Minimum value: 0, maximum value: 1000, default value: 0.
  1750. # This tag requires that the tag HAVE_DOT is set to YES.
  1751. MAX_DOT_GRAPH_DEPTH = 0
  1752. # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
  1753. # background. This is disabled by default, because dot on Windows does not seem
  1754. # to support this out of the box.
  1755. #
  1756. # Warning: Depending on the platform used, enabling this option may lead to
  1757. # badly anti-aliased labels on the edges of a graph (i.e. they become hard to
  1758. # read).
  1759. # The default value is: NO.
  1760. # This tag requires that the tag HAVE_DOT is set to YES.
  1761. DOT_TRANSPARENT = NO
  1762. # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
  1763. # files in one run (i.e. multiple -o and -T options on the command line). This
  1764. # makes dot run faster, but since only newer versions of dot (>1.8.10) support
  1765. # this, this feature is disabled by default.
  1766. # The default value is: NO.
  1767. # This tag requires that the tag HAVE_DOT is set to YES.
  1768. DOT_MULTI_TARGETS = YES
  1769. # If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
  1770. # explaining the meaning of the various boxes and arrows in the dot generated
  1771. # graphs.
  1772. # The default value is: YES.
  1773. # This tag requires that the tag HAVE_DOT is set to YES.
  1774. GENERATE_LEGEND = YES
  1775. # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot
  1776. # files that are used to generate the various graphs.
  1777. # The default value is: YES.
  1778. # This tag requires that the tag HAVE_DOT is set to YES.
  1779. DOT_CLEANUP = YES