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