1807fe05dSsameeran joshi# Doxyfile 1.8.6 2807fe05dSsameeran joshi 3807fe05dSsameeran joshi# This file describes the settings to be used by the documentation system 4807fe05dSsameeran joshi# doxygen (www.doxygen.org) for a project. 5807fe05dSsameeran joshi# 6807fe05dSsameeran joshi# All text after a double hash (##) is considered a comment and is placed in 7807fe05dSsameeran joshi# front of the TAG it is preceding. 8807fe05dSsameeran joshi# 9807fe05dSsameeran joshi# All text after a single hash (#) is considered a comment and will be ignored. 10807fe05dSsameeran joshi# The format is: 11807fe05dSsameeran joshi# TAG = value [value, ...] 12807fe05dSsameeran joshi# For lists, items can also be appended using: 13807fe05dSsameeran joshi# TAG += value [value, ...] 14807fe05dSsameeran joshi# Values that contain spaces should be placed between quotes (\" \"). 15807fe05dSsameeran joshi 16807fe05dSsameeran joshi#--------------------------------------------------------------------------- 17807fe05dSsameeran joshi# Project related configuration options 18807fe05dSsameeran joshi#--------------------------------------------------------------------------- 19807fe05dSsameeran joshi 20807fe05dSsameeran joshi# This tag specifies the encoding used for all characters in the config file 21807fe05dSsameeran joshi# that follow. The default is UTF-8 which is also the encoding used for all text 22807fe05dSsameeran joshi# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv 23807fe05dSsameeran joshi# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv 24807fe05dSsameeran joshi# for the list of possible encodings. 25807fe05dSsameeran joshi# The default value is: UTF-8. 26807fe05dSsameeran joshi 27807fe05dSsameeran joshiDOXYFILE_ENCODING = UTF-8 28807fe05dSsameeran joshi 29807fe05dSsameeran joshi# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 30807fe05dSsameeran joshi# double-quotes, unless you are using Doxywizard) that should identify the 31807fe05dSsameeran joshi# project for which the documentation is generated. This name is used in the 32807fe05dSsameeran joshi# title of most generated pages and in a few other places. 33807fe05dSsameeran joshi# The default value is: My Project. 34807fe05dSsameeran joshi 35807fe05dSsameeran joshiPROJECT_NAME = "FLANG" 36807fe05dSsameeran joshi 37807fe05dSsameeran joshi# The PROJECT_NUMBER tag can be used to enter a project or revision number. This 38807fe05dSsameeran joshi# could be handy for archiving the generated documentation or if some version 39807fe05dSsameeran joshi# control system is used. 40807fe05dSsameeran joshi 41807fe05dSsameeran joshiPROJECT_NUMBER = 42807fe05dSsameeran joshi 43807fe05dSsameeran joshi# Using the PROJECT_BRIEF tag one can provide an optional one line description 44807fe05dSsameeran joshi# for a project that appears at the top of each page and should give viewer a 45807fe05dSsameeran joshi# quick idea about the purpose of the project. Keep the description short. 46807fe05dSsameeran joshi 47807fe05dSsameeran joshiPROJECT_BRIEF = 48807fe05dSsameeran joshi 49807fe05dSsameeran joshi# With the PROJECT_LOGO tag one can specify an logo or icon that is included in 50807fe05dSsameeran joshi# the documentation. The maximum height of the logo should not exceed 55 pixels 51807fe05dSsameeran joshi# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo 52807fe05dSsameeran joshi# to the output directory. 53807fe05dSsameeran joshi 54807fe05dSsameeran joshiPROJECT_LOGO = 55807fe05dSsameeran joshi 56807fe05dSsameeran joshi# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path 57807fe05dSsameeran joshi# into which the generated documentation will be written. If a relative path is 58807fe05dSsameeran joshi# entered, it will be relative to the location where doxygen was started. If 59807fe05dSsameeran joshi# left blank the current directory will be used. 60807fe05dSsameeran joshi 61807fe05dSsameeran joshiOUTPUT_DIRECTORY = @abs_top_builddir@/doxygen/ 62807fe05dSsameeran joshi 63807fe05dSsameeran joshi# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- 64807fe05dSsameeran joshi# directories (in 2 levels) under the output directory of each output format and 65807fe05dSsameeran joshi# will distribute the generated files over these directories. Enabling this 66807fe05dSsameeran joshi# option can be useful when feeding doxygen a huge amount of source files, where 67807fe05dSsameeran joshi# putting all generated files in the same directory would otherwise causes 68807fe05dSsameeran joshi# performance problems for the file system. 69807fe05dSsameeran joshi# The default value is: NO. 70807fe05dSsameeran joshi 71807fe05dSsameeran joshiCREATE_SUBDIRS = NO 72807fe05dSsameeran joshi 73807fe05dSsameeran joshi# The OUTPUT_LANGUAGE tag is used to specify the language in which all 74807fe05dSsameeran joshi# documentation generated by doxygen is written. Doxygen will use this 75807fe05dSsameeran joshi# information to generate all constant output in the proper language. 76807fe05dSsameeran joshi# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, 77807fe05dSsameeran joshi# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), 78807fe05dSsameeran joshi# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, 79807fe05dSsameeran joshi# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), 80807fe05dSsameeran joshi# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, 81807fe05dSsameeran joshi# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, 82807fe05dSsameeran joshi# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, 83807fe05dSsameeran joshi# Ukrainian and Vietnamese. 84807fe05dSsameeran joshi# The default value is: English. 85807fe05dSsameeran joshi 86807fe05dSsameeran joshiOUTPUT_LANGUAGE = English 87807fe05dSsameeran joshi 88807fe05dSsameeran joshi# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member 89807fe05dSsameeran joshi# descriptions after the members that are listed in the file and class 90807fe05dSsameeran joshi# documentation (similar to Javadoc). Set to NO to disable this. 91807fe05dSsameeran joshi# The default value is: YES. 92807fe05dSsameeran joshi 93807fe05dSsameeran joshiBRIEF_MEMBER_DESC = YES 94807fe05dSsameeran joshi 95807fe05dSsameeran joshi# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief 96807fe05dSsameeran joshi# description of a member or function before the detailed description 97807fe05dSsameeran joshi# 98807fe05dSsameeran joshi# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 99807fe05dSsameeran joshi# brief descriptions will be completely suppressed. 100807fe05dSsameeran joshi# The default value is: YES. 101807fe05dSsameeran joshi 102807fe05dSsameeran joshiREPEAT_BRIEF = YES 103807fe05dSsameeran joshi 104807fe05dSsameeran joshi# This tag implements a quasi-intelligent brief description abbreviator that is 105807fe05dSsameeran joshi# used to form the text in various listings. Each string in this list, if found 106807fe05dSsameeran joshi# as the leading text of the brief description, will be stripped from the text 107807fe05dSsameeran joshi# and the result, after processing the whole list, is used as the annotated 108807fe05dSsameeran joshi# text. Otherwise, the brief description is used as-is. If left blank, the 109807fe05dSsameeran joshi# following values are used ($name is automatically replaced with the name of 110807fe05dSsameeran joshi# the entity):The $name class, The $name widget, The $name file, is, provides, 111807fe05dSsameeran joshi# specifies, contains, represents, a, an and the. 112807fe05dSsameeran joshi 113807fe05dSsameeran joshiABBREVIATE_BRIEF = 114807fe05dSsameeran joshi 115807fe05dSsameeran joshi# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 116807fe05dSsameeran joshi# doxygen will generate a detailed section even if there is only a brief 117807fe05dSsameeran joshi# description. 118807fe05dSsameeran joshi# The default value is: NO. 119807fe05dSsameeran joshi 120807fe05dSsameeran joshiALWAYS_DETAILED_SEC = NO 121807fe05dSsameeran joshi 122807fe05dSsameeran joshi# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 123807fe05dSsameeran joshi# inherited members of a class in the documentation of that class as if those 124807fe05dSsameeran joshi# members were ordinary class members. Constructors, destructors and assignment 125807fe05dSsameeran joshi# operators of the base classes will not be shown. 126807fe05dSsameeran joshi# The default value is: NO. 127807fe05dSsameeran joshi 128807fe05dSsameeran joshiINLINE_INHERITED_MEMB = NO 129807fe05dSsameeran joshi 130807fe05dSsameeran joshi# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path 131807fe05dSsameeran joshi# before files name in the file list and in the header files. If set to NO the 132807fe05dSsameeran joshi# shortest path that makes the file name unique will be used 133807fe05dSsameeran joshi# The default value is: YES. 134807fe05dSsameeran joshi 135807fe05dSsameeran joshiFULL_PATH_NAMES = YES 136807fe05dSsameeran joshi 137807fe05dSsameeran joshi# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. 138807fe05dSsameeran joshi# Stripping is only done if one of the specified strings matches the left-hand 139807fe05dSsameeran joshi# part of the path. The tag can be used to show relative paths in the file list. 140807fe05dSsameeran joshi# If left blank the directory from which doxygen is run is used as the path to 141807fe05dSsameeran joshi# strip. 142807fe05dSsameeran joshi# 143807fe05dSsameeran joshi# Note that you can specify absolute paths here, but also relative paths, which 144807fe05dSsameeran joshi# will be relative from the directory where doxygen is started. 145807fe05dSsameeran joshi# This tag requires that the tag FULL_PATH_NAMES is set to YES. 146807fe05dSsameeran joshi 147807fe05dSsameeran joshiSTRIP_FROM_PATH = @abs_top_srcdir@/.. 148807fe05dSsameeran joshi 149807fe05dSsameeran joshi# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the 150807fe05dSsameeran joshi# path mentioned in the documentation of a class, which tells the reader which 151807fe05dSsameeran joshi# header file to include in order to use a class. If left blank only the name of 152807fe05dSsameeran joshi# the header file containing the class definition is used. Otherwise one should 153807fe05dSsameeran joshi# specify the list of include paths that are normally passed to the compiler 154807fe05dSsameeran joshi# using the -I flag. 155807fe05dSsameeran joshi 156807fe05dSsameeran joshiSTRIP_FROM_INC_PATH = @abs_top_srcdir@/../include 157807fe05dSsameeran joshiSTRIP_FROM_INC_PATH += @abs_top_srcdir@/../lib 158807fe05dSsameeran joshiSTRIP_FROM_INC_PATH += @abs_top_srcdir@/../runtime 159807fe05dSsameeran joshi 160807fe05dSsameeran joshi# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but 161807fe05dSsameeran joshi# less readable) file names. This can be useful is your file systems doesn't 162807fe05dSsameeran joshi# support long names like on DOS, Mac, or CD-ROM. 163807fe05dSsameeran joshi# The default value is: NO. 164807fe05dSsameeran joshi 165807fe05dSsameeran joshiSHORT_NAMES = NO 166807fe05dSsameeran joshi 167807fe05dSsameeran joshi# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the 168807fe05dSsameeran joshi# first line (until the first dot) of a Javadoc-style comment as the brief 169807fe05dSsameeran joshi# description. If set to NO, the Javadoc-style will behave just like regular Qt- 170807fe05dSsameeran joshi# style comments (thus requiring an explicit @brief command for a brief 171807fe05dSsameeran joshi# description.) 172807fe05dSsameeran joshi# The default value is: NO. 173807fe05dSsameeran joshi 174807fe05dSsameeran joshiJAVADOC_AUTOBRIEF = NO 175807fe05dSsameeran joshi 176807fe05dSsameeran joshi# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first 177807fe05dSsameeran joshi# line (until the first dot) of a Qt-style comment as the brief description. If 178807fe05dSsameeran joshi# set to NO, the Qt-style will behave just like regular Qt-style comments (thus 179807fe05dSsameeran joshi# requiring an explicit \brief command for a brief description.) 180807fe05dSsameeran joshi# The default value is: NO. 181807fe05dSsameeran joshi 182807fe05dSsameeran joshiQT_AUTOBRIEF = NO 183807fe05dSsameeran joshi 184807fe05dSsameeran joshi# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a 185807fe05dSsameeran joshi# multi-line C++ special comment block (i.e. a block of //! or /// comments) as 186807fe05dSsameeran joshi# a brief description. This used to be the default behavior. The new default is 187807fe05dSsameeran joshi# to treat a multi-line C++ comment block as a detailed description. Set this 188807fe05dSsameeran joshi# tag to YES if you prefer the old behavior instead. 189807fe05dSsameeran joshi# 190807fe05dSsameeran joshi# Note that setting this tag to YES also means that rational rose comments are 191807fe05dSsameeran joshi# not recognized any more. 192807fe05dSsameeran joshi# The default value is: NO. 193807fe05dSsameeran joshi 194807fe05dSsameeran joshiMULTILINE_CPP_IS_BRIEF = NO 195807fe05dSsameeran joshi 196807fe05dSsameeran joshi# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the 197807fe05dSsameeran joshi# documentation from any documented member that it re-implements. 198807fe05dSsameeran joshi# The default value is: YES. 199807fe05dSsameeran joshi 200807fe05dSsameeran joshiINHERIT_DOCS = YES 201807fe05dSsameeran joshi 202807fe05dSsameeran joshi# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a 203807fe05dSsameeran joshi# new page for each member. If set to NO, the documentation of a member will be 204807fe05dSsameeran joshi# part of the file/class/namespace that contains it. 205807fe05dSsameeran joshi# The default value is: NO. 206807fe05dSsameeran joshi 207807fe05dSsameeran joshiSEPARATE_MEMBER_PAGES = NO 208807fe05dSsameeran joshi 209807fe05dSsameeran joshi# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen 210807fe05dSsameeran joshi# uses this value to replace tabs by spaces in code fragments. 211807fe05dSsameeran joshi# Minimum value: 1, maximum value: 16, default value: 4. 212807fe05dSsameeran joshi 213807fe05dSsameeran joshiTAB_SIZE = 4 214807fe05dSsameeran joshi 215807fe05dSsameeran joshi# This tag can be used to specify a number of aliases that act as commands in 216807fe05dSsameeran joshi# the documentation. An alias has the form: 217807fe05dSsameeran joshi# name=value 218807fe05dSsameeran joshi# For example adding 219807fe05dSsameeran joshi# "sideeffect=@par Side Effects:\n" 220807fe05dSsameeran joshi# will allow you to put the command \sideeffect (or @sideeffect) in the 221807fe05dSsameeran joshi# documentation, which will result in a user-defined paragraph with heading 222807fe05dSsameeran joshi# "Side Effects:". You can put \n's in the value part of an alias to insert 223807fe05dSsameeran joshi# newlines. 224807fe05dSsameeran joshi 225807fe05dSsameeran joshiALIASES = 226807fe05dSsameeran joshi 227807fe05dSsameeran joshi# This tag can be used to specify a number of word-keyword mappings (TCL only). 228807fe05dSsameeran joshi# A mapping has the form "name=value". For example adding "class=itcl::class" 229807fe05dSsameeran joshi# will allow you to use the command class in the itcl::class meaning. 230807fe05dSsameeran joshi 231807fe05dSsameeran joshiTCL_SUBST = 232807fe05dSsameeran joshi 233807fe05dSsameeran joshi# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 234807fe05dSsameeran joshi# only. Doxygen will then generate output that is more tailored for C. For 235807fe05dSsameeran joshi# instance, some of the names that are used will be different. The list of all 236807fe05dSsameeran joshi# members will be omitted, etc. 237807fe05dSsameeran joshi# The default value is: NO. 238807fe05dSsameeran joshi 239807fe05dSsameeran joshiOPTIMIZE_OUTPUT_FOR_C = NO 240807fe05dSsameeran joshi 241807fe05dSsameeran joshi# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or 242807fe05dSsameeran joshi# Python sources only. Doxygen will then generate output that is more tailored 243807fe05dSsameeran joshi# for that language. For instance, namespaces will be presented as packages, 244807fe05dSsameeran joshi# qualified scopes will look different, etc. 245807fe05dSsameeran joshi# The default value is: NO. 246807fe05dSsameeran joshi 247807fe05dSsameeran joshiOPTIMIZE_OUTPUT_JAVA = NO 248807fe05dSsameeran joshi 249807fe05dSsameeran joshi# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran 250807fe05dSsameeran joshi# sources. Doxygen will then generate output that is tailored for Fortran. 251807fe05dSsameeran joshi# The default value is: NO. 252807fe05dSsameeran joshi 253807fe05dSsameeran joshiOPTIMIZE_FOR_FORTRAN = NO 254807fe05dSsameeran joshi 255807fe05dSsameeran joshi# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL 256807fe05dSsameeran joshi# sources. Doxygen will then generate output that is tailored for VHDL. 257807fe05dSsameeran joshi# The default value is: NO. 258807fe05dSsameeran joshi 259807fe05dSsameeran joshiOPTIMIZE_OUTPUT_VHDL = NO 260807fe05dSsameeran joshi 261807fe05dSsameeran joshi# Doxygen selects the parser to use depending on the extension of the files it 262807fe05dSsameeran joshi# parses. With this tag you can assign which parser to use for a given 263807fe05dSsameeran joshi# extension. Doxygen has a built-in mapping, but you can override or extend it 264807fe05dSsameeran joshi# using this tag. The format is ext=language, where ext is a file extension, and 265807fe05dSsameeran joshi# language is one of the parsers supported by doxygen: IDL, Java, Javascript, 266807fe05dSsameeran joshi# C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make 267807fe05dSsameeran joshi# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C 268807fe05dSsameeran joshi# (default is Fortran), use: inc=Fortran f=C. 269807fe05dSsameeran joshi# 270807fe05dSsameeran joshi# Note For files without extension you can use no_extension as a placeholder. 271807fe05dSsameeran joshi# 272807fe05dSsameeran joshi# Note that for custom extensions you also need to set FILE_PATTERNS otherwise 273807fe05dSsameeran joshi# the files are not read by doxygen. 274807fe05dSsameeran joshi 275807fe05dSsameeran joshiEXTENSION_MAPPING = 276807fe05dSsameeran joshi 277807fe05dSsameeran joshi# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments 278807fe05dSsameeran joshi# according to the Markdown format, which allows for more readable 279807fe05dSsameeran joshi# documentation. See http://daringfireball.net/projects/markdown/ for details. 280807fe05dSsameeran joshi# The output of markdown processing is further processed by doxygen, so you can 281807fe05dSsameeran joshi# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in 282807fe05dSsameeran joshi# case of backward compatibilities issues. 283807fe05dSsameeran joshi# The default value is: YES. 284807fe05dSsameeran joshi 285807fe05dSsameeran joshiMARKDOWN_SUPPORT = YES 286807fe05dSsameeran joshi 287807fe05dSsameeran joshi# When enabled doxygen tries to link words that correspond to documented 288807fe05dSsameeran joshi# classes, or namespaces to their corresponding documentation. Such a link can 289807fe05dSsameeran joshi# be prevented in individual cases by by putting a % sign in front of the word 290807fe05dSsameeran joshi# or globally by setting AUTOLINK_SUPPORT to NO. 291807fe05dSsameeran joshi# The default value is: YES. 292807fe05dSsameeran joshi 293807fe05dSsameeran joshiAUTOLINK_SUPPORT = YES 294807fe05dSsameeran joshi 295807fe05dSsameeran joshi# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 296807fe05dSsameeran joshi# to include (a tag file for) the STL sources as input, then you should set this 297807fe05dSsameeran joshi# tag to YES in order to let doxygen match functions declarations and 298807fe05dSsameeran joshi# definitions whose arguments contain STL classes (e.g. func(std::string); 299807fe05dSsameeran joshi# versus func(std::string) {}). This also make the inheritance and collaboration 300807fe05dSsameeran joshi# diagrams that involve STL classes more complete and accurate. 301807fe05dSsameeran joshi# The default value is: NO. 302807fe05dSsameeran joshi 303807fe05dSsameeran joshiBUILTIN_STL_SUPPORT = NO 304807fe05dSsameeran joshi 305807fe05dSsameeran joshi# If you use Microsoft's C++/CLI language, you should set this option to YES to 306807fe05dSsameeran joshi# enable parsing support. 307807fe05dSsameeran joshi# The default value is: NO. 308807fe05dSsameeran joshi 309807fe05dSsameeran joshiCPP_CLI_SUPPORT = NO 310807fe05dSsameeran joshi 311807fe05dSsameeran joshi# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: 312807fe05dSsameeran joshi# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen 313807fe05dSsameeran joshi# will parse them like normal C++ but will assume all classes use public instead 314807fe05dSsameeran joshi# of private inheritance when no explicit protection keyword is present. 315807fe05dSsameeran joshi# The default value is: NO. 316807fe05dSsameeran joshi 317807fe05dSsameeran joshiSIP_SUPPORT = NO 318807fe05dSsameeran joshi 319807fe05dSsameeran joshi# For Microsoft's IDL there are propget and propput attributes to indicate 320807fe05dSsameeran joshi# getter and setter methods for a property. Setting this option to YES will make 321807fe05dSsameeran joshi# doxygen to replace the get and set methods by a property in the documentation. 322807fe05dSsameeran joshi# This will only work if the methods are indeed getting or setting a simple 323807fe05dSsameeran joshi# type. If this is not the case, or you want to show the methods anyway, you 324807fe05dSsameeran joshi# should set this option to NO. 325807fe05dSsameeran joshi# The default value is: YES. 326807fe05dSsameeran joshi 327807fe05dSsameeran joshiIDL_PROPERTY_SUPPORT = YES 328807fe05dSsameeran joshi 329807fe05dSsameeran joshi# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 330807fe05dSsameeran joshi# tag is set to YES, then doxygen will reuse the documentation of the first 331807fe05dSsameeran joshi# member in the group (if any) for the other members of the group. By default 332807fe05dSsameeran joshi# all members of a group must be documented explicitly. 333807fe05dSsameeran joshi# The default value is: NO. 334807fe05dSsameeran joshi 335807fe05dSsameeran joshiDISTRIBUTE_GROUP_DOC = NO 336807fe05dSsameeran joshi 337807fe05dSsameeran joshi# Set the SUBGROUPING tag to YES to allow class member groups of the same type 338807fe05dSsameeran joshi# (for instance a group of public functions) to be put as a subgroup of that 339807fe05dSsameeran joshi# type (e.g. under the Public Functions section). Set it to NO to prevent 340807fe05dSsameeran joshi# subgrouping. Alternatively, this can be done per class using the 341807fe05dSsameeran joshi# \nosubgrouping command. 342807fe05dSsameeran joshi# The default value is: YES. 343807fe05dSsameeran joshi 344807fe05dSsameeran joshiSUBGROUPING = YES 345807fe05dSsameeran joshi 346807fe05dSsameeran joshi# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions 347807fe05dSsameeran joshi# are shown inside the group in which they are included (e.g. using \ingroup) 348807fe05dSsameeran joshi# instead of on a separate page (for HTML and Man pages) or section (for LaTeX 349807fe05dSsameeran joshi# and RTF). 350807fe05dSsameeran joshi# 351807fe05dSsameeran joshi# Note that this feature does not work in combination with 352807fe05dSsameeran joshi# SEPARATE_MEMBER_PAGES. 353807fe05dSsameeran joshi# The default value is: NO. 354807fe05dSsameeran joshi 355807fe05dSsameeran joshiINLINE_GROUPED_CLASSES = NO 356807fe05dSsameeran joshi 357807fe05dSsameeran joshi# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions 358807fe05dSsameeran joshi# with only public data fields or simple typedef fields will be shown inline in 359807fe05dSsameeran joshi# the documentation of the scope in which they are defined (i.e. file, 360807fe05dSsameeran joshi# namespace, or group documentation), provided this scope is documented. If set 361807fe05dSsameeran joshi# to NO, structs, classes, and unions are shown on a separate page (for HTML and 362807fe05dSsameeran joshi# Man pages) or section (for LaTeX and RTF). 363807fe05dSsameeran joshi# The default value is: NO. 364807fe05dSsameeran joshi 365807fe05dSsameeran joshiINLINE_SIMPLE_STRUCTS = NO 366807fe05dSsameeran joshi 367807fe05dSsameeran joshi# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or 368807fe05dSsameeran joshi# enum is documented as struct, union, or enum with the name of the typedef. So 369807fe05dSsameeran joshi# typedef struct TypeS {} TypeT, will appear in the documentation as a struct 370807fe05dSsameeran joshi# with name TypeT. When disabled the typedef will appear as a member of a file, 371807fe05dSsameeran joshi# namespace, or class. And the struct will be named TypeS. This can typically be 372807fe05dSsameeran joshi# useful for C code in case the coding convention dictates that all compound 373807fe05dSsameeran joshi# types are typedef'ed and only the typedef is referenced, never the tag name. 374807fe05dSsameeran joshi# The default value is: NO. 375807fe05dSsameeran joshi 376807fe05dSsameeran joshiTYPEDEF_HIDES_STRUCT = NO 377807fe05dSsameeran joshi 378807fe05dSsameeran joshi# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 379807fe05dSsameeran joshi# cache is used to resolve symbols given their name and scope. Since this can be 380807fe05dSsameeran joshi# an expensive process and often the same symbol appears multiple times in the 381807fe05dSsameeran joshi# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small 382807fe05dSsameeran joshi# doxygen will become slower. If the cache is too large, memory is wasted. The 383807fe05dSsameeran joshi# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range 384807fe05dSsameeran joshi# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 385807fe05dSsameeran joshi# symbols. At the end of a run doxygen will report the cache usage and suggest 386807fe05dSsameeran joshi# the optimal cache size from a speed point of view. 387807fe05dSsameeran joshi# Minimum value: 0, maximum value: 9, default value: 0. 388807fe05dSsameeran joshi 389807fe05dSsameeran joshiLOOKUP_CACHE_SIZE = 0 390807fe05dSsameeran joshi 391807fe05dSsameeran joshi#--------------------------------------------------------------------------- 392807fe05dSsameeran joshi# Build related configuration options 393807fe05dSsameeran joshi#--------------------------------------------------------------------------- 394807fe05dSsameeran joshi 395807fe05dSsameeran joshi# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 396807fe05dSsameeran joshi# documentation are documented, even if no documentation was available. Private 397807fe05dSsameeran joshi# class members and static file members will be hidden unless the 398807fe05dSsameeran joshi# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. 399807fe05dSsameeran joshi# Note: This will also disable the warnings about undocumented members that are 400807fe05dSsameeran joshi# normally produced when WARNINGS is set to YES. 401807fe05dSsameeran joshi# The default value is: NO. 402807fe05dSsameeran joshi 403807fe05dSsameeran joshiEXTRACT_ALL = NO 404807fe05dSsameeran joshi 405807fe05dSsameeran joshi# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will 406807fe05dSsameeran joshi# be included in the documentation. 407807fe05dSsameeran joshi# The default value is: NO. 408807fe05dSsameeran joshi 409807fe05dSsameeran joshiEXTRACT_PRIVATE = NO 410807fe05dSsameeran joshi 411807fe05dSsameeran joshi# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal 412807fe05dSsameeran joshi# scope will be included in the documentation. 413807fe05dSsameeran joshi# The default value is: NO. 414807fe05dSsameeran joshi 415807fe05dSsameeran joshiEXTRACT_PACKAGE = NO 416807fe05dSsameeran joshi 417807fe05dSsameeran joshi# If the EXTRACT_STATIC tag is set to YES all static members of a file will be 418807fe05dSsameeran joshi# included in the documentation. 419807fe05dSsameeran joshi# The default value is: NO. 420807fe05dSsameeran joshi 421807fe05dSsameeran joshiEXTRACT_STATIC = NO 422807fe05dSsameeran joshi 423807fe05dSsameeran joshi# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined 424807fe05dSsameeran joshi# locally in source files will be included in the documentation. If set to NO 425807fe05dSsameeran joshi# only classes defined in header files are included. Does not have any effect 426807fe05dSsameeran joshi# for Java sources. 427807fe05dSsameeran joshi# The default value is: YES. 428807fe05dSsameeran joshi 429807fe05dSsameeran joshiEXTRACT_LOCAL_CLASSES = YES 430807fe05dSsameeran joshi 431807fe05dSsameeran joshi# This flag is only useful for Objective-C code. When set to YES local methods, 432807fe05dSsameeran joshi# which are defined in the implementation section but not in the interface are 433807fe05dSsameeran joshi# included in the documentation. If set to NO only methods in the interface are 434807fe05dSsameeran joshi# included. 435807fe05dSsameeran joshi# The default value is: NO. 436807fe05dSsameeran joshi 437807fe05dSsameeran joshiEXTRACT_LOCAL_METHODS = NO 438807fe05dSsameeran joshi 439807fe05dSsameeran joshi# If this flag is set to YES, the members of anonymous namespaces will be 440807fe05dSsameeran joshi# extracted and appear in the documentation as a namespace called 441807fe05dSsameeran joshi# 'anonymous_namespace{file}', where file will be replaced with the base name of 442807fe05dSsameeran joshi# the file that contains the anonymous namespace. By default anonymous namespace 443807fe05dSsameeran joshi# are hidden. 444807fe05dSsameeran joshi# The default value is: NO. 445807fe05dSsameeran joshi 446807fe05dSsameeran joshiEXTRACT_ANON_NSPACES = NO 447807fe05dSsameeran joshi 448807fe05dSsameeran joshi# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all 449807fe05dSsameeran joshi# undocumented members inside documented classes or files. If set to NO these 450807fe05dSsameeran joshi# members will be included in the various overviews, but no documentation 451807fe05dSsameeran joshi# section is generated. This option has no effect if EXTRACT_ALL is enabled. 452807fe05dSsameeran joshi# The default value is: NO. 453807fe05dSsameeran joshi 454807fe05dSsameeran joshiHIDE_UNDOC_MEMBERS = NO 455807fe05dSsameeran joshi 456807fe05dSsameeran joshi# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all 457807fe05dSsameeran joshi# undocumented classes that are normally visible in the class hierarchy. If set 458807fe05dSsameeran joshi# to NO these classes will be included in the various overviews. This option has 459807fe05dSsameeran joshi# no effect if EXTRACT_ALL is enabled. 460807fe05dSsameeran joshi# The default value is: NO. 461807fe05dSsameeran joshi 462807fe05dSsameeran joshiHIDE_UNDOC_CLASSES = NO 463807fe05dSsameeran joshi 464807fe05dSsameeran joshi# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend 465807fe05dSsameeran joshi# (class|struct|union) declarations. If set to NO these declarations will be 466807fe05dSsameeran joshi# included in the documentation. 467807fe05dSsameeran joshi# The default value is: NO. 468807fe05dSsameeran joshi 469807fe05dSsameeran joshiHIDE_FRIEND_COMPOUNDS = NO 470807fe05dSsameeran joshi 471807fe05dSsameeran joshi# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any 472807fe05dSsameeran joshi# documentation blocks found inside the body of a function. If set to NO these 473807fe05dSsameeran joshi# blocks will be appended to the function's detailed documentation block. 474807fe05dSsameeran joshi# The default value is: NO. 475807fe05dSsameeran joshi 476807fe05dSsameeran joshiHIDE_IN_BODY_DOCS = NO 477807fe05dSsameeran joshi 478807fe05dSsameeran joshi# The INTERNAL_DOCS tag determines if documentation that is typed after a 479807fe05dSsameeran joshi# \internal command is included. If the tag is set to NO then the documentation 480807fe05dSsameeran joshi# will be excluded. Set it to YES to include the internal documentation. 481807fe05dSsameeran joshi# The default value is: NO. 482807fe05dSsameeran joshi 483807fe05dSsameeran joshiINTERNAL_DOCS = NO 484807fe05dSsameeran joshi 485807fe05dSsameeran joshi# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file 486807fe05dSsameeran joshi# names in lower-case letters. If set to YES upper-case letters are also 487807fe05dSsameeran joshi# allowed. This is useful if you have classes or files whose names only differ 488807fe05dSsameeran joshi# in case and if your file system supports case sensitive file names. Windows 489807fe05dSsameeran joshi# and Mac users are advised to set this option to NO. 490807fe05dSsameeran joshi# The default value is: system dependent. 491807fe05dSsameeran joshi 492807fe05dSsameeran joshiCASE_SENSE_NAMES = YES 493807fe05dSsameeran joshi 494807fe05dSsameeran joshi# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with 495807fe05dSsameeran joshi# their full class and namespace scopes in the documentation. If set to YES the 496807fe05dSsameeran joshi# scope will be hidden. 497807fe05dSsameeran joshi# The default value is: NO. 498807fe05dSsameeran joshi 499807fe05dSsameeran joshiHIDE_SCOPE_NAMES = NO 500807fe05dSsameeran joshi 501807fe05dSsameeran joshi# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of 502807fe05dSsameeran joshi# the files that are included by a file in the documentation of that file. 503807fe05dSsameeran joshi# The default value is: YES. 504807fe05dSsameeran joshi 505807fe05dSsameeran joshiSHOW_INCLUDE_FILES = YES 506807fe05dSsameeran joshi 507807fe05dSsameeran joshi# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each 508807fe05dSsameeran joshi# grouped member an include statement to the documentation, telling the reader 509807fe05dSsameeran joshi# which file to include in order to use the member. 510807fe05dSsameeran joshi# The default value is: NO. 511807fe05dSsameeran joshi 512807fe05dSsameeran joshiSHOW_GROUPED_MEMB_INC = NO 513807fe05dSsameeran joshi 514807fe05dSsameeran joshi# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include 515807fe05dSsameeran joshi# files with double quotes in the documentation rather than with sharp brackets. 516807fe05dSsameeran joshi# The default value is: NO. 517807fe05dSsameeran joshi 518807fe05dSsameeran joshiFORCE_LOCAL_INCLUDES = NO 519807fe05dSsameeran joshi 520807fe05dSsameeran joshi# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the 521807fe05dSsameeran joshi# documentation for inline members. 522807fe05dSsameeran joshi# The default value is: YES. 523807fe05dSsameeran joshi 524807fe05dSsameeran joshiINLINE_INFO = YES 525807fe05dSsameeran joshi 526807fe05dSsameeran joshi# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the 527807fe05dSsameeran joshi# (detailed) documentation of file and class members alphabetically by member 528807fe05dSsameeran joshi# name. If set to NO the members will appear in declaration order. 529807fe05dSsameeran joshi# The default value is: YES. 530807fe05dSsameeran joshi 531807fe05dSsameeran joshiSORT_MEMBER_DOCS = YES 532807fe05dSsameeran joshi 533807fe05dSsameeran joshi# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief 534807fe05dSsameeran joshi# descriptions of file, namespace and class members alphabetically by member 535807fe05dSsameeran joshi# name. If set to NO the members will appear in declaration order. Note that 536807fe05dSsameeran joshi# this will also influence the order of the classes in the class list. 537807fe05dSsameeran joshi# The default value is: NO. 538807fe05dSsameeran joshi 539807fe05dSsameeran joshiSORT_BRIEF_DOCS = NO 540807fe05dSsameeran joshi 541807fe05dSsameeran joshi# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the 542807fe05dSsameeran joshi# (brief and detailed) documentation of class members so that constructors and 543807fe05dSsameeran joshi# destructors are listed first. If set to NO the constructors will appear in the 544807fe05dSsameeran joshi# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. 545807fe05dSsameeran joshi# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief 546807fe05dSsameeran joshi# member documentation. 547807fe05dSsameeran joshi# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting 548807fe05dSsameeran joshi# detailed member documentation. 549807fe05dSsameeran joshi# The default value is: NO. 550807fe05dSsameeran joshi 551807fe05dSsameeran joshiSORT_MEMBERS_CTORS_1ST = NO 552807fe05dSsameeran joshi 553807fe05dSsameeran joshi# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy 554807fe05dSsameeran joshi# of group names into alphabetical order. If set to NO the group names will 555807fe05dSsameeran joshi# appear in their defined order. 556807fe05dSsameeran joshi# The default value is: NO. 557807fe05dSsameeran joshi 558807fe05dSsameeran joshiSORT_GROUP_NAMES = NO 559807fe05dSsameeran joshi 560807fe05dSsameeran joshi# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by 561807fe05dSsameeran joshi# fully-qualified names, including namespaces. If set to NO, the class list will 562807fe05dSsameeran joshi# be sorted only by class name, not including the namespace part. 563807fe05dSsameeran joshi# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 564807fe05dSsameeran joshi# Note: This option applies only to the class list, not to the alphabetical 565807fe05dSsameeran joshi# list. 566807fe05dSsameeran joshi# The default value is: NO. 567807fe05dSsameeran joshi 568807fe05dSsameeran joshiSORT_BY_SCOPE_NAME = NO 569807fe05dSsameeran joshi 570807fe05dSsameeran joshi# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper 571807fe05dSsameeran joshi# type resolution of all parameters of a function it will reject a match between 572807fe05dSsameeran joshi# the prototype and the implementation of a member function even if there is 573807fe05dSsameeran joshi# only one candidate or it is obvious which candidate to choose by doing a 574807fe05dSsameeran joshi# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still 575807fe05dSsameeran joshi# accept a match between prototype and implementation in such cases. 576807fe05dSsameeran joshi# The default value is: NO. 577807fe05dSsameeran joshi 578807fe05dSsameeran joshiSTRICT_PROTO_MATCHING = NO 579807fe05dSsameeran joshi 580807fe05dSsameeran joshi# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the 581807fe05dSsameeran joshi# todo list. This list is created by putting \todo commands in the 582807fe05dSsameeran joshi# documentation. 583807fe05dSsameeran joshi# The default value is: YES. 584807fe05dSsameeran joshi 585807fe05dSsameeran joshiGENERATE_TODOLIST = YES 586807fe05dSsameeran joshi 587807fe05dSsameeran joshi# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the 588807fe05dSsameeran joshi# test list. This list is created by putting \test commands in the 589807fe05dSsameeran joshi# documentation. 590807fe05dSsameeran joshi# The default value is: YES. 591807fe05dSsameeran joshi 592807fe05dSsameeran joshiGENERATE_TESTLIST = YES 593807fe05dSsameeran joshi 594807fe05dSsameeran joshi# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug 595807fe05dSsameeran joshi# list. This list is created by putting \bug commands in the documentation. 596807fe05dSsameeran joshi# The default value is: YES. 597807fe05dSsameeran joshi 598807fe05dSsameeran joshiGENERATE_BUGLIST = YES 599807fe05dSsameeran joshi 600807fe05dSsameeran joshi# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) 601807fe05dSsameeran joshi# the deprecated list. This list is created by putting \deprecated commands in 602807fe05dSsameeran joshi# the documentation. 603807fe05dSsameeran joshi# The default value is: YES. 604807fe05dSsameeran joshi 605807fe05dSsameeran joshiGENERATE_DEPRECATEDLIST= YES 606807fe05dSsameeran joshi 607807fe05dSsameeran joshi# The ENABLED_SECTIONS tag can be used to enable conditional documentation 608807fe05dSsameeran joshi# sections, marked by \if <section_label> ... \endif and \cond <section_label> 609807fe05dSsameeran joshi# ... \endcond blocks. 610807fe05dSsameeran joshi 611807fe05dSsameeran joshiENABLED_SECTIONS = 612807fe05dSsameeran joshi 613807fe05dSsameeran joshi# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the 614807fe05dSsameeran joshi# initial value of a variable or macro / define can have for it to appear in the 615807fe05dSsameeran joshi# documentation. If the initializer consists of more lines than specified here 616807fe05dSsameeran joshi# it will be hidden. Use a value of 0 to hide initializers completely. The 617807fe05dSsameeran joshi# appearance of the value of individual variables and macros / defines can be 618807fe05dSsameeran joshi# controlled using \showinitializer or \hideinitializer command in the 619807fe05dSsameeran joshi# documentation regardless of this setting. 620807fe05dSsameeran joshi# Minimum value: 0, maximum value: 10000, default value: 30. 621807fe05dSsameeran joshi 622807fe05dSsameeran joshiMAX_INITIALIZER_LINES = 30 623807fe05dSsameeran joshi 624807fe05dSsameeran joshi# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at 625807fe05dSsameeran joshi# the bottom of the documentation of classes and structs. If set to YES the list 626807fe05dSsameeran joshi# will mention the files that were used to generate the documentation. 627807fe05dSsameeran joshi# The default value is: YES. 628807fe05dSsameeran joshi 629807fe05dSsameeran joshiSHOW_USED_FILES = YES 630807fe05dSsameeran joshi 631807fe05dSsameeran joshi# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This 632807fe05dSsameeran joshi# will remove the Files entry from the Quick Index and from the Folder Tree View 633807fe05dSsameeran joshi# (if specified). 634807fe05dSsameeran joshi# The default value is: YES. 635807fe05dSsameeran joshi 636807fe05dSsameeran joshiSHOW_FILES = YES 637807fe05dSsameeran joshi 638807fe05dSsameeran joshi# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces 639807fe05dSsameeran joshi# page. This will remove the Namespaces entry from the Quick Index and from the 640807fe05dSsameeran joshi# Folder Tree View (if specified). 641807fe05dSsameeran joshi# The default value is: YES. 642807fe05dSsameeran joshi 643807fe05dSsameeran joshiSHOW_NAMESPACES = YES 644807fe05dSsameeran joshi 645807fe05dSsameeran joshi# The FILE_VERSION_FILTER tag can be used to specify a program or script that 646807fe05dSsameeran joshi# doxygen should invoke to get the current version for each file (typically from 647807fe05dSsameeran joshi# the version control system). Doxygen will invoke the program by executing (via 648807fe05dSsameeran joshi# popen()) the command command input-file, where command is the value of the 649807fe05dSsameeran joshi# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided 650807fe05dSsameeran joshi# by doxygen. Whatever the program writes to standard output is used as the file 651807fe05dSsameeran joshi# version. For an example see the documentation. 652807fe05dSsameeran joshi 653807fe05dSsameeran joshiFILE_VERSION_FILTER = 654807fe05dSsameeran joshi 655807fe05dSsameeran joshi# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed 656807fe05dSsameeran joshi# by doxygen. The layout file controls the global structure of the generated 657807fe05dSsameeran joshi# output files in an output format independent way. To create the layout file 658807fe05dSsameeran joshi# that represents doxygen's defaults, run doxygen with the -l option. You can 659807fe05dSsameeran joshi# optionally specify a file name after the option, if omitted DoxygenLayout.xml 660807fe05dSsameeran joshi# will be used as the name of the layout file. 661807fe05dSsameeran joshi# 662807fe05dSsameeran joshi# Note that if you run doxygen from a directory containing a file called 663807fe05dSsameeran joshi# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE 664807fe05dSsameeran joshi# tag is left empty. 665807fe05dSsameeran joshi 666807fe05dSsameeran joshiLAYOUT_FILE = 667807fe05dSsameeran joshi 668807fe05dSsameeran joshi# The CITE_BIB_FILES tag can be used to specify one or more bib files containing 669807fe05dSsameeran joshi# the reference definitions. This must be a list of .bib files. The .bib 670807fe05dSsameeran joshi# extension is automatically appended if omitted. This requires the bibtex tool 671807fe05dSsameeran joshi# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. 672807fe05dSsameeran joshi# For LaTeX the style of the bibliography can be controlled using 673807fe05dSsameeran joshi# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the 674807fe05dSsameeran joshi# search path. Do not use file names with spaces, bibtex cannot handle them. See 675807fe05dSsameeran joshi# also \cite for info how to create references. 676807fe05dSsameeran joshi 677807fe05dSsameeran joshiCITE_BIB_FILES = 678807fe05dSsameeran joshi 679807fe05dSsameeran joshi#--------------------------------------------------------------------------- 680807fe05dSsameeran joshi# Configuration options related to warning and progress messages 681807fe05dSsameeran joshi#--------------------------------------------------------------------------- 682807fe05dSsameeran joshi 683807fe05dSsameeran joshi# The QUIET tag can be used to turn on/off the messages that are generated to 684807fe05dSsameeran joshi# standard output by doxygen. If QUIET is set to YES this implies that the 685807fe05dSsameeran joshi# messages are off. 686807fe05dSsameeran joshi# The default value is: NO. 687807fe05dSsameeran joshi 688807fe05dSsameeran joshiQUIET = NO 689807fe05dSsameeran joshi 690807fe05dSsameeran joshi# The WARNINGS tag can be used to turn on/off the warning messages that are 691807fe05dSsameeran joshi# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES 692807fe05dSsameeran joshi# this implies that the warnings are on. 693807fe05dSsameeran joshi# 694807fe05dSsameeran joshi# Tip: Turn warnings on while writing the documentation. 695807fe05dSsameeran joshi# The default value is: YES. 696807fe05dSsameeran joshi 697807fe05dSsameeran joshiWARNINGS = YES 698807fe05dSsameeran joshi 699807fe05dSsameeran joshi# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate 700807fe05dSsameeran joshi# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag 701807fe05dSsameeran joshi# will automatically be disabled. 702807fe05dSsameeran joshi# The default value is: YES. 703807fe05dSsameeran joshi 704807fe05dSsameeran joshiWARN_IF_UNDOCUMENTED = YES 705807fe05dSsameeran joshi 706807fe05dSsameeran joshi# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for 707807fe05dSsameeran joshi# potential errors in the documentation, such as not documenting some parameters 708807fe05dSsameeran joshi# in a documented function, or documenting parameters that don't exist or using 709807fe05dSsameeran joshi# markup commands wrongly. 710807fe05dSsameeran joshi# The default value is: YES. 711807fe05dSsameeran joshi 712807fe05dSsameeran joshiWARN_IF_DOC_ERROR = YES 713807fe05dSsameeran joshi 714807fe05dSsameeran joshi# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that 715807fe05dSsameeran joshi# are documented, but have no documentation for their parameters or return 716807fe05dSsameeran joshi# value. If set to NO doxygen will only warn about wrong or incomplete parameter 717807fe05dSsameeran joshi# documentation, but not about the absence of documentation. 718807fe05dSsameeran joshi# The default value is: NO. 719807fe05dSsameeran joshi 720807fe05dSsameeran joshiWARN_NO_PARAMDOC = NO 721807fe05dSsameeran joshi 722807fe05dSsameeran joshi# The WARN_FORMAT tag determines the format of the warning messages that doxygen 723807fe05dSsameeran joshi# can produce. The string should contain the $file, $line, and $text tags, which 724807fe05dSsameeran joshi# will be replaced by the file and line number from which the warning originated 725807fe05dSsameeran joshi# and the warning text. Optionally the format may contain $version, which will 726807fe05dSsameeran joshi# be replaced by the version of the file (if it could be obtained via 727807fe05dSsameeran joshi# FILE_VERSION_FILTER) 728807fe05dSsameeran joshi# The default value is: $file:$line: $text. 729807fe05dSsameeran joshi 730807fe05dSsameeran joshiWARN_FORMAT = "$file:$line: $text" 731807fe05dSsameeran joshi 732807fe05dSsameeran joshi# The WARN_LOGFILE tag can be used to specify a file to which warning and error 733807fe05dSsameeran joshi# messages should be written. If left blank the output is written to standard 734807fe05dSsameeran joshi# error (stderr). 735807fe05dSsameeran joshi 736807fe05dSsameeran joshiWARN_LOGFILE = 737807fe05dSsameeran joshi 738807fe05dSsameeran joshi#--------------------------------------------------------------------------- 739807fe05dSsameeran joshi# Configuration options related to the input files 740807fe05dSsameeran joshi#--------------------------------------------------------------------------- 741807fe05dSsameeran joshi 742807fe05dSsameeran joshi# The INPUT tag is used to specify the files and/or directories that contain 743807fe05dSsameeran joshi# documented source files. You may enter file names like myfile.cpp or 744807fe05dSsameeran joshi# directories like /usr/src/myproject. Separate the files or directories with 745807fe05dSsameeran joshi# spaces. 746807fe05dSsameeran joshi# Note: If this tag is empty the current directory is searched. 747807fe05dSsameeran joshi 748807fe05dSsameeran joshiINPUT = @abs_top_srcdir@/../include/ \ 749807fe05dSsameeran joshi @abs_top_srcdir@/../lib/ \ 750807fe05dSsameeran joshi @abs_top_srcdir@/../runtime/ \ 751807fe05dSsameeran joshi @abs_top_srcdir@/doxygen-mainpage.dox 752807fe05dSsameeran joshi 753807fe05dSsameeran joshi# This tag can be used to specify the character encoding of the source files 754807fe05dSsameeran joshi# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses 755807fe05dSsameeran joshi# libiconv (or the iconv built into libc) for the transcoding. See the libiconv 756807fe05dSsameeran joshi# documentation (see: http://www.gnu.org/software/libiconv) for the list of 757807fe05dSsameeran joshi# possible encodings. 758807fe05dSsameeran joshi# The default value is: UTF-8. 759807fe05dSsameeran joshi 760807fe05dSsameeran joshiINPUT_ENCODING = UTF-8 761807fe05dSsameeran joshi 762807fe05dSsameeran joshi# If the value of the INPUT tag contains directories, you can use the 763807fe05dSsameeran joshi# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and 764807fe05dSsameeran joshi# *.h) to filter out the source-files in the directories. If left blank the 765807fe05dSsameeran joshi# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, 766807fe05dSsameeran joshi# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, 767807fe05dSsameeran joshi# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, 768807fe05dSsameeran joshi# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, 769807fe05dSsameeran joshi# *.qsf, *.as and *.js. 770807fe05dSsameeran joshi 771807fe05dSsameeran joshiFILE_PATTERNS = 772807fe05dSsameeran joshi 773807fe05dSsameeran joshi# The RECURSIVE tag can be used to specify whether or not subdirectories should 774807fe05dSsameeran joshi# be searched for input files as well. 775807fe05dSsameeran joshi# The default value is: NO. 776807fe05dSsameeran joshi 777807fe05dSsameeran joshiRECURSIVE = YES 778807fe05dSsameeran joshi 779807fe05dSsameeran joshi# The EXCLUDE tag can be used to specify files and/or directories that should be 780807fe05dSsameeran joshi# excluded from the INPUT source files. This way you can easily exclude a 781807fe05dSsameeran joshi# subdirectory from a directory tree whose root is specified with the INPUT tag. 782807fe05dSsameeran joshi# 783807fe05dSsameeran joshi# Note that relative paths are relative to the directory from which doxygen is 784807fe05dSsameeran joshi# run. 785807fe05dSsameeran joshi 786807fe05dSsameeran joshiEXCLUDE = 787807fe05dSsameeran joshi 788807fe05dSsameeran joshi# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or 789807fe05dSsameeran joshi# directories that are symbolic links (a Unix file system feature) are excluded 790807fe05dSsameeran joshi# from the input. 791807fe05dSsameeran joshi# The default value is: NO. 792807fe05dSsameeran joshi 793807fe05dSsameeran joshiEXCLUDE_SYMLINKS = NO 794807fe05dSsameeran joshi 795807fe05dSsameeran joshi# If the value of the INPUT tag contains directories, you can use the 796807fe05dSsameeran joshi# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 797807fe05dSsameeran joshi# certain files from those directories. 798807fe05dSsameeran joshi# 799807fe05dSsameeran joshi# Note that the wildcards are matched against the file with absolute path, so to 800807fe05dSsameeran joshi# exclude all test directories for example use the pattern */test/* 801807fe05dSsameeran joshi 802807fe05dSsameeran joshiEXCLUDE_PATTERNS = 803807fe05dSsameeran joshi 804807fe05dSsameeran joshi# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 805807fe05dSsameeran joshi# (namespaces, classes, functions, etc.) that should be excluded from the 806807fe05dSsameeran joshi# output. The symbol name can be a fully qualified name, a word, or if the 807807fe05dSsameeran joshi# wildcard * is used, a substring. Examples: ANamespace, AClass, 808807fe05dSsameeran joshi# AClass::ANamespace, ANamespace::*Test 809807fe05dSsameeran joshi# 810807fe05dSsameeran joshi# Note that the wildcards are matched against the file with absolute path, so to 811807fe05dSsameeran joshi# exclude all test directories use the pattern */test/* 812807fe05dSsameeran joshi 813807fe05dSsameeran joshiEXCLUDE_SYMBOLS = 814807fe05dSsameeran joshi 815807fe05dSsameeran joshi# The EXAMPLE_PATH tag can be used to specify one or more files or directories 816807fe05dSsameeran joshi# that contain example code fragments that are included (see the \include 817807fe05dSsameeran joshi# command). 818807fe05dSsameeran joshi 819807fe05dSsameeran joshiEXAMPLE_PATH = 820807fe05dSsameeran joshi 821807fe05dSsameeran joshi# If the value of the EXAMPLE_PATH tag contains directories, you can use the 822807fe05dSsameeran joshi# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and 823807fe05dSsameeran joshi# *.h) to filter out the source-files in the directories. If left blank all 824807fe05dSsameeran joshi# files are included. 825807fe05dSsameeran joshi 826807fe05dSsameeran joshiEXAMPLE_PATTERNS = 827807fe05dSsameeran joshi 828807fe05dSsameeran joshi# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 829807fe05dSsameeran joshi# searched for input files to be used with the \include or \dontinclude commands 830807fe05dSsameeran joshi# irrespective of the value of the RECURSIVE tag. 831807fe05dSsameeran joshi# The default value is: NO. 832807fe05dSsameeran joshi 833807fe05dSsameeran joshiEXAMPLE_RECURSIVE = NO 834807fe05dSsameeran joshi 835807fe05dSsameeran joshi# The IMAGE_PATH tag can be used to specify one or more files or directories 836807fe05dSsameeran joshi# that contain images that are to be included in the documentation (see the 837807fe05dSsameeran joshi# \image command). 838807fe05dSsameeran joshi 839807fe05dSsameeran joshiIMAGE_PATH = 840807fe05dSsameeran joshi 841807fe05dSsameeran joshi# The INPUT_FILTER tag can be used to specify a program that doxygen should 842807fe05dSsameeran joshi# invoke to filter for each input file. Doxygen will invoke the filter program 843807fe05dSsameeran joshi# by executing (via popen()) the command: 844807fe05dSsameeran joshi# 845807fe05dSsameeran joshi# <filter> <input-file> 846807fe05dSsameeran joshi# 847807fe05dSsameeran joshi# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the 848807fe05dSsameeran joshi# name of an input file. Doxygen will then use the output that the filter 849807fe05dSsameeran joshi# program writes to standard output. If FILTER_PATTERNS is specified, this tag 850807fe05dSsameeran joshi# will be ignored. 851807fe05dSsameeran joshi# 852807fe05dSsameeran joshi# Note that the filter must not add or remove lines; it is applied before the 853807fe05dSsameeran joshi# code is scanned, but not when the output code is generated. If lines are added 854807fe05dSsameeran joshi# or removed, the anchors will not be placed correctly. 855807fe05dSsameeran joshi 856807fe05dSsameeran joshiINPUT_FILTER = 857807fe05dSsameeran joshi 858807fe05dSsameeran joshi# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 859807fe05dSsameeran joshi# basis. Doxygen will compare the file name with each pattern and apply the 860807fe05dSsameeran joshi# filter if there is a match. The filters are a list of the form: pattern=filter 861807fe05dSsameeran joshi# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how 862807fe05dSsameeran joshi# filters are used. If the FILTER_PATTERNS tag is empty or if none of the 863807fe05dSsameeran joshi# patterns match the file name, INPUT_FILTER is applied. 864807fe05dSsameeran joshi 865807fe05dSsameeran joshiFILTER_PATTERNS = 866807fe05dSsameeran joshi 867807fe05dSsameeran joshi# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 868807fe05dSsameeran joshi# INPUT_FILTER ) will also be used to filter the input files that are used for 869807fe05dSsameeran joshi# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). 870807fe05dSsameeran joshi# The default value is: NO. 871807fe05dSsameeran joshi 872807fe05dSsameeran joshiFILTER_SOURCE_FILES = NO 873807fe05dSsameeran joshi 874807fe05dSsameeran joshi# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file 875807fe05dSsameeran joshi# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and 876807fe05dSsameeran joshi# it is also possible to disable source filtering for a specific pattern using 877807fe05dSsameeran joshi# *.ext= (so without naming a filter). 878807fe05dSsameeran joshi# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. 879807fe05dSsameeran joshi 880807fe05dSsameeran joshiFILTER_SOURCE_PATTERNS = 881807fe05dSsameeran joshi 882807fe05dSsameeran joshi# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that 883807fe05dSsameeran joshi# is part of the input, its contents will be placed on the main page 884807fe05dSsameeran joshi# (index.html). This can be useful if you have a project on for instance GitHub 885807fe05dSsameeran joshi# and want to reuse the introduction page also for the doxygen output. 886807fe05dSsameeran joshi 887807fe05dSsameeran joshiUSE_MDFILE_AS_MAINPAGE = 888807fe05dSsameeran joshi 889807fe05dSsameeran joshi#--------------------------------------------------------------------------- 890807fe05dSsameeran joshi# Configuration options related to source browsing 891807fe05dSsameeran joshi#--------------------------------------------------------------------------- 892807fe05dSsameeran joshi 893807fe05dSsameeran joshi# If the SOURCE_BROWSER tag is set to YES then a list of source files will be 894807fe05dSsameeran joshi# generated. Documented entities will be cross-referenced with these sources. 895807fe05dSsameeran joshi# 896807fe05dSsameeran joshi# Note: To get rid of all source code in the generated output, make sure that 897807fe05dSsameeran joshi# also VERBATIM_HEADERS is set to NO. 898807fe05dSsameeran joshi# The default value is: NO. 899807fe05dSsameeran joshi 900807fe05dSsameeran joshiSOURCE_BROWSER = NO 901807fe05dSsameeran joshi 902807fe05dSsameeran joshi# Setting the INLINE_SOURCES tag to YES will include the body of functions, 903807fe05dSsameeran joshi# classes and enums directly into the documentation. 904807fe05dSsameeran joshi# The default value is: NO. 905807fe05dSsameeran joshi 906807fe05dSsameeran joshiINLINE_SOURCES = NO 907807fe05dSsameeran joshi 908807fe05dSsameeran joshi# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any 909807fe05dSsameeran joshi# special comment blocks from generated source code fragments. Normal C, C++ and 910807fe05dSsameeran joshi# Fortran comments will always remain visible. 911807fe05dSsameeran joshi# The default value is: YES. 912807fe05dSsameeran joshi 913807fe05dSsameeran joshiSTRIP_CODE_COMMENTS = YES 914807fe05dSsameeran joshi 915807fe05dSsameeran joshi# If the REFERENCED_BY_RELATION tag is set to YES then for each documented 916807fe05dSsameeran joshi# function all documented functions referencing it will be listed. 917807fe05dSsameeran joshi# The default value is: NO. 918807fe05dSsameeran joshi 919807fe05dSsameeran joshiREFERENCED_BY_RELATION = NO 920807fe05dSsameeran joshi 921807fe05dSsameeran joshi# If the REFERENCES_RELATION tag is set to YES then for each documented function 922807fe05dSsameeran joshi# all documented entities called/used by that function will be listed. 923807fe05dSsameeran joshi# The default value is: NO. 924807fe05dSsameeran joshi 925807fe05dSsameeran joshiREFERENCES_RELATION = NO 926807fe05dSsameeran joshi 927807fe05dSsameeran joshi# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set 928807fe05dSsameeran joshi# to YES, then the hyperlinks from functions in REFERENCES_RELATION and 929807fe05dSsameeran joshi# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will 930807fe05dSsameeran joshi# link to the documentation. 931807fe05dSsameeran joshi# The default value is: YES. 932807fe05dSsameeran joshi 933807fe05dSsameeran joshiREFERENCES_LINK_SOURCE = YES 934807fe05dSsameeran joshi 935807fe05dSsameeran joshi# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the 936807fe05dSsameeran joshi# source code will show a tooltip with additional information such as prototype, 937807fe05dSsameeran joshi# brief description and links to the definition and documentation. Since this 938807fe05dSsameeran joshi# will make the HTML file larger and loading of large files a bit slower, you 939807fe05dSsameeran joshi# can opt to disable this feature. 940807fe05dSsameeran joshi# The default value is: YES. 941807fe05dSsameeran joshi# This tag requires that the tag SOURCE_BROWSER is set to YES. 942807fe05dSsameeran joshi 943807fe05dSsameeran joshiSOURCE_TOOLTIPS = YES 944807fe05dSsameeran joshi 945807fe05dSsameeran joshi# If the USE_HTAGS tag is set to YES then the references to source code will 946807fe05dSsameeran joshi# point to the HTML generated by the htags(1) tool instead of doxygen built-in 947807fe05dSsameeran joshi# source browser. The htags tool is part of GNU's global source tagging system 948807fe05dSsameeran joshi# (see http://www.gnu.org/software/global/global.html). You will need version 949807fe05dSsameeran joshi# 4.8.6 or higher. 950807fe05dSsameeran joshi# 951807fe05dSsameeran joshi# To use it do the following: 952807fe05dSsameeran joshi# - Install the latest version of global 953807fe05dSsameeran joshi# - Enable SOURCE_BROWSER and USE_HTAGS in the config file 954807fe05dSsameeran joshi# - Make sure the INPUT points to the root of the source tree 955807fe05dSsameeran joshi# - Run doxygen as normal 956807fe05dSsameeran joshi# 957807fe05dSsameeran joshi# Doxygen will invoke htags (and that will in turn invoke gtags), so these 958807fe05dSsameeran joshi# tools must be available from the command line (i.e. in the search path). 959807fe05dSsameeran joshi# 960807fe05dSsameeran joshi# The result: instead of the source browser generated by doxygen, the links to 961807fe05dSsameeran joshi# source code will now point to the output of htags. 962807fe05dSsameeran joshi# The default value is: NO. 963807fe05dSsameeran joshi# This tag requires that the tag SOURCE_BROWSER is set to YES. 964807fe05dSsameeran joshi 965807fe05dSsameeran joshiUSE_HTAGS = NO 966807fe05dSsameeran joshi 967807fe05dSsameeran joshi# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a 968807fe05dSsameeran joshi# verbatim copy of the header file for each class for which an include is 969807fe05dSsameeran joshi# specified. Set to NO to disable this. 970807fe05dSsameeran joshi# See also: Section \class. 971807fe05dSsameeran joshi# The default value is: YES. 972807fe05dSsameeran joshi 973807fe05dSsameeran joshiVERBATIM_HEADERS = YES 974807fe05dSsameeran joshi 975807fe05dSsameeran joshi#--------------------------------------------------------------------------- 976807fe05dSsameeran joshi# Configuration options related to the alphabetical class index 977807fe05dSsameeran joshi#--------------------------------------------------------------------------- 978807fe05dSsameeran joshi 979807fe05dSsameeran joshi# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all 980807fe05dSsameeran joshi# compounds will be generated. Enable this if the project contains a lot of 981807fe05dSsameeran joshi# classes, structs, unions or interfaces. 982807fe05dSsameeran joshi# The default value is: YES. 983807fe05dSsameeran joshi 984807fe05dSsameeran joshiALPHABETICAL_INDEX = YES 985807fe05dSsameeran joshi 986807fe05dSsameeran joshi# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in 987807fe05dSsameeran joshi# which the alphabetical index list will be split. 988807fe05dSsameeran joshi# Minimum value: 1, maximum value: 20, default value: 5. 989807fe05dSsameeran joshi# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. 990807fe05dSsameeran joshi 991807fe05dSsameeran joshiCOLS_IN_ALPHA_INDEX = 5 992807fe05dSsameeran joshi 993807fe05dSsameeran joshi# In case all classes in a project start with a common prefix, all classes will 994807fe05dSsameeran joshi# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag 995807fe05dSsameeran joshi# can be used to specify a prefix (or a list of prefixes) that should be ignored 996807fe05dSsameeran joshi# while generating the index headers. 997807fe05dSsameeran joshi# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. 998807fe05dSsameeran joshi 999807fe05dSsameeran joshiIGNORE_PREFIX = 1000807fe05dSsameeran joshi 1001807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1002807fe05dSsameeran joshi# Configuration options related to the HTML output 1003807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1004807fe05dSsameeran joshi 1005807fe05dSsameeran joshi# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output 1006807fe05dSsameeran joshi# The default value is: YES. 1007807fe05dSsameeran joshi 1008807fe05dSsameeran joshiGENERATE_HTML = YES 1009807fe05dSsameeran joshi 1010807fe05dSsameeran joshi# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a 1011807fe05dSsameeran joshi# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1012807fe05dSsameeran joshi# it. 1013807fe05dSsameeran joshi# The default directory is: html. 1014807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1015807fe05dSsameeran joshi 1016807fe05dSsameeran joshiHTML_OUTPUT = html 1017807fe05dSsameeran joshi 1018807fe05dSsameeran joshi# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each 1019807fe05dSsameeran joshi# generated HTML page (for example: .htm, .php, .asp). 1020807fe05dSsameeran joshi# The default value is: .html. 1021807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1022807fe05dSsameeran joshi 1023807fe05dSsameeran joshiHTML_FILE_EXTENSION = .html 1024807fe05dSsameeran joshi 1025807fe05dSsameeran joshi# The HTML_HEADER tag can be used to specify a user-defined HTML header file for 1026807fe05dSsameeran joshi# each generated HTML page. If the tag is left blank doxygen will generate a 1027807fe05dSsameeran joshi# standard header. 1028807fe05dSsameeran joshi# 1029807fe05dSsameeran joshi# To get valid HTML the header file that includes any scripts and style sheets 1030807fe05dSsameeran joshi# that doxygen needs, which is dependent on the configuration options used (e.g. 1031807fe05dSsameeran joshi# the setting GENERATE_TREEVIEW). It is highly recommended to start with a 1032807fe05dSsameeran joshi# default header using 1033807fe05dSsameeran joshi# doxygen -w html new_header.html new_footer.html new_stylesheet.css 1034807fe05dSsameeran joshi# YourConfigFile 1035807fe05dSsameeran joshi# and then modify the file new_header.html. See also section "Doxygen usage" 1036807fe05dSsameeran joshi# for information on how to generate the default header that doxygen normally 1037807fe05dSsameeran joshi# uses. 1038807fe05dSsameeran joshi# Note: The header is subject to change so you typically have to regenerate the 1039807fe05dSsameeran joshi# default header when upgrading to a newer version of doxygen. For a description 1040807fe05dSsameeran joshi# of the possible markers and block names see the documentation. 1041807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1042807fe05dSsameeran joshi 1043807fe05dSsameeran joshiHTML_HEADER = 1044807fe05dSsameeran joshi 1045807fe05dSsameeran joshi# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each 1046807fe05dSsameeran joshi# generated HTML page. If the tag is left blank doxygen will generate a standard 1047807fe05dSsameeran joshi# footer. See HTML_HEADER for more information on how to generate a default 1048807fe05dSsameeran joshi# footer and what special commands can be used inside the footer. See also 1049807fe05dSsameeran joshi# section "Doxygen usage" for information on how to generate the default footer 1050807fe05dSsameeran joshi# that doxygen normally uses. 1051807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1052807fe05dSsameeran joshi 1053807fe05dSsameeran joshiHTML_FOOTER = 1054807fe05dSsameeran joshi 1055807fe05dSsameeran joshi# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style 1056807fe05dSsameeran joshi# sheet that is used by each HTML page. It can be used to fine-tune the look of 1057807fe05dSsameeran joshi# the HTML output. If left blank doxygen will generate a default style sheet. 1058807fe05dSsameeran joshi# See also section "Doxygen usage" for information on how to generate the style 1059807fe05dSsameeran joshi# sheet that doxygen normally uses. 1060807fe05dSsameeran joshi# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as 1061807fe05dSsameeran joshi# it is more robust and this tag (HTML_STYLESHEET) will in the future become 1062807fe05dSsameeran joshi# obsolete. 1063807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1064807fe05dSsameeran joshi 1065807fe05dSsameeran joshiHTML_STYLESHEET = 1066807fe05dSsameeran joshi 1067807fe05dSsameeran joshi# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user- 1068807fe05dSsameeran joshi# defined cascading style sheet that is included after the standard style sheets 1069807fe05dSsameeran joshi# created by doxygen. Using this option one can overrule certain style aspects. 1070807fe05dSsameeran joshi# This is preferred over using HTML_STYLESHEET since it does not replace the 1071807fe05dSsameeran joshi# standard style sheet and is therefor more robust against future updates. 1072807fe05dSsameeran joshi# Doxygen will copy the style sheet file to the output directory. For an example 1073807fe05dSsameeran joshi# see the documentation. 1074807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1075807fe05dSsameeran joshi 1076807fe05dSsameeran joshiHTML_EXTRA_STYLESHEET = 1077807fe05dSsameeran joshi 1078807fe05dSsameeran joshi# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or 1079807fe05dSsameeran joshi# other source files which should be copied to the HTML output directory. Note 1080807fe05dSsameeran joshi# that these files will be copied to the base HTML output directory. Use the 1081807fe05dSsameeran joshi# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these 1082807fe05dSsameeran joshi# files. In the HTML_STYLESHEET file, use the file name only. Also note that the 1083807fe05dSsameeran joshi# files will be copied as-is; there are no commands or markers available. 1084807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1085807fe05dSsameeran joshi 1086807fe05dSsameeran joshiHTML_EXTRA_FILES = 1087807fe05dSsameeran joshi 1088807fe05dSsameeran joshi# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen 1089807fe05dSsameeran joshi# will adjust the colors in the stylesheet and background images according to 1090807fe05dSsameeran joshi# this color. Hue is specified as an angle on a colorwheel, see 1091807fe05dSsameeran joshi# http://en.wikipedia.org/wiki/Hue for more information. For instance the value 1092807fe05dSsameeran joshi# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 1093807fe05dSsameeran joshi# purple, and 360 is red again. 1094807fe05dSsameeran joshi# Minimum value: 0, maximum value: 359, default value: 220. 1095807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1096807fe05dSsameeran joshi 1097807fe05dSsameeran joshiHTML_COLORSTYLE_HUE = 220 1098807fe05dSsameeran joshi 1099807fe05dSsameeran joshi# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors 1100807fe05dSsameeran joshi# in the HTML output. For a value of 0 the output will use grayscales only. A 1101807fe05dSsameeran joshi# value of 255 will produce the most vivid colors. 1102807fe05dSsameeran joshi# Minimum value: 0, maximum value: 255, default value: 100. 1103807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1104807fe05dSsameeran joshi 1105807fe05dSsameeran joshiHTML_COLORSTYLE_SAT = 100 1106807fe05dSsameeran joshi 1107807fe05dSsameeran joshi# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the 1108807fe05dSsameeran joshi# luminance component of the colors in the HTML output. Values below 100 1109807fe05dSsameeran joshi# gradually make the output lighter, whereas values above 100 make the output 1110807fe05dSsameeran joshi# darker. The value divided by 100 is the actual gamma applied, so 80 represents 1111807fe05dSsameeran joshi# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not 1112807fe05dSsameeran joshi# change the gamma. 1113807fe05dSsameeran joshi# Minimum value: 40, maximum value: 240, default value: 80. 1114807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1115807fe05dSsameeran joshi 1116807fe05dSsameeran joshiHTML_COLORSTYLE_GAMMA = 80 1117807fe05dSsameeran joshi 1118807fe05dSsameeran joshi# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1119807fe05dSsameeran joshi# page will contain the date and time when the page was generated. Setting this 1120807fe05dSsameeran joshi# to NO can help when comparing the output of multiple runs. 1121807fe05dSsameeran joshi# The default value is: YES. 1122807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1123807fe05dSsameeran joshi 1124807fe05dSsameeran joshiHTML_TIMESTAMP = YES 1125807fe05dSsameeran joshi 1126807fe05dSsameeran joshi# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 1127807fe05dSsameeran joshi# documentation will contain sections that can be hidden and shown after the 1128807fe05dSsameeran joshi# page has loaded. 1129807fe05dSsameeran joshi# The default value is: NO. 1130807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1131807fe05dSsameeran joshi 1132807fe05dSsameeran joshiHTML_DYNAMIC_SECTIONS = NO 1133807fe05dSsameeran joshi 1134807fe05dSsameeran joshi# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries 1135807fe05dSsameeran joshi# shown in the various tree structured indices initially; the user can expand 1136807fe05dSsameeran joshi# and collapse entries dynamically later on. Doxygen will expand the tree to 1137807fe05dSsameeran joshi# such a level that at most the specified number of entries are visible (unless 1138807fe05dSsameeran joshi# a fully collapsed tree already exceeds this amount). So setting the number of 1139807fe05dSsameeran joshi# entries 1 will produce a full collapsed tree by default. 0 is a special value 1140807fe05dSsameeran joshi# representing an infinite number of entries and will result in a full expanded 1141807fe05dSsameeran joshi# tree by default. 1142807fe05dSsameeran joshi# Minimum value: 0, maximum value: 9999, default value: 100. 1143807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1144807fe05dSsameeran joshi 1145807fe05dSsameeran joshiHTML_INDEX_NUM_ENTRIES = 100 1146807fe05dSsameeran joshi 1147807fe05dSsameeran joshi# If the GENERATE_DOCSET tag is set to YES, additional index files will be 1148807fe05dSsameeran joshi# generated that can be used as input for Apple's Xcode 3 integrated development 1149807fe05dSsameeran joshi# environment (see: http://developer.apple.com/tools/xcode/), introduced with 1150807fe05dSsameeran joshi# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a 1151807fe05dSsameeran joshi# Makefile in the HTML output directory. Running make will produce the docset in 1152807fe05dSsameeran joshi# that directory and running make install will install the docset in 1153807fe05dSsameeran joshi# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at 1154807fe05dSsameeran joshi# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html 1155807fe05dSsameeran joshi# for more information. 1156807fe05dSsameeran joshi# The default value is: NO. 1157807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1158807fe05dSsameeran joshi 1159807fe05dSsameeran joshiGENERATE_DOCSET = NO 1160807fe05dSsameeran joshi 1161807fe05dSsameeran joshi# This tag determines the name of the docset feed. A documentation feed provides 1162807fe05dSsameeran joshi# an umbrella under which multiple documentation sets from a single provider 1163807fe05dSsameeran joshi# (such as a company or product suite) can be grouped. 1164807fe05dSsameeran joshi# The default value is: Doxygen generated docs. 1165807fe05dSsameeran joshi# This tag requires that the tag GENERATE_DOCSET is set to YES. 1166807fe05dSsameeran joshi 1167807fe05dSsameeran joshiDOCSET_FEEDNAME = "Doxygen generated docs" 1168807fe05dSsameeran joshi 1169807fe05dSsameeran joshi# This tag specifies a string that should uniquely identify the documentation 1170807fe05dSsameeran joshi# set bundle. This should be a reverse domain-name style string, e.g. 1171807fe05dSsameeran joshi# com.mycompany.MyDocSet. Doxygen will append .docset to the name. 1172807fe05dSsameeran joshi# The default value is: org.doxygen.Project. 1173807fe05dSsameeran joshi# This tag requires that the tag GENERATE_DOCSET is set to YES. 1174807fe05dSsameeran joshi 1175807fe05dSsameeran joshiDOCSET_BUNDLE_ID = org.doxygen.Project 1176807fe05dSsameeran joshi 1177807fe05dSsameeran joshi# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify 1178807fe05dSsameeran joshi# the documentation publisher. This should be a reverse domain-name style 1179807fe05dSsameeran joshi# string, e.g. com.mycompany.MyDocSet.documentation. 1180807fe05dSsameeran joshi# The default value is: org.doxygen.Publisher. 1181807fe05dSsameeran joshi# This tag requires that the tag GENERATE_DOCSET is set to YES. 1182807fe05dSsameeran joshi 1183807fe05dSsameeran joshiDOCSET_PUBLISHER_ID = org.doxygen.Publisher 1184807fe05dSsameeran joshi 1185807fe05dSsameeran joshi# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. 1186807fe05dSsameeran joshi# The default value is: Publisher. 1187807fe05dSsameeran joshi# This tag requires that the tag GENERATE_DOCSET is set to YES. 1188807fe05dSsameeran joshi 1189807fe05dSsameeran joshiDOCSET_PUBLISHER_NAME = Publisher 1190807fe05dSsameeran joshi 1191807fe05dSsameeran joshi# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three 1192807fe05dSsameeran joshi# additional HTML index files: index.hhp, index.hhc, and index.hhk. The 1193807fe05dSsameeran joshi# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop 1194807fe05dSsameeran joshi# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on 1195807fe05dSsameeran joshi# Windows. 1196807fe05dSsameeran joshi# 1197807fe05dSsameeran joshi# The HTML Help Workshop contains a compiler that can convert all HTML output 1198807fe05dSsameeran joshi# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML 1199807fe05dSsameeran joshi# files are now used as the Windows 98 help format, and will replace the old 1200807fe05dSsameeran joshi# Windows help format (.hlp) on all Windows platforms in the future. Compressed 1201807fe05dSsameeran joshi# HTML files also contain an index, a table of contents, and you can search for 1202807fe05dSsameeran joshi# words in the documentation. The HTML workshop also contains a viewer for 1203807fe05dSsameeran joshi# compressed HTML files. 1204807fe05dSsameeran joshi# The default value is: NO. 1205807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1206807fe05dSsameeran joshi 1207807fe05dSsameeran joshiGENERATE_HTMLHELP = NO 1208807fe05dSsameeran joshi 1209807fe05dSsameeran joshi# The CHM_FILE tag can be used to specify the file name of the resulting .chm 1210807fe05dSsameeran joshi# file. You can add a path in front of the file if the result should not be 1211807fe05dSsameeran joshi# written to the html output directory. 1212807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1213807fe05dSsameeran joshi 1214807fe05dSsameeran joshiCHM_FILE = 1215807fe05dSsameeran joshi 1216807fe05dSsameeran joshi# The HHC_LOCATION tag can be used to specify the location (absolute path 1217807fe05dSsameeran joshi# including file name) of the HTML help compiler ( hhc.exe). If non-empty 1218807fe05dSsameeran joshi# doxygen will try to run the HTML help compiler on the generated index.hhp. 1219807fe05dSsameeran joshi# The file has to be specified with full path. 1220807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1221807fe05dSsameeran joshi 1222807fe05dSsameeran joshiHHC_LOCATION = 1223807fe05dSsameeran joshi 1224807fe05dSsameeran joshi# The GENERATE_CHI flag controls if a separate .chi index file is generated ( 1225c3b15b71SQuinn Pham# YES) or that it should be included in the main .chm file ( NO). 1226807fe05dSsameeran joshi# The default value is: NO. 1227807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1228807fe05dSsameeran joshi 1229807fe05dSsameeran joshiGENERATE_CHI = NO 1230807fe05dSsameeran joshi 1231807fe05dSsameeran joshi# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) 1232807fe05dSsameeran joshi# and project file content. 1233807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1234807fe05dSsameeran joshi 1235807fe05dSsameeran joshiCHM_INDEX_ENCODING = 1236807fe05dSsameeran joshi 1237807fe05dSsameeran joshi# The BINARY_TOC flag controls whether a binary table of contents is generated ( 1238807fe05dSsameeran joshi# YES) or a normal table of contents ( NO) in the .chm file. 1239807fe05dSsameeran joshi# The default value is: NO. 1240807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1241807fe05dSsameeran joshi 1242807fe05dSsameeran joshiBINARY_TOC = NO 1243807fe05dSsameeran joshi 1244807fe05dSsameeran joshi# The TOC_EXPAND flag can be set to YES to add extra items for group members to 1245807fe05dSsameeran joshi# the table of contents of the HTML help documentation and to the tree view. 1246807fe05dSsameeran joshi# The default value is: NO. 1247807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1248807fe05dSsameeran joshi 1249807fe05dSsameeran joshiTOC_EXPAND = NO 1250807fe05dSsameeran joshi 1251807fe05dSsameeran joshi# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and 1252807fe05dSsameeran joshi# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that 1253807fe05dSsameeran joshi# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help 1254807fe05dSsameeran joshi# (.qch) of the generated HTML documentation. 1255807fe05dSsameeran joshi# The default value is: NO. 1256807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1257807fe05dSsameeran joshi 1258807fe05dSsameeran joshiGENERATE_QHP = @llvm_doxygen_generate_qhp@ 1259807fe05dSsameeran joshi 1260807fe05dSsameeran joshi# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify 1261807fe05dSsameeran joshi# the file name of the resulting .qch file. The path specified is relative to 1262807fe05dSsameeran joshi# the HTML output folder. 1263807fe05dSsameeran joshi# This tag requires that the tag GENERATE_QHP is set to YES. 1264807fe05dSsameeran joshi 1265807fe05dSsameeran joshiQCH_FILE = @llvm_doxygen_qch_filename@ 1266807fe05dSsameeran joshi 1267807fe05dSsameeran joshi# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help 1268807fe05dSsameeran joshi# Project output. For more information please see Qt Help Project / Namespace 1269807fe05dSsameeran joshi# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). 1270807fe05dSsameeran joshi# The default value is: org.doxygen.Project. 1271807fe05dSsameeran joshi# This tag requires that the tag GENERATE_QHP is set to YES. 1272807fe05dSsameeran joshi 1273807fe05dSsameeran joshiQHP_NAMESPACE = @llvm_doxygen_qhp_namespace@ 1274807fe05dSsameeran joshi 1275807fe05dSsameeran joshi# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt 1276807fe05dSsameeran joshi# Help Project output. For more information please see Qt Help Project / Virtual 1277807fe05dSsameeran joshi# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- 1278807fe05dSsameeran joshi# folders). 1279807fe05dSsameeran joshi# The default value is: doc. 1280807fe05dSsameeran joshi# This tag requires that the tag GENERATE_QHP is set to YES. 1281807fe05dSsameeran joshi 1282807fe05dSsameeran joshiQHP_VIRTUAL_FOLDER = doc 1283807fe05dSsameeran joshi 1284807fe05dSsameeran joshi# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom 1285807fe05dSsameeran joshi# filter to add. For more information please see Qt Help Project / Custom 1286807fe05dSsameeran joshi# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- 1287807fe05dSsameeran joshi# filters). 1288807fe05dSsameeran joshi# This tag requires that the tag GENERATE_QHP is set to YES. 1289807fe05dSsameeran joshi 1290807fe05dSsameeran joshiQHP_CUST_FILTER_NAME = @llvm_doxygen_qhp_cust_filter_name@ 1291807fe05dSsameeran joshi 1292807fe05dSsameeran joshi# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the 1293807fe05dSsameeran joshi# custom filter to add. For more information please see Qt Help Project / Custom 1294807fe05dSsameeran joshi# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- 1295807fe05dSsameeran joshi# filters). 1296807fe05dSsameeran joshi# This tag requires that the tag GENERATE_QHP is set to YES. 1297807fe05dSsameeran joshi 1298807fe05dSsameeran joshiQHP_CUST_FILTER_ATTRS = @llvm_doxygen_qhp_cust_filter_attrs@ 1299807fe05dSsameeran joshi 1300807fe05dSsameeran joshi# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this 1301807fe05dSsameeran joshi# project's filter section matches. Qt Help Project / Filter Attributes (see: 1302807fe05dSsameeran joshi# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). 1303807fe05dSsameeran joshi# This tag requires that the tag GENERATE_QHP is set to YES. 1304807fe05dSsameeran joshi 1305807fe05dSsameeran joshiQHP_SECT_FILTER_ATTRS = 1306807fe05dSsameeran joshi 1307807fe05dSsameeran joshi# The QHG_LOCATION tag can be used to specify the location of Qt's 1308807fe05dSsameeran joshi# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the 1309807fe05dSsameeran joshi# generated .qhp file. 1310807fe05dSsameeran joshi# This tag requires that the tag GENERATE_QHP is set to YES. 1311807fe05dSsameeran joshi 1312807fe05dSsameeran joshiQHG_LOCATION = 1313807fe05dSsameeran joshi 1314807fe05dSsameeran joshi# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be 1315807fe05dSsameeran joshi# generated, together with the HTML files, they form an Eclipse help plugin. To 1316807fe05dSsameeran joshi# install this plugin and make it available under the help contents menu in 1317807fe05dSsameeran joshi# Eclipse, the contents of the directory containing the HTML and XML files needs 1318807fe05dSsameeran joshi# to be copied into the plugins directory of eclipse. The name of the directory 1319807fe05dSsameeran joshi# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. 1320807fe05dSsameeran joshi# After copying Eclipse needs to be restarted before the help appears. 1321807fe05dSsameeran joshi# The default value is: NO. 1322807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1323807fe05dSsameeran joshi 1324807fe05dSsameeran joshiGENERATE_ECLIPSEHELP = NO 1325807fe05dSsameeran joshi 1326807fe05dSsameeran joshi# A unique identifier for the Eclipse help plugin. When installing the plugin 1327807fe05dSsameeran joshi# the directory name containing the HTML and XML files should also have this 1328807fe05dSsameeran joshi# name. Each documentation set should have its own identifier. 1329807fe05dSsameeran joshi# The default value is: org.doxygen.Project. 1330807fe05dSsameeran joshi# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. 1331807fe05dSsameeran joshi 1332807fe05dSsameeran joshiECLIPSE_DOC_ID = org.doxygen.Project 1333807fe05dSsameeran joshi 1334807fe05dSsameeran joshi# If you want full control over the layout of the generated HTML pages it might 1335807fe05dSsameeran joshi# be necessary to disable the index and replace it with your own. The 1336807fe05dSsameeran joshi# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top 1337807fe05dSsameeran joshi# of each HTML page. A value of NO enables the index and the value YES disables 1338807fe05dSsameeran joshi# it. Since the tabs in the index contain the same information as the navigation 1339807fe05dSsameeran joshi# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. 1340807fe05dSsameeran joshi# The default value is: NO. 1341807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1342807fe05dSsameeran joshi 1343807fe05dSsameeran joshiDISABLE_INDEX = NO 1344807fe05dSsameeran joshi 1345807fe05dSsameeran joshi# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index 1346807fe05dSsameeran joshi# structure should be generated to display hierarchical information. If the tag 1347807fe05dSsameeran joshi# value is set to YES, a side panel will be generated containing a tree-like 1348807fe05dSsameeran joshi# index structure (just like the one that is generated for HTML Help). For this 1349807fe05dSsameeran joshi# to work a browser that supports JavaScript, DHTML, CSS and frames is required 1350807fe05dSsameeran joshi# (i.e. any modern browser). Windows users are probably better off using the 1351807fe05dSsameeran joshi# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can 1352807fe05dSsameeran joshi# further fine-tune the look of the index. As an example, the default style 1353807fe05dSsameeran joshi# sheet generated by doxygen has an example that shows how to put an image at 1354807fe05dSsameeran joshi# the root of the tree instead of the PROJECT_NAME. Since the tree basically has 1355807fe05dSsameeran joshi# the same information as the tab index, you could consider setting 1356807fe05dSsameeran joshi# DISABLE_INDEX to YES when enabling this option. 1357807fe05dSsameeran joshi# The default value is: NO. 1358807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1359807fe05dSsameeran joshi 1360807fe05dSsameeran joshiGENERATE_TREEVIEW = NO 1361807fe05dSsameeran joshi 1362807fe05dSsameeran joshi# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that 1363807fe05dSsameeran joshi# doxygen will group on one line in the generated HTML documentation. 1364807fe05dSsameeran joshi# 1365807fe05dSsameeran joshi# Note that a value of 0 will completely suppress the enum values from appearing 1366807fe05dSsameeran joshi# in the overview section. 1367807fe05dSsameeran joshi# Minimum value: 0, maximum value: 20, default value: 4. 1368807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1369807fe05dSsameeran joshi 1370807fe05dSsameeran joshiENUM_VALUES_PER_LINE = 4 1371807fe05dSsameeran joshi 1372807fe05dSsameeran joshi# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used 1373807fe05dSsameeran joshi# to set the initial width (in pixels) of the frame in which the tree is shown. 1374807fe05dSsameeran joshi# Minimum value: 0, maximum value: 1500, default value: 250. 1375807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1376807fe05dSsameeran joshi 1377807fe05dSsameeran joshiTREEVIEW_WIDTH = 250 1378807fe05dSsameeran joshi 1379807fe05dSsameeran joshi# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to 1380807fe05dSsameeran joshi# external symbols imported via tag files in a separate window. 1381807fe05dSsameeran joshi# The default value is: NO. 1382807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1383807fe05dSsameeran joshi 1384807fe05dSsameeran joshiEXT_LINKS_IN_WINDOW = NO 1385807fe05dSsameeran joshi 1386807fe05dSsameeran joshi# Use this tag to change the font size of LaTeX formulas included as images in 1387807fe05dSsameeran joshi# the HTML documentation. When you change the font size after a successful 1388807fe05dSsameeran joshi# doxygen run you need to manually remove any form_*.png images from the HTML 1389807fe05dSsameeran joshi# output directory to force them to be regenerated. 1390807fe05dSsameeran joshi# Minimum value: 8, maximum value: 50, default value: 10. 1391807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1392807fe05dSsameeran joshi 1393807fe05dSsameeran joshiFORMULA_FONTSIZE = 10 1394807fe05dSsameeran joshi 1395807fe05dSsameeran joshi# Use the FORMULA_TRANPARENT tag to determine whether or not the images 1396807fe05dSsameeran joshi# generated for formulas are transparent PNGs. Transparent PNGs are not 1397807fe05dSsameeran joshi# supported properly for IE 6.0, but are supported on all modern browsers. 1398807fe05dSsameeran joshi# 1399807fe05dSsameeran joshi# Note that when changing this option you need to delete any form_*.png files in 1400807fe05dSsameeran joshi# the HTML output directory before the changes have effect. 1401807fe05dSsameeran joshi# The default value is: YES. 1402807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1403807fe05dSsameeran joshi 1404807fe05dSsameeran joshiFORMULA_TRANSPARENT = YES 1405807fe05dSsameeran joshi 1406807fe05dSsameeran joshi# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see 1407807fe05dSsameeran joshi# http://www.mathjax.org) which uses client side Javascript for the rendering 1408807fe05dSsameeran joshi# instead of using prerendered bitmaps. Use this if you do not have LaTeX 1409807fe05dSsameeran joshi# installed or if you want to formulas look prettier in the HTML output. When 1410807fe05dSsameeran joshi# enabled you may also need to install MathJax separately and configure the path 1411807fe05dSsameeran joshi# to it using the MATHJAX_RELPATH option. 1412807fe05dSsameeran joshi# The default value is: NO. 1413807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1414807fe05dSsameeran joshi 1415807fe05dSsameeran joshiUSE_MATHJAX = NO 1416807fe05dSsameeran joshi 1417807fe05dSsameeran joshi# When MathJax is enabled you can set the default output format to be used for 1418807fe05dSsameeran joshi# the MathJax output. See the MathJax site (see: 1419807fe05dSsameeran joshi# http://docs.mathjax.org/en/latest/output.html) for more details. 1420807fe05dSsameeran joshi# Possible values are: HTML-CSS (which is slower, but has the best 1421807fe05dSsameeran joshi# compatibility), NativeMML (i.e. MathML) and SVG. 1422807fe05dSsameeran joshi# The default value is: HTML-CSS. 1423807fe05dSsameeran joshi# This tag requires that the tag USE_MATHJAX is set to YES. 1424807fe05dSsameeran joshi 1425807fe05dSsameeran joshiMATHJAX_FORMAT = HTML-CSS 1426807fe05dSsameeran joshi 1427807fe05dSsameeran joshi# When MathJax is enabled you need to specify the location relative to the HTML 1428807fe05dSsameeran joshi# output directory using the MATHJAX_RELPATH option. The destination directory 1429807fe05dSsameeran joshi# should contain the MathJax.js script. For instance, if the mathjax directory 1430807fe05dSsameeran joshi# is located at the same level as the HTML output directory, then 1431807fe05dSsameeran joshi# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax 1432807fe05dSsameeran joshi# Content Delivery Network so you can quickly see the result without installing 1433807fe05dSsameeran joshi# MathJax. However, it is strongly recommended to install a local copy of 1434807fe05dSsameeran joshi# MathJax from http://www.mathjax.org before deployment. 1435807fe05dSsameeran joshi# The default value is: http://cdn.mathjax.org/mathjax/latest. 1436807fe05dSsameeran joshi# This tag requires that the tag USE_MATHJAX is set to YES. 1437807fe05dSsameeran joshi 1438807fe05dSsameeran joshiMATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest 1439807fe05dSsameeran joshi 1440807fe05dSsameeran joshi# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax 1441807fe05dSsameeran joshi# extension names that should be enabled during MathJax rendering. For example 1442807fe05dSsameeran joshi# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols 1443807fe05dSsameeran joshi# This tag requires that the tag USE_MATHJAX is set to YES. 1444807fe05dSsameeran joshi 1445807fe05dSsameeran joshiMATHJAX_EXTENSIONS = 1446807fe05dSsameeran joshi 1447807fe05dSsameeran joshi# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces 1448807fe05dSsameeran joshi# of code that will be used on startup of the MathJax code. See the MathJax site 1449807fe05dSsameeran joshi# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an 1450807fe05dSsameeran joshi# example see the documentation. 1451807fe05dSsameeran joshi# This tag requires that the tag USE_MATHJAX is set to YES. 1452807fe05dSsameeran joshi 1453807fe05dSsameeran joshiMATHJAX_CODEFILE = 1454807fe05dSsameeran joshi 1455807fe05dSsameeran joshi# When the SEARCHENGINE tag is enabled doxygen will generate a search box for 1456807fe05dSsameeran joshi# the HTML output. The underlying search engine uses javascript and DHTML and 1457807fe05dSsameeran joshi# should work on any modern browser. Note that when using HTML help 1458807fe05dSsameeran joshi# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) 1459807fe05dSsameeran joshi# there is already a search function so this one should typically be disabled. 1460807fe05dSsameeran joshi# For large projects the javascript based search engine can be slow, then 1461807fe05dSsameeran joshi# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to 1462807fe05dSsameeran joshi# search using the keyboard; to jump to the search box use <access key> + S 1463807fe05dSsameeran joshi# (what the <access key> is depends on the OS and browser, but it is typically 1464807fe05dSsameeran joshi# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down 1465807fe05dSsameeran joshi# key> to jump into the search results window, the results can be navigated 1466807fe05dSsameeran joshi# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel 1467807fe05dSsameeran joshi# the search. The filter options can be selected when the cursor is inside the 1468807fe05dSsameeran joshi# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> 1469807fe05dSsameeran joshi# to select a filter and <Enter> or <escape> to activate or cancel the filter 1470807fe05dSsameeran joshi# option. 1471807fe05dSsameeran joshi# The default value is: YES. 1472807fe05dSsameeran joshi# This tag requires that the tag GENERATE_HTML is set to YES. 1473807fe05dSsameeran joshi 1474807fe05dSsameeran joshiSEARCHENGINE = @enable_searchengine@ 1475807fe05dSsameeran joshi 1476807fe05dSsameeran joshi# When the SERVER_BASED_SEARCH tag is enabled the search engine will be 1477807fe05dSsameeran joshi# implemented using a web server instead of a web client using Javascript. There 1478807fe05dSsameeran joshi# are two flavours of web server based searching depending on the 1479807fe05dSsameeran joshi# EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for 1480807fe05dSsameeran joshi# searching and an index file used by the script. When EXTERNAL_SEARCH is 1481807fe05dSsameeran joshi# enabled the indexing and searching needs to be provided by external tools. See 1482807fe05dSsameeran joshi# the section "External Indexing and Searching" for details. 1483807fe05dSsameeran joshi# The default value is: NO. 1484807fe05dSsameeran joshi# This tag requires that the tag SEARCHENGINE is set to YES. 1485807fe05dSsameeran joshi 1486807fe05dSsameeran joshiSERVER_BASED_SEARCH = @enable_server_based_search@ 1487807fe05dSsameeran joshi 1488807fe05dSsameeran joshi# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP 1489807fe05dSsameeran joshi# script for searching. Instead the search results are written to an XML file 1490807fe05dSsameeran joshi# which needs to be processed by an external indexer. Doxygen will invoke an 1491807fe05dSsameeran joshi# external search engine pointed to by the SEARCHENGINE_URL option to obtain the 1492807fe05dSsameeran joshi# search results. 1493807fe05dSsameeran joshi# 1494807fe05dSsameeran joshi# Doxygen ships with an example indexer ( doxyindexer) and search engine 1495807fe05dSsameeran joshi# (doxysearch.cgi) which are based on the open source search engine library 1496807fe05dSsameeran joshi# Xapian (see: http://xapian.org/). 1497807fe05dSsameeran joshi# 1498807fe05dSsameeran joshi# See the section "External Indexing and Searching" for details. 1499807fe05dSsameeran joshi# The default value is: NO. 1500807fe05dSsameeran joshi# This tag requires that the tag SEARCHENGINE is set to YES. 1501807fe05dSsameeran joshi 1502807fe05dSsameeran joshiEXTERNAL_SEARCH = @enable_external_search@ 1503807fe05dSsameeran joshi 1504807fe05dSsameeran joshi# The SEARCHENGINE_URL should point to a search engine hosted by a web server 1505807fe05dSsameeran joshi# which will return the search results when EXTERNAL_SEARCH is enabled. 1506807fe05dSsameeran joshi# 1507807fe05dSsameeran joshi# Doxygen ships with an example indexer ( doxyindexer) and search engine 1508807fe05dSsameeran joshi# (doxysearch.cgi) which are based on the open source search engine library 1509807fe05dSsameeran joshi# Xapian (see: http://xapian.org/). See the section "External Indexing and 1510807fe05dSsameeran joshi# Searching" for details. 1511807fe05dSsameeran joshi# This tag requires that the tag SEARCHENGINE is set to YES. 1512807fe05dSsameeran joshi 1513807fe05dSsameeran joshiSEARCHENGINE_URL = @searchengine_url@ 1514807fe05dSsameeran joshi 1515807fe05dSsameeran joshi# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed 1516807fe05dSsameeran joshi# search data is written to a file for indexing by an external tool. With the 1517807fe05dSsameeran joshi# SEARCHDATA_FILE tag the name of this file can be specified. 1518807fe05dSsameeran joshi# The default file is: searchdata.xml. 1519807fe05dSsameeran joshi# This tag requires that the tag SEARCHENGINE is set to YES. 1520807fe05dSsameeran joshi 1521807fe05dSsameeran joshiSEARCHDATA_FILE = searchdata.xml 1522807fe05dSsameeran joshi 1523807fe05dSsameeran joshi# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the 1524807fe05dSsameeran joshi# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is 1525807fe05dSsameeran joshi# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple 1526807fe05dSsameeran joshi# projects and redirect the results back to the right project. 1527807fe05dSsameeran joshi# This tag requires that the tag SEARCHENGINE is set to YES. 1528807fe05dSsameeran joshi 1529807fe05dSsameeran joshiEXTERNAL_SEARCH_ID = flang 1530807fe05dSsameeran joshi 1531807fe05dSsameeran joshi# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen 1532807fe05dSsameeran joshi# projects other than the one defined by this configuration file, but that are 1533807fe05dSsameeran joshi# all added to the same external search index. Each project needs to have a 1534807fe05dSsameeran joshi# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of 1535807fe05dSsameeran joshi# to a relative location where the documentation can be found. The format is: 1536807fe05dSsameeran joshi# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... 1537807fe05dSsameeran joshi# This tag requires that the tag SEARCHENGINE is set to YES. 1538807fe05dSsameeran joshi 1539807fe05dSsameeran joshiEXTRA_SEARCH_MAPPINGS = @extra_search_mappings@ 1540807fe05dSsameeran joshi 1541807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1542807fe05dSsameeran joshi# Configuration options related to the LaTeX output 1543807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1544807fe05dSsameeran joshi 1545807fe05dSsameeran joshi# If the GENERATE_LATEX tag is set to YES doxygen will generate LaTeX output. 1546807fe05dSsameeran joshi# The default value is: YES. 1547807fe05dSsameeran joshi 1548807fe05dSsameeran joshiGENERATE_LATEX = YES 1549807fe05dSsameeran joshi 1550807fe05dSsameeran joshi# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a 1551807fe05dSsameeran joshi# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1552807fe05dSsameeran joshi# it. 1553807fe05dSsameeran joshi# The default directory is: latex. 1554807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1555807fe05dSsameeran joshi 1556807fe05dSsameeran joshiLATEX_OUTPUT = latex 1557807fe05dSsameeran joshi 1558807fe05dSsameeran joshi# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 1559807fe05dSsameeran joshi# invoked. 1560807fe05dSsameeran joshi# 1561807fe05dSsameeran joshi# Note that when enabling USE_PDFLATEX this option is only used for generating 1562807fe05dSsameeran joshi# bitmaps for formulas in the HTML output, but not in the Makefile that is 1563807fe05dSsameeran joshi# written to the output directory. 1564807fe05dSsameeran joshi# The default file is: latex. 1565807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1566807fe05dSsameeran joshi 1567807fe05dSsameeran joshiLATEX_CMD_NAME = latex 1568807fe05dSsameeran joshi 1569807fe05dSsameeran joshi# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate 1570807fe05dSsameeran joshi# index for LaTeX. 1571807fe05dSsameeran joshi# The default file is: makeindex. 1572807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1573807fe05dSsameeran joshi 1574807fe05dSsameeran joshiMAKEINDEX_CMD_NAME = makeindex 1575807fe05dSsameeran joshi 1576807fe05dSsameeran joshi# If the COMPACT_LATEX tag is set to YES doxygen generates more compact LaTeX 1577807fe05dSsameeran joshi# documents. This may be useful for small projects and may help to save some 1578807fe05dSsameeran joshi# trees in general. 1579807fe05dSsameeran joshi# The default value is: NO. 1580807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1581807fe05dSsameeran joshi 1582807fe05dSsameeran joshiCOMPACT_LATEX = NO 1583807fe05dSsameeran joshi 1584807fe05dSsameeran joshi# The PAPER_TYPE tag can be used to set the paper type that is used by the 1585807fe05dSsameeran joshi# printer. 1586807fe05dSsameeran joshi# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x 1587807fe05dSsameeran joshi# 14 inches) and executive (7.25 x 10.5 inches). 1588807fe05dSsameeran joshi# The default value is: a4. 1589807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1590807fe05dSsameeran joshi 1591807fe05dSsameeran joshiPAPER_TYPE = a4 1592807fe05dSsameeran joshi 1593807fe05dSsameeran joshi# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names 1594807fe05dSsameeran joshi# that should be included in the LaTeX output. To get the times font for 1595807fe05dSsameeran joshi# instance you can specify 1596807fe05dSsameeran joshi# EXTRA_PACKAGES=times 1597807fe05dSsameeran joshi# If left blank no extra packages will be included. 1598807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1599807fe05dSsameeran joshi 1600807fe05dSsameeran joshiEXTRA_PACKAGES = 1601807fe05dSsameeran joshi 1602807fe05dSsameeran joshi# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the 1603807fe05dSsameeran joshi# generated LaTeX document. The header should contain everything until the first 1604807fe05dSsameeran joshi# chapter. If it is left blank doxygen will generate a standard header. See 1605807fe05dSsameeran joshi# section "Doxygen usage" for information on how to let doxygen write the 1606807fe05dSsameeran joshi# default header to a separate file. 1607807fe05dSsameeran joshi# 1608807fe05dSsameeran joshi# Note: Only use a user-defined header if you know what you are doing! The 1609807fe05dSsameeran joshi# following commands have a special meaning inside the header: $title, 1610807fe05dSsameeran joshi# $datetime, $date, $doxygenversion, $projectname, $projectnumber. Doxygen will 1611807fe05dSsameeran joshi# replace them by respectively the title of the page, the current date and time, 1612807fe05dSsameeran joshi# only the current date, the version number of doxygen, the project name (see 1613807fe05dSsameeran joshi# PROJECT_NAME), or the project number (see PROJECT_NUMBER). 1614807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1615807fe05dSsameeran joshi 1616807fe05dSsameeran joshiLATEX_HEADER = 1617807fe05dSsameeran joshi 1618807fe05dSsameeran joshi# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the 1619807fe05dSsameeran joshi# generated LaTeX document. The footer should contain everything after the last 1620807fe05dSsameeran joshi# chapter. If it is left blank doxygen will generate a standard footer. 1621807fe05dSsameeran joshi# 1622807fe05dSsameeran joshi# Note: Only use a user-defined footer if you know what you are doing! 1623807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1624807fe05dSsameeran joshi 1625807fe05dSsameeran joshiLATEX_FOOTER = 1626807fe05dSsameeran joshi 1627807fe05dSsameeran joshi# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or 1628807fe05dSsameeran joshi# other source files which should be copied to the LATEX_OUTPUT output 1629807fe05dSsameeran joshi# directory. Note that the files will be copied as-is; there are no commands or 1630807fe05dSsameeran joshi# markers available. 1631807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1632807fe05dSsameeran joshi 1633807fe05dSsameeran joshiLATEX_EXTRA_FILES = 1634807fe05dSsameeran joshi 1635807fe05dSsameeran joshi# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is 1636807fe05dSsameeran joshi# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will 1637807fe05dSsameeran joshi# contain links (just like the HTML output) instead of page references. This 1638807fe05dSsameeran joshi# makes the output suitable for online browsing using a PDF viewer. 1639807fe05dSsameeran joshi# The default value is: YES. 1640807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1641807fe05dSsameeran joshi 1642807fe05dSsameeran joshiPDF_HYPERLINKS = YES 1643807fe05dSsameeran joshi 1644807fe05dSsameeran joshi# If the LATEX_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate 1645807fe05dSsameeran joshi# the PDF file directly from the LaTeX files. Set this option to YES to get a 1646807fe05dSsameeran joshi# higher quality PDF documentation. 1647807fe05dSsameeran joshi# The default value is: YES. 1648807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1649807fe05dSsameeran joshi 1650807fe05dSsameeran joshiUSE_PDFLATEX = YES 1651807fe05dSsameeran joshi 1652807fe05dSsameeran joshi# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode 1653807fe05dSsameeran joshi# command to the generated LaTeX files. This will instruct LaTeX to keep running 1654807fe05dSsameeran joshi# if errors occur, instead of asking the user for help. This option is also used 1655807fe05dSsameeran joshi# when generating formulas in HTML. 1656807fe05dSsameeran joshi# The default value is: NO. 1657807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1658807fe05dSsameeran joshi 1659807fe05dSsameeran joshiLATEX_BATCHMODE = NO 1660807fe05dSsameeran joshi 1661807fe05dSsameeran joshi# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the 1662807fe05dSsameeran joshi# index chapters (such as File Index, Compound Index, etc.) in the output. 1663807fe05dSsameeran joshi# The default value is: NO. 1664807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1665807fe05dSsameeran joshi 1666807fe05dSsameeran joshiLATEX_HIDE_INDICES = NO 1667807fe05dSsameeran joshi 1668807fe05dSsameeran joshi# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source 1669807fe05dSsameeran joshi# code with syntax highlighting in the LaTeX output. 1670807fe05dSsameeran joshi# 1671807fe05dSsameeran joshi# Note that which sources are shown also depends on other settings such as 1672807fe05dSsameeran joshi# SOURCE_BROWSER. 1673807fe05dSsameeran joshi# The default value is: NO. 1674807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1675807fe05dSsameeran joshi 1676807fe05dSsameeran joshiLATEX_SOURCE_CODE = NO 1677807fe05dSsameeran joshi 1678807fe05dSsameeran joshi# The LATEX_BIB_STYLE tag can be used to specify the style to use for the 1679807fe05dSsameeran joshi# bibliography, e.g. plainnat, or ieeetr. See 1680807fe05dSsameeran joshi# http://en.wikipedia.org/wiki/BibTeX and \cite for more info. 1681807fe05dSsameeran joshi# The default value is: plain. 1682807fe05dSsameeran joshi# This tag requires that the tag GENERATE_LATEX is set to YES. 1683807fe05dSsameeran joshi 1684807fe05dSsameeran joshiLATEX_BIB_STYLE = plain 1685807fe05dSsameeran joshi 1686807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1687807fe05dSsameeran joshi# Configuration options related to the RTF output 1688807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1689807fe05dSsameeran joshi 1690807fe05dSsameeran joshi# If the GENERATE_RTF tag is set to YES doxygen will generate RTF output. The 1691807fe05dSsameeran joshi# RTF output is optimized for Word 97 and may not look too pretty with other RTF 1692807fe05dSsameeran joshi# readers/editors. 1693807fe05dSsameeran joshi# The default value is: NO. 1694807fe05dSsameeran joshi 1695807fe05dSsameeran joshiGENERATE_RTF = NO 1696807fe05dSsameeran joshi 1697807fe05dSsameeran joshi# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a 1698807fe05dSsameeran joshi# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1699807fe05dSsameeran joshi# it. 1700807fe05dSsameeran joshi# The default directory is: rtf. 1701807fe05dSsameeran joshi# This tag requires that the tag GENERATE_RTF is set to YES. 1702807fe05dSsameeran joshi 1703807fe05dSsameeran joshiRTF_OUTPUT = rtf 1704807fe05dSsameeran joshi 1705807fe05dSsameeran joshi# If the COMPACT_RTF tag is set to YES doxygen generates more compact RTF 1706807fe05dSsameeran joshi# documents. This may be useful for small projects and may help to save some 1707807fe05dSsameeran joshi# trees in general. 1708807fe05dSsameeran joshi# The default value is: NO. 1709807fe05dSsameeran joshi# This tag requires that the tag GENERATE_RTF is set to YES. 1710807fe05dSsameeran joshi 1711807fe05dSsameeran joshiCOMPACT_RTF = NO 1712807fe05dSsameeran joshi 1713807fe05dSsameeran joshi# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will 1714807fe05dSsameeran joshi# contain hyperlink fields. The RTF file will contain links (just like the HTML 1715807fe05dSsameeran joshi# output) instead of page references. This makes the output suitable for online 1716807fe05dSsameeran joshi# browsing using Word or some other Word compatible readers that support those 1717807fe05dSsameeran joshi# fields. 1718807fe05dSsameeran joshi# 1719807fe05dSsameeran joshi# Note: WordPad (write) and others do not support links. 1720807fe05dSsameeran joshi# The default value is: NO. 1721807fe05dSsameeran joshi# This tag requires that the tag GENERATE_RTF is set to YES. 1722807fe05dSsameeran joshi 1723807fe05dSsameeran joshiRTF_HYPERLINKS = NO 1724807fe05dSsameeran joshi 1725807fe05dSsameeran joshi# Load stylesheet definitions from file. Syntax is similar to doxygen's config 1726807fe05dSsameeran joshi# file, i.e. a series of assignments. You only have to provide replacements, 1727807fe05dSsameeran joshi# missing definitions are set to their default value. 1728807fe05dSsameeran joshi# 1729807fe05dSsameeran joshi# See also section "Doxygen usage" for information on how to generate the 1730807fe05dSsameeran joshi# default style sheet that doxygen normally uses. 1731807fe05dSsameeran joshi# This tag requires that the tag GENERATE_RTF is set to YES. 1732807fe05dSsameeran joshi 1733807fe05dSsameeran joshiRTF_STYLESHEET_FILE = 1734807fe05dSsameeran joshi 1735807fe05dSsameeran joshi# Set optional variables used in the generation of an RTF document. Syntax is 1736807fe05dSsameeran joshi# similar to doxygen's config file. A template extensions file can be generated 1737807fe05dSsameeran joshi# using doxygen -e rtf extensionFile. 1738807fe05dSsameeran joshi# This tag requires that the tag GENERATE_RTF is set to YES. 1739807fe05dSsameeran joshi 1740807fe05dSsameeran joshiRTF_EXTENSIONS_FILE = 1741807fe05dSsameeran joshi 1742807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1743807fe05dSsameeran joshi# Configuration options related to the man page output 1744807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1745807fe05dSsameeran joshi 1746807fe05dSsameeran joshi# If the GENERATE_MAN tag is set to YES doxygen will generate man pages for 1747807fe05dSsameeran joshi# classes and files. 1748807fe05dSsameeran joshi# The default value is: NO. 1749807fe05dSsameeran joshi 1750807fe05dSsameeran joshiGENERATE_MAN = NO 1751807fe05dSsameeran joshi 1752807fe05dSsameeran joshi# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a 1753807fe05dSsameeran joshi# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1754807fe05dSsameeran joshi# it. A directory man3 will be created inside the directory specified by 1755807fe05dSsameeran joshi# MAN_OUTPUT. 1756807fe05dSsameeran joshi# The default directory is: man. 1757807fe05dSsameeran joshi# This tag requires that the tag GENERATE_MAN is set to YES. 1758807fe05dSsameeran joshi 1759807fe05dSsameeran joshiMAN_OUTPUT = man 1760807fe05dSsameeran joshi 1761807fe05dSsameeran joshi# The MAN_EXTENSION tag determines the extension that is added to the generated 1762807fe05dSsameeran joshi# man pages. In case the manual section does not start with a number, the number 1763807fe05dSsameeran joshi# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is 1764807fe05dSsameeran joshi# optional. 1765807fe05dSsameeran joshi# The default value is: .3. 1766807fe05dSsameeran joshi# This tag requires that the tag GENERATE_MAN is set to YES. 1767807fe05dSsameeran joshi 1768807fe05dSsameeran joshiMAN_EXTENSION = .3 1769807fe05dSsameeran joshi 1770807fe05dSsameeran joshi# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it 1771807fe05dSsameeran joshi# will generate one additional man file for each entity documented in the real 1772807fe05dSsameeran joshi# man page(s). These additional files only source the real man page, but without 1773807fe05dSsameeran joshi# them the man command would be unable to find the correct page. 1774807fe05dSsameeran joshi# The default value is: NO. 1775807fe05dSsameeran joshi# This tag requires that the tag GENERATE_MAN is set to YES. 1776807fe05dSsameeran joshi 1777807fe05dSsameeran joshiMAN_LINKS = NO 1778807fe05dSsameeran joshi 1779807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1780807fe05dSsameeran joshi# Configuration options related to the XML output 1781807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1782807fe05dSsameeran joshi 1783807fe05dSsameeran joshi# If the GENERATE_XML tag is set to YES doxygen will generate an XML file that 1784807fe05dSsameeran joshi# captures the structure of the code including all documentation. 1785807fe05dSsameeran joshi# The default value is: NO. 1786807fe05dSsameeran joshi 1787807fe05dSsameeran joshiGENERATE_XML = NO 1788807fe05dSsameeran joshi 1789807fe05dSsameeran joshi# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a 1790807fe05dSsameeran joshi# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1791807fe05dSsameeran joshi# it. 1792807fe05dSsameeran joshi# The default directory is: xml. 1793807fe05dSsameeran joshi# This tag requires that the tag GENERATE_XML is set to YES. 1794807fe05dSsameeran joshi 1795807fe05dSsameeran joshiXML_OUTPUT = xml 1796807fe05dSsameeran joshi 1797807fe05dSsameeran joshi# The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a 1798807fe05dSsameeran joshi# validating XML parser to check the syntax of the XML files. 1799807fe05dSsameeran joshi# This tag requires that the tag GENERATE_XML is set to YES. 1800807fe05dSsameeran joshi 1801807fe05dSsameeran joshiXML_SCHEMA = 1802807fe05dSsameeran joshi 1803807fe05dSsameeran joshi# The XML_DTD tag can be used to specify a XML DTD, which can be used by a 1804807fe05dSsameeran joshi# validating XML parser to check the syntax of the XML files. 1805807fe05dSsameeran joshi# This tag requires that the tag GENERATE_XML is set to YES. 1806807fe05dSsameeran joshi 1807807fe05dSsameeran joshiXML_DTD = 1808807fe05dSsameeran joshi 1809807fe05dSsameeran joshi# If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program 1810807fe05dSsameeran joshi# listings (including syntax highlighting and cross-referencing information) to 1811807fe05dSsameeran joshi# the XML output. Note that enabling this will significantly increase the size 1812807fe05dSsameeran joshi# of the XML output. 1813807fe05dSsameeran joshi# The default value is: YES. 1814807fe05dSsameeran joshi# This tag requires that the tag GENERATE_XML is set to YES. 1815807fe05dSsameeran joshi 1816807fe05dSsameeran joshiXML_PROGRAMLISTING = YES 1817807fe05dSsameeran joshi 1818807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1819807fe05dSsameeran joshi# Configuration options related to the DOCBOOK output 1820807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1821807fe05dSsameeran joshi 1822807fe05dSsameeran joshi# If the GENERATE_DOCBOOK tag is set to YES doxygen will generate Docbook files 1823807fe05dSsameeran joshi# that can be used to generate PDF. 1824807fe05dSsameeran joshi# The default value is: NO. 1825807fe05dSsameeran joshi 1826807fe05dSsameeran joshiGENERATE_DOCBOOK = NO 1827807fe05dSsameeran joshi 1828807fe05dSsameeran joshi# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. 1829807fe05dSsameeran joshi# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in 1830807fe05dSsameeran joshi# front of it. 1831807fe05dSsameeran joshi# The default directory is: docbook. 1832807fe05dSsameeran joshi# This tag requires that the tag GENERATE_DOCBOOK is set to YES. 1833807fe05dSsameeran joshi 1834807fe05dSsameeran joshiDOCBOOK_OUTPUT = docbook 1835807fe05dSsameeran joshi 1836807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1837807fe05dSsameeran joshi# Configuration options for the AutoGen Definitions output 1838807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1839807fe05dSsameeran joshi 1840807fe05dSsameeran joshi# If the GENERATE_AUTOGEN_DEF tag is set to YES doxygen will generate an AutoGen 1841807fe05dSsameeran joshi# Definitions (see http://autogen.sf.net) file that captures the structure of 1842807fe05dSsameeran joshi# the code including all documentation. Note that this feature is still 1843807fe05dSsameeran joshi# experimental and incomplete at the moment. 1844807fe05dSsameeran joshi# The default value is: NO. 1845807fe05dSsameeran joshi 1846807fe05dSsameeran joshiGENERATE_AUTOGEN_DEF = NO 1847807fe05dSsameeran joshi 1848807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1849807fe05dSsameeran joshi# Configuration options related to the Perl module output 1850807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1851807fe05dSsameeran joshi 1852807fe05dSsameeran joshi# If the GENERATE_PERLMOD tag is set to YES doxygen will generate a Perl module 1853807fe05dSsameeran joshi# file that captures the structure of the code including all documentation. 1854807fe05dSsameeran joshi# 1855807fe05dSsameeran joshi# Note that this feature is still experimental and incomplete at the moment. 1856807fe05dSsameeran joshi# The default value is: NO. 1857807fe05dSsameeran joshi 1858807fe05dSsameeran joshiGENERATE_PERLMOD = NO 1859807fe05dSsameeran joshi 1860807fe05dSsameeran joshi# If the PERLMOD_LATEX tag is set to YES doxygen will generate the necessary 1861807fe05dSsameeran joshi# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI 1862807fe05dSsameeran joshi# output from the Perl module output. 1863807fe05dSsameeran joshi# The default value is: NO. 1864807fe05dSsameeran joshi# This tag requires that the tag GENERATE_PERLMOD is set to YES. 1865807fe05dSsameeran joshi 1866807fe05dSsameeran joshiPERLMOD_LATEX = NO 1867807fe05dSsameeran joshi 1868807fe05dSsameeran joshi# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be nicely 1869807fe05dSsameeran joshi# formatted so it can be parsed by a human reader. This is useful if you want to 1870807fe05dSsameeran joshi# understand what is going on. On the other hand, if this tag is set to NO the 1871807fe05dSsameeran joshi# size of the Perl module output will be much smaller and Perl will parse it 1872807fe05dSsameeran joshi# just the same. 1873807fe05dSsameeran joshi# The default value is: YES. 1874807fe05dSsameeran joshi# This tag requires that the tag GENERATE_PERLMOD is set to YES. 1875807fe05dSsameeran joshi 1876807fe05dSsameeran joshiPERLMOD_PRETTY = YES 1877807fe05dSsameeran joshi 1878807fe05dSsameeran joshi# The names of the make variables in the generated doxyrules.make file are 1879807fe05dSsameeran joshi# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful 1880807fe05dSsameeran joshi# so different doxyrules.make files included by the same Makefile don't 1881807fe05dSsameeran joshi# overwrite each other's variables. 1882807fe05dSsameeran joshi# This tag requires that the tag GENERATE_PERLMOD is set to YES. 1883807fe05dSsameeran joshi 1884807fe05dSsameeran joshiPERLMOD_MAKEVAR_PREFIX = 1885807fe05dSsameeran joshi 1886807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1887807fe05dSsameeran joshi# Configuration options related to the preprocessor 1888807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1889807fe05dSsameeran joshi 1890807fe05dSsameeran joshi# If the ENABLE_PREPROCESSING tag is set to YES doxygen will evaluate all 1891807fe05dSsameeran joshi# C-preprocessor directives found in the sources and include files. 1892807fe05dSsameeran joshi# The default value is: YES. 1893807fe05dSsameeran joshi 1894807fe05dSsameeran joshiENABLE_PREPROCESSING = YES 1895807fe05dSsameeran joshi 1896807fe05dSsameeran joshi# If the MACRO_EXPANSION tag is set to YES doxygen will expand all macro names 1897807fe05dSsameeran joshi# in the source code. If set to NO only conditional compilation will be 1898807fe05dSsameeran joshi# performed. Macro expansion can be done in a controlled way by setting 1899807fe05dSsameeran joshi# EXPAND_ONLY_PREDEF to YES. 1900807fe05dSsameeran joshi# The default value is: NO. 1901807fe05dSsameeran joshi# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1902807fe05dSsameeran joshi 1903807fe05dSsameeran joshiMACRO_EXPANSION = NO 1904807fe05dSsameeran joshi 1905807fe05dSsameeran joshi# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then 1906807fe05dSsameeran joshi# the macro expansion is limited to the macros specified with the PREDEFINED and 1907807fe05dSsameeran joshi# EXPAND_AS_DEFINED tags. 1908807fe05dSsameeran joshi# The default value is: NO. 1909807fe05dSsameeran joshi# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1910807fe05dSsameeran joshi 1911807fe05dSsameeran joshiEXPAND_ONLY_PREDEF = NO 1912807fe05dSsameeran joshi 1913807fe05dSsameeran joshi# If the SEARCH_INCLUDES tag is set to YES the includes files in the 1914807fe05dSsameeran joshi# INCLUDE_PATH will be searched if a #include is found. 1915807fe05dSsameeran joshi# The default value is: YES. 1916807fe05dSsameeran joshi# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1917807fe05dSsameeran joshi 1918807fe05dSsameeran joshiSEARCH_INCLUDES = YES 1919807fe05dSsameeran joshi 1920807fe05dSsameeran joshi# The INCLUDE_PATH tag can be used to specify one or more directories that 1921807fe05dSsameeran joshi# contain include files that are not input files but should be processed by the 1922807fe05dSsameeran joshi# preprocessor. 1923807fe05dSsameeran joshi# This tag requires that the tag SEARCH_INCLUDES is set to YES. 1924807fe05dSsameeran joshi 1925807fe05dSsameeran joshiINCLUDE_PATH = 1926807fe05dSsameeran joshi 1927807fe05dSsameeran joshi# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 1928807fe05dSsameeran joshi# patterns (like *.h and *.hpp) to filter out the header-files in the 1929807fe05dSsameeran joshi# directories. If left blank, the patterns specified with FILE_PATTERNS will be 1930807fe05dSsameeran joshi# used. 1931807fe05dSsameeran joshi# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1932807fe05dSsameeran joshi 1933807fe05dSsameeran joshiINCLUDE_FILE_PATTERNS = 1934807fe05dSsameeran joshi 1935807fe05dSsameeran joshi# The PREDEFINED tag can be used to specify one or more macro names that are 1936807fe05dSsameeran joshi# defined before the preprocessor is started (similar to the -D option of e.g. 1937807fe05dSsameeran joshi# gcc). The argument of the tag is a list of macros of the form: name or 1938807fe05dSsameeran joshi# name=definition (no spaces). If the definition and the "=" are omitted, "=1" 1939807fe05dSsameeran joshi# is assumed. To prevent a macro definition from being undefined via #undef or 1940807fe05dSsameeran joshi# recursively expanded use the := operator instead of the = operator. 1941807fe05dSsameeran joshi# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1942807fe05dSsameeran joshi 1943807fe05dSsameeran joshiPREDEFINED = 1944807fe05dSsameeran joshi 1945807fe05dSsameeran joshi# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this 1946807fe05dSsameeran joshi# tag can be used to specify a list of macro names that should be expanded. The 1947807fe05dSsameeran joshi# macro definition that is found in the sources will be used. Use the PREDEFINED 1948807fe05dSsameeran joshi# tag if you want to use a different macro definition that overrules the 1949807fe05dSsameeran joshi# definition found in the source code. 1950807fe05dSsameeran joshi# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1951807fe05dSsameeran joshi 1952807fe05dSsameeran joshiEXPAND_AS_DEFINED = 1953807fe05dSsameeran joshi 1954807fe05dSsameeran joshi# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will 1955807fe05dSsameeran joshi# remove all refrences to function-like macros that are alone on a line, have an 1956807fe05dSsameeran joshi# all uppercase name, and do not end with a semicolon. Such function macros are 1957807fe05dSsameeran joshi# typically used for boiler-plate code, and will confuse the parser if not 1958807fe05dSsameeran joshi# removed. 1959807fe05dSsameeran joshi# The default value is: YES. 1960807fe05dSsameeran joshi# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1961807fe05dSsameeran joshi 1962807fe05dSsameeran joshiSKIP_FUNCTION_MACROS = YES 1963807fe05dSsameeran joshi 1964807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1965807fe05dSsameeran joshi# Configuration options related to external references 1966807fe05dSsameeran joshi#--------------------------------------------------------------------------- 1967807fe05dSsameeran joshi 1968807fe05dSsameeran joshi# The TAGFILES tag can be used to specify one or more tag files. For each tag 1969807fe05dSsameeran joshi# file the location of the external documentation should be added. The format of 1970807fe05dSsameeran joshi# a tag file without this location is as follows: 1971807fe05dSsameeran joshi# TAGFILES = file1 file2 ... 1972807fe05dSsameeran joshi# Adding location for the tag files is done as follows: 1973807fe05dSsameeran joshi# TAGFILES = file1=loc1 "file2 = loc2" ... 1974807fe05dSsameeran joshi# where loc1 and loc2 can be relative or absolute paths or URLs. See the 1975807fe05dSsameeran joshi# section "Linking to external documentation" for more information about the use 1976807fe05dSsameeran joshi# of tag files. 1977807fe05dSsameeran joshi# Note: Each tag file must have an unique name (where the name does NOT include 1978807fe05dSsameeran joshi# the path). If a tag file is not located in the directory in which doxygen is 1979807fe05dSsameeran joshi# run, you must also specify the path to the tagfile here. 1980807fe05dSsameeran joshi 1981807fe05dSsameeran joshiTAGFILES = 1982807fe05dSsameeran joshi 1983807fe05dSsameeran joshi# When a file name is specified after GENERATE_TAGFILE, doxygen will create a 1984807fe05dSsameeran joshi# tag file that is based on the input files it reads. See section "Linking to 1985807fe05dSsameeran joshi# external documentation" for more information about the usage of tag files. 1986807fe05dSsameeran joshi 1987807fe05dSsameeran joshiGENERATE_TAGFILE = 1988807fe05dSsameeran joshi 1989807fe05dSsameeran joshi# If the ALLEXTERNALS tag is set to YES all external class will be listed in the 1990807fe05dSsameeran joshi# class index. If set to NO only the inherited external classes will be listed. 1991807fe05dSsameeran joshi# The default value is: NO. 1992807fe05dSsameeran joshi 1993807fe05dSsameeran joshiALLEXTERNALS = NO 1994807fe05dSsameeran joshi 1995807fe05dSsameeran joshi# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed in 1996807fe05dSsameeran joshi# the modules index. If set to NO, only the current project's groups will be 1997807fe05dSsameeran joshi# listed. 1998807fe05dSsameeran joshi# The default value is: YES. 1999807fe05dSsameeran joshi 2000807fe05dSsameeran joshiEXTERNAL_GROUPS = YES 2001807fe05dSsameeran joshi 2002807fe05dSsameeran joshi# If the EXTERNAL_PAGES tag is set to YES all external pages will be listed in 2003807fe05dSsameeran joshi# the related pages index. If set to NO, only the current project's pages will 2004807fe05dSsameeran joshi# be listed. 2005807fe05dSsameeran joshi# The default value is: YES. 2006807fe05dSsameeran joshi 2007807fe05dSsameeran joshiEXTERNAL_PAGES = YES 2008807fe05dSsameeran joshi 2009807fe05dSsameeran joshi# The PERL_PATH should be the absolute path and name of the perl script 2010807fe05dSsameeran joshi# interpreter (i.e. the result of 'which perl'). 2011807fe05dSsameeran joshi# The default file (with absolute path) is: /usr/bin/perl. 2012807fe05dSsameeran joshi 2013807fe05dSsameeran joshiPERL_PATH = /usr/bin/perl 2014807fe05dSsameeran joshi 2015807fe05dSsameeran joshi#--------------------------------------------------------------------------- 2016807fe05dSsameeran joshi# Configuration options related to the dot tool 2017807fe05dSsameeran joshi#--------------------------------------------------------------------------- 2018807fe05dSsameeran joshi 2019807fe05dSsameeran joshi# If the CLASS_DIAGRAMS tag is set to YES doxygen will generate a class diagram 2020807fe05dSsameeran joshi# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to 2021807fe05dSsameeran joshi# NO turns the diagrams off. Note that this option also works with HAVE_DOT 2022807fe05dSsameeran joshi# disabled, but it is recommended to install and use dot, since it yields more 2023807fe05dSsameeran joshi# powerful graphs. 2024807fe05dSsameeran joshi# The default value is: YES. 2025807fe05dSsameeran joshi 2026807fe05dSsameeran joshiCLASS_DIAGRAMS = YES 2027807fe05dSsameeran joshi 2028807fe05dSsameeran joshi# You can define message sequence charts within doxygen comments using the \msc 2029807fe05dSsameeran joshi# command. Doxygen will then run the mscgen tool (see: 2030807fe05dSsameeran joshi# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the 2031807fe05dSsameeran joshi# documentation. The MSCGEN_PATH tag allows you to specify the directory where 2032807fe05dSsameeran joshi# the mscgen tool resides. If left empty the tool is assumed to be found in the 2033807fe05dSsameeran joshi# default search path. 2034807fe05dSsameeran joshi 2035807fe05dSsameeran joshiMSCGEN_PATH = 2036807fe05dSsameeran joshi 2037807fe05dSsameeran joshi# You can include diagrams made with dia in doxygen documentation. Doxygen will 2038807fe05dSsameeran joshi# then run dia to produce the diagram and insert it in the documentation. The 2039807fe05dSsameeran joshi# DIA_PATH tag allows you to specify the directory where the dia binary resides. 2040807fe05dSsameeran joshi# If left empty dia is assumed to be found in the default search path. 2041807fe05dSsameeran joshi 2042807fe05dSsameeran joshiDIA_PATH = 2043807fe05dSsameeran joshi 2044807fe05dSsameeran joshi# If set to YES, the inheritance and collaboration graphs will hide inheritance 2045807fe05dSsameeran joshi# and usage relations if the target is undocumented or is not a class. 2046807fe05dSsameeran joshi# The default value is: YES. 2047807fe05dSsameeran joshi 2048807fe05dSsameeran joshiHIDE_UNDOC_RELATIONS = YES 2049807fe05dSsameeran joshi 2050807fe05dSsameeran joshi# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 2051807fe05dSsameeran joshi# available from the path. This tool is part of Graphviz (see: 2052807fe05dSsameeran joshi# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent 2053807fe05dSsameeran joshi# Bell Labs. The other options in this section have no effect if this option is 2054807fe05dSsameeran joshi# set to NO 2055807fe05dSsameeran joshi# The default value is: NO. 2056807fe05dSsameeran joshi 2057807fe05dSsameeran joshiHAVE_DOT = NO 2058807fe05dSsameeran joshi 2059807fe05dSsameeran joshi# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed 2060807fe05dSsameeran joshi# to run in parallel. When set to 0 doxygen will base this on the number of 2061807fe05dSsameeran joshi# processors available in the system. You can set it explicitly to a value 2062807fe05dSsameeran joshi# larger than 0 to get control over the balance between CPU load and processing 2063807fe05dSsameeran joshi# speed. 2064807fe05dSsameeran joshi# Minimum value: 0, maximum value: 32, default value: 0. 2065807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2066807fe05dSsameeran joshi 2067807fe05dSsameeran joshiDOT_NUM_THREADS = 0 2068807fe05dSsameeran joshi 2069807fe05dSsameeran joshi# When you want a differently looking font n the dot files that doxygen 2070807fe05dSsameeran joshi# generates you can specify the font name using DOT_FONTNAME. You need to make 2071807fe05dSsameeran joshi# sure dot is able to find the font, which can be done by putting it in a 2072807fe05dSsameeran joshi# standard location or by setting the DOTFONTPATH environment variable or by 2073807fe05dSsameeran joshi# setting DOT_FONTPATH to the directory containing the font. 2074807fe05dSsameeran joshi# The default value is: Helvetica. 2075807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2076807fe05dSsameeran joshi 2077807fe05dSsameeran joshiDOT_FONTNAME = Helvetica 2078807fe05dSsameeran joshi 2079807fe05dSsameeran joshi# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of 2080807fe05dSsameeran joshi# dot graphs. 2081807fe05dSsameeran joshi# Minimum value: 4, maximum value: 24, default value: 10. 2082807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2083807fe05dSsameeran joshi 2084807fe05dSsameeran joshiDOT_FONTSIZE = 10 2085807fe05dSsameeran joshi 2086807fe05dSsameeran joshi# By default doxygen will tell dot to use the default font as specified with 2087807fe05dSsameeran joshi# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set 2088807fe05dSsameeran joshi# the path where dot can find it using this tag. 2089807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2090807fe05dSsameeran joshi 2091807fe05dSsameeran joshiDOT_FONTPATH = 2092807fe05dSsameeran joshi 2093807fe05dSsameeran joshi# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for 2094807fe05dSsameeran joshi# each documented class showing the direct and indirect inheritance relations. 2095807fe05dSsameeran joshi# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. 2096807fe05dSsameeran joshi# The default value is: YES. 2097807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2098807fe05dSsameeran joshi 2099807fe05dSsameeran joshiCLASS_GRAPH = YES 2100807fe05dSsameeran joshi 2101807fe05dSsameeran joshi# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a 2102807fe05dSsameeran joshi# graph for each documented class showing the direct and indirect implementation 2103807fe05dSsameeran joshi# dependencies (inheritance, containment, and class references variables) of the 2104807fe05dSsameeran joshi# class with other documented classes. 2105807fe05dSsameeran joshi# The default value is: YES. 2106807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2107807fe05dSsameeran joshi 2108*eadf6db5STimm BäderCOLLABORATION_GRAPH = NO 2109807fe05dSsameeran joshi 2110807fe05dSsameeran joshi# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for 2111807fe05dSsameeran joshi# groups, showing the direct groups dependencies. 2112807fe05dSsameeran joshi# The default value is: YES. 2113807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2114807fe05dSsameeran joshi 2115807fe05dSsameeran joshiGROUP_GRAPHS = YES 2116807fe05dSsameeran joshi 2117807fe05dSsameeran joshi# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 2118807fe05dSsameeran joshi# collaboration diagrams in a style similar to the OMG's Unified Modeling 2119807fe05dSsameeran joshi# Language. 2120807fe05dSsameeran joshi# The default value is: NO. 2121807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2122807fe05dSsameeran joshi 2123807fe05dSsameeran joshiUML_LOOK = NO 2124807fe05dSsameeran joshi 2125807fe05dSsameeran joshi# If the UML_LOOK tag is enabled, the fields and methods are shown inside the 2126807fe05dSsameeran joshi# class node. If there are many fields or methods and many nodes the graph may 2127807fe05dSsameeran joshi# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the 2128807fe05dSsameeran joshi# number of items for each type to make the size more manageable. Set this to 0 2129807fe05dSsameeran joshi# for no limit. Note that the threshold may be exceeded by 50% before the limit 2130807fe05dSsameeran joshi# is enforced. So when you set the threshold to 10, up to 15 fields may appear, 2131807fe05dSsameeran joshi# but if the number exceeds 15, the total amount of fields shown is limited to 2132807fe05dSsameeran joshi# 10. 2133807fe05dSsameeran joshi# Minimum value: 0, maximum value: 100, default value: 10. 2134807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2135807fe05dSsameeran joshi 2136807fe05dSsameeran joshiUML_LIMIT_NUM_FIELDS = 10 2137807fe05dSsameeran joshi 2138807fe05dSsameeran joshi# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and 2139807fe05dSsameeran joshi# collaboration graphs will show the relations between templates and their 2140807fe05dSsameeran joshi# instances. 2141807fe05dSsameeran joshi# The default value is: NO. 2142807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2143807fe05dSsameeran joshi 2144807fe05dSsameeran joshiTEMPLATE_RELATIONS = NO 2145807fe05dSsameeran joshi 2146807fe05dSsameeran joshi# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to 2147807fe05dSsameeran joshi# YES then doxygen will generate a graph for each documented file showing the 2148807fe05dSsameeran joshi# direct and indirect include dependencies of the file with other documented 2149807fe05dSsameeran joshi# files. 2150807fe05dSsameeran joshi# The default value is: YES. 2151807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2152807fe05dSsameeran joshi 2153*eadf6db5STimm BäderINCLUDE_GRAPH = NO 2154807fe05dSsameeran joshi 2155807fe05dSsameeran joshi# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are 2156807fe05dSsameeran joshi# set to YES then doxygen will generate a graph for each documented file showing 2157807fe05dSsameeran joshi# the direct and indirect include dependencies of the file with other documented 2158807fe05dSsameeran joshi# files. 2159807fe05dSsameeran joshi# The default value is: YES. 2160807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2161807fe05dSsameeran joshi 2162*eadf6db5STimm BäderINCLUDED_BY_GRAPH = NO 2163807fe05dSsameeran joshi 2164807fe05dSsameeran joshi# If the CALL_GRAPH tag is set to YES then doxygen will generate a call 2165807fe05dSsameeran joshi# dependency graph for every global function or class method. 2166807fe05dSsameeran joshi# 2167807fe05dSsameeran joshi# Note that enabling this option will significantly increase the time of a run. 2168807fe05dSsameeran joshi# So in most cases it will be better to enable call graphs for selected 2169807fe05dSsameeran joshi# functions only using the \callgraph command. 2170807fe05dSsameeran joshi# The default value is: NO. 2171807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2172807fe05dSsameeran joshi 2173807fe05dSsameeran joshiCALL_GRAPH = NO 2174807fe05dSsameeran joshi 2175807fe05dSsameeran joshi# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller 2176807fe05dSsameeran joshi# dependency graph for every global function or class method. 2177807fe05dSsameeran joshi# 2178807fe05dSsameeran joshi# Note that enabling this option will significantly increase the time of a run. 2179807fe05dSsameeran joshi# So in most cases it will be better to enable caller graphs for selected 2180807fe05dSsameeran joshi# functions only using the \callergraph command. 2181807fe05dSsameeran joshi# The default value is: NO. 2182807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2183807fe05dSsameeran joshi 2184807fe05dSsameeran joshiCALLER_GRAPH = NO 2185807fe05dSsameeran joshi 2186807fe05dSsameeran joshi# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical 2187807fe05dSsameeran joshi# hierarchy of all classes instead of a textual one. 2188807fe05dSsameeran joshi# The default value is: YES. 2189807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2190807fe05dSsameeran joshi 2191807fe05dSsameeran joshiGRAPHICAL_HIERARCHY = YES 2192807fe05dSsameeran joshi 2193807fe05dSsameeran joshi# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the 2194807fe05dSsameeran joshi# dependencies a directory has on other directories in a graphical way. The 2195807fe05dSsameeran joshi# dependency relations are determined by the #include relations between the 2196807fe05dSsameeran joshi# files in the directories. 2197807fe05dSsameeran joshi# The default value is: YES. 2198807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2199807fe05dSsameeran joshi 2200807fe05dSsameeran joshiDIRECTORY_GRAPH = YES 2201807fe05dSsameeran joshi 2202807fe05dSsameeran joshi# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 2203807fe05dSsameeran joshi# generated by dot. 2204807fe05dSsameeran joshi# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order 2205807fe05dSsameeran joshi# to make the SVG files visible in IE 9+ (other browsers do not have this 2206807fe05dSsameeran joshi# requirement). 2207807fe05dSsameeran joshi# Possible values are: png, jpg, gif and svg. 2208807fe05dSsameeran joshi# The default value is: png. 2209807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2210807fe05dSsameeran joshi 2211807fe05dSsameeran joshiDOT_IMAGE_FORMAT = @DOT_IMAGE_FORMAT@ 2212807fe05dSsameeran joshi 2213807fe05dSsameeran joshi# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to 2214807fe05dSsameeran joshi# enable generation of interactive SVG images that allow zooming and panning. 2215807fe05dSsameeran joshi# 2216807fe05dSsameeran joshi# Note that this requires a modern browser other than Internet Explorer. Tested 2217807fe05dSsameeran joshi# and working are Firefox, Chrome, Safari, and Opera. 2218807fe05dSsameeran joshi# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make 2219807fe05dSsameeran joshi# the SVG files visible. Older versions of IE do not have SVG support. 2220807fe05dSsameeran joshi# The default value is: NO. 2221807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2222807fe05dSsameeran joshi 2223807fe05dSsameeran joshiINTERACTIVE_SVG = NO 2224807fe05dSsameeran joshi 2225807fe05dSsameeran joshi# The DOT_PATH tag can be used to specify the path where the dot tool can be 2226807fe05dSsameeran joshi# found. If left blank, it is assumed the dot tool can be found in the path. 2227807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2228807fe05dSsameeran joshi 2229807fe05dSsameeran joshiDOT_PATH = @DOT@ 2230807fe05dSsameeran joshi 2231807fe05dSsameeran joshi# The DOTFILE_DIRS tag can be used to specify one or more directories that 2232807fe05dSsameeran joshi# contain dot files that are included in the documentation (see the \dotfile 2233807fe05dSsameeran joshi# command). 2234807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2235807fe05dSsameeran joshi 2236807fe05dSsameeran joshiDOTFILE_DIRS = 2237807fe05dSsameeran joshi 2238807fe05dSsameeran joshi# The MSCFILE_DIRS tag can be used to specify one or more directories that 2239807fe05dSsameeran joshi# contain msc files that are included in the documentation (see the \mscfile 2240807fe05dSsameeran joshi# command). 2241807fe05dSsameeran joshi 2242807fe05dSsameeran joshiMSCFILE_DIRS = 2243807fe05dSsameeran joshi 2244807fe05dSsameeran joshi# The DIAFILE_DIRS tag can be used to specify one or more directories that 2245807fe05dSsameeran joshi# contain dia files that are included in the documentation (see the \diafile 2246807fe05dSsameeran joshi# command). 2247807fe05dSsameeran joshi 2248807fe05dSsameeran joshiDIAFILE_DIRS = 2249807fe05dSsameeran joshi 2250807fe05dSsameeran joshi# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes 2251807fe05dSsameeran joshi# that will be shown in the graph. If the number of nodes in a graph becomes 2252807fe05dSsameeran joshi# larger than this value, doxygen will truncate the graph, which is visualized 2253807fe05dSsameeran joshi# by representing a node as a red box. Note that doxygen if the number of direct 2254807fe05dSsameeran joshi# children of the root node in a graph is already larger than 2255807fe05dSsameeran joshi# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that 2256807fe05dSsameeran joshi# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 2257807fe05dSsameeran joshi# Minimum value: 0, maximum value: 10000, default value: 50. 2258807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2259807fe05dSsameeran joshi 2260807fe05dSsameeran joshiDOT_GRAPH_MAX_NODES = 50 2261807fe05dSsameeran joshi 2262807fe05dSsameeran joshi# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs 2263807fe05dSsameeran joshi# generated by dot. A depth value of 3 means that only nodes reachable from the 2264807fe05dSsameeran joshi# root by following a path via at most 3 edges will be shown. Nodes that lay 2265807fe05dSsameeran joshi# further from the root node will be omitted. Note that setting this option to 1 2266807fe05dSsameeran joshi# or 2 may greatly reduce the computation time needed for large code bases. Also 2267807fe05dSsameeran joshi# note that the size of a graph can be further restricted by 2268807fe05dSsameeran joshi# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 2269807fe05dSsameeran joshi# Minimum value: 0, maximum value: 1000, default value: 0. 2270807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2271807fe05dSsameeran joshi 2272807fe05dSsameeran joshiMAX_DOT_GRAPH_DEPTH = 0 2273807fe05dSsameeran joshi 2274807fe05dSsameeran joshi# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 2275807fe05dSsameeran joshi# background. This is disabled by default, because dot on Windows does not seem 2276807fe05dSsameeran joshi# to support this out of the box. 2277807fe05dSsameeran joshi# 2278807fe05dSsameeran joshi# Warning: Depending on the platform used, enabling this option may lead to 2279807fe05dSsameeran joshi# badly anti-aliased labels on the edges of a graph (i.e. they become hard to 2280807fe05dSsameeran joshi# read). 2281807fe05dSsameeran joshi# The default value is: NO. 2282807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2283807fe05dSsameeran joshi 2284807fe05dSsameeran joshiDOT_TRANSPARENT = NO 2285807fe05dSsameeran joshi 2286807fe05dSsameeran joshi# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 2287807fe05dSsameeran joshi# files in one run (i.e. multiple -o and -T options on the command line). This 2288807fe05dSsameeran joshi# makes dot run faster, but since only newer versions of dot (>1.8.10) support 2289807fe05dSsameeran joshi# this, this feature is disabled by default. 2290807fe05dSsameeran joshi# The default value is: NO. 2291807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2292807fe05dSsameeran joshi 2293807fe05dSsameeran joshiDOT_MULTI_TARGETS = NO 2294807fe05dSsameeran joshi 2295807fe05dSsameeran joshi# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page 2296807fe05dSsameeran joshi# explaining the meaning of the various boxes and arrows in the dot generated 2297807fe05dSsameeran joshi# graphs. 2298807fe05dSsameeran joshi# The default value is: YES. 2299807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2300807fe05dSsameeran joshi 2301807fe05dSsameeran joshiGENERATE_LEGEND = YES 2302807fe05dSsameeran joshi 2303807fe05dSsameeran joshi# If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot 2304807fe05dSsameeran joshi# files that are used to generate the various graphs. 2305807fe05dSsameeran joshi# The default value is: YES. 2306807fe05dSsameeran joshi# This tag requires that the tag HAVE_DOT is set to YES. 2307807fe05dSsameeran joshi 2308807fe05dSsameeran joshiDOT_CLEANUP = YES 2309