1848b8605Smrg# Doxyfile 1.7.4 2848b8605Smrg 3848b8605Smrg# This file describes the settings to be used by the documentation system 4848b8605Smrg# doxygen (www.doxygen.org) for a project. 5848b8605Smrg# 6848b8605Smrg# All text after a hash (#) is considered a comment and will be ignored. 7848b8605Smrg# The format is: 8848b8605Smrg# TAG = value [value, ...] 9848b8605Smrg# For lists items can also be appended using: 10848b8605Smrg# TAG += value [value, ...] 11848b8605Smrg# Values that contain spaces should be placed between quotes (" "). 12848b8605Smrg 13848b8605Smrg#--------------------------------------------------------------------------- 14848b8605Smrg# Project related configuration options 15848b8605Smrg#--------------------------------------------------------------------------- 16848b8605Smrg 17848b8605Smrg# This tag specifies the encoding used for all characters in the config file 18848b8605Smrg# that follow. The default is UTF-8 which is also the encoding used for all 19848b8605Smrg# text before the first occurrence of this tag. Doxygen uses libiconv (or the 20848b8605Smrg# iconv built into libc) for the transcoding. See 21848b8605Smrg# http://www.gnu.org/software/libiconv for the list of possible encodings. 22848b8605Smrg 23848b8605SmrgDOXYFILE_ENCODING = UTF-8 24848b8605Smrg 25848b8605Smrg# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 26848b8605Smrg# by quotes) that should identify the project. 27848b8605Smrg 28848b8605SmrgPROJECT_NAME = Clover 29848b8605Smrg 30848b8605Smrg# The PROJECT_NUMBER tag can be used to enter a project or revision number. 31848b8605Smrg# This could be handy for archiving the generated documentation or 32848b8605Smrg# if some version control system is used. 33848b8605Smrg 34848b8605SmrgPROJECT_NUMBER = 35848b8605Smrg 36848b8605Smrg# Using the PROJECT_BRIEF tag one can provide an optional one line description 37848b8605Smrg# for a project that appears at the top of each page and should give viewer 38848b8605Smrg# a quick idea about the purpose of the project. Keep the description short. 39848b8605Smrg 40848b8605SmrgPROJECT_BRIEF = 41848b8605Smrg 42848b8605Smrg# With the PROJECT_LOGO tag one can specify an logo or icon that is 43848b8605Smrg# included in the documentation. The maximum height of the logo should not 44848b8605Smrg# exceed 55 pixels and the maximum width should not exceed 200 pixels. 45848b8605Smrg# Doxygen will copy the logo to the output directory. 46848b8605Smrg 47848b8605SmrgPROJECT_LOGO = 48848b8605Smrg 49848b8605Smrg# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 50848b8605Smrg# base path where the generated documentation will be put. 51848b8605Smrg# If a relative path is entered, it will be relative to the location 52848b8605Smrg# where doxygen was started. If left blank the current directory will be used. 53848b8605Smrg 54848b8605SmrgOUTPUT_DIRECTORY = 55848b8605Smrg 56848b8605Smrg# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 57848b8605Smrg# 4096 sub-directories (in 2 levels) under the output directory of each output 58848b8605Smrg# format and will distribute the generated files over these directories. 59848b8605Smrg# Enabling this option can be useful when feeding doxygen a huge amount of 60848b8605Smrg# source files, where putting all generated files in the same directory would 61848b8605Smrg# otherwise cause performance problems for the file system. 62848b8605Smrg 63848b8605SmrgCREATE_SUBDIRS = NO 64848b8605Smrg 65848b8605Smrg# The OUTPUT_LANGUAGE tag is used to specify the language in which all 66848b8605Smrg# documentation generated by doxygen is written. Doxygen will use this 67848b8605Smrg# information to generate all constant output in the proper language. 68848b8605Smrg# The default language is English, other supported languages are: 69848b8605Smrg# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 70848b8605Smrg# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, 71848b8605Smrg# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English 72848b8605Smrg# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, 73848b8605Smrg# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, 74848b8605Smrg# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. 75848b8605Smrg 76848b8605SmrgOUTPUT_LANGUAGE = English 77848b8605Smrg 78848b8605Smrg# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 79848b8605Smrg# include brief member descriptions after the members that are listed in 80848b8605Smrg# the file and class documentation (similar to JavaDoc). 81848b8605Smrg# Set to NO to disable this. 82848b8605Smrg 83848b8605SmrgBRIEF_MEMBER_DESC = YES 84848b8605Smrg 85848b8605Smrg# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 86848b8605Smrg# the brief description of a member or function before the detailed description. 87848b8605Smrg# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 88848b8605Smrg# brief descriptions will be completely suppressed. 89848b8605Smrg 90848b8605SmrgREPEAT_BRIEF = YES 91848b8605Smrg 92848b8605Smrg# This tag implements a quasi-intelligent brief description abbreviator 93848b8605Smrg# that is used to form the text in various listings. Each string 94848b8605Smrg# in this list, if found as the leading text of the brief description, will be 95848b8605Smrg# stripped from the text and the result after processing the whole list, is 96848b8605Smrg# used as the annotated text. Otherwise, the brief description is used as-is. 97848b8605Smrg# If left blank, the following values are used ("$name" is automatically 98848b8605Smrg# replaced with the name of the entity): "The $name class" "The $name widget" 99848b8605Smrg# "The $name file" "is" "provides" "specifies" "contains" 100848b8605Smrg# "represents" "a" "an" "the" 101848b8605Smrg 102848b8605SmrgABBREVIATE_BRIEF = 103848b8605Smrg 104848b8605Smrg# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 105848b8605Smrg# Doxygen will generate a detailed section even if there is only a brief 106848b8605Smrg# description. 107848b8605Smrg 108848b8605SmrgALWAYS_DETAILED_SEC = NO 109848b8605Smrg 110848b8605Smrg# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 111848b8605Smrg# inherited members of a class in the documentation of that class as if those 112848b8605Smrg# members were ordinary class members. Constructors, destructors and assignment 113848b8605Smrg# operators of the base classes will not be shown. 114848b8605Smrg 115848b8605SmrgINLINE_INHERITED_MEMB = NO 116848b8605Smrg 117848b8605Smrg# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 118848b8605Smrg# path before files name in the file list and in the header files. If set 119848b8605Smrg# to NO the shortest path that makes the file name unique will be used. 120848b8605Smrg 121848b8605SmrgFULL_PATH_NAMES = YES 122848b8605Smrg 123848b8605Smrg# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 124848b8605Smrg# can be used to strip a user-defined part of the path. Stripping is 125848b8605Smrg# only done if one of the specified strings matches the left-hand part of 126848b8605Smrg# the path. The tag can be used to show relative paths in the file list. 127848b8605Smrg# If left blank the directory from which doxygen is run is used as the 128848b8605Smrg# path to strip. 129848b8605Smrg 130848b8605SmrgSTRIP_FROM_PATH = 131848b8605Smrg 132848b8605Smrg# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 133848b8605Smrg# the path mentioned in the documentation of a class, which tells 134848b8605Smrg# the reader which header file to include in order to use a class. 135848b8605Smrg# If left blank only the name of the header file containing the class 136848b8605Smrg# definition is used. Otherwise one should specify the include paths that 137848b8605Smrg# are normally passed to the compiler using the -I flag. 138848b8605Smrg 139848b8605SmrgSTRIP_FROM_INC_PATH = 140848b8605Smrg 141848b8605Smrg# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 142848b8605Smrg# (but less readable) file names. This can be useful if your file system 143848b8605Smrg# doesn't support long names like on DOS, Mac, or CD-ROM. 144848b8605Smrg 145848b8605SmrgSHORT_NAMES = NO 146848b8605Smrg 147848b8605Smrg# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 148848b8605Smrg# will interpret the first line (until the first dot) of a JavaDoc-style 149848b8605Smrg# comment as the brief description. If set to NO, the JavaDoc 150848b8605Smrg# comments will behave just like regular Qt-style comments 151848b8605Smrg# (thus requiring an explicit @brief command for a brief description.) 152848b8605Smrg 153848b8605SmrgJAVADOC_AUTOBRIEF = YES 154848b8605Smrg 155848b8605Smrg# If the QT_AUTOBRIEF tag is set to YES then Doxygen will 156848b8605Smrg# interpret the first line (until the first dot) of a Qt-style 157848b8605Smrg# comment as the brief description. If set to NO, the comments 158848b8605Smrg# will behave just like regular Qt-style comments (thus requiring 159848b8605Smrg# an explicit \brief command for a brief description.) 160848b8605Smrg 161848b8605SmrgQT_AUTOBRIEF = NO 162848b8605Smrg 163848b8605Smrg# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 164848b8605Smrg# treat a multi-line C++ special comment block (i.e. a block of //! or /// 165848b8605Smrg# comments) as a brief description. This used to be the default behaviour. 166848b8605Smrg# The new default is to treat a multi-line C++ comment block as a detailed 167848b8605Smrg# description. Set this tag to YES if you prefer the old behaviour instead. 168848b8605Smrg 169848b8605SmrgMULTILINE_CPP_IS_BRIEF = NO 170848b8605Smrg 171848b8605Smrg# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 172848b8605Smrg# member inherits the documentation from any documented member that it 173848b8605Smrg# re-implements. 174848b8605Smrg 175848b8605SmrgINHERIT_DOCS = YES 176848b8605Smrg 177848b8605Smrg# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 178848b8605Smrg# a new page for each member. If set to NO, the documentation of a member will 179848b8605Smrg# be part of the file/class/namespace that contains it. 180848b8605Smrg 181848b8605SmrgSEPARATE_MEMBER_PAGES = NO 182848b8605Smrg 183848b8605Smrg# The TAB_SIZE tag can be used to set the number of spaces in a tab. 184848b8605Smrg# Doxygen uses this value to replace tabs by spaces in code fragments. 185848b8605Smrg 186848b8605SmrgTAB_SIZE = 8 187848b8605Smrg 188848b8605Smrg# This tag can be used to specify a number of aliases that acts 189848b8605Smrg# as commands in the documentation. An alias has the form "name=value". 190848b8605Smrg# For example adding "sideeffect=\par Side Effects:\n" will allow you to 191848b8605Smrg# put the command \sideeffect (or @sideeffect) in the documentation, which 192848b8605Smrg# will result in a user-defined paragraph with heading "Side Effects:". 193848b8605Smrg# You can put \n's in the value part of an alias to insert newlines. 194848b8605Smrg 195848b8605SmrgALIASES = 196848b8605Smrg 197848b8605Smrg# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 198848b8605Smrg# sources only. Doxygen will then generate output that is more tailored for C. 199848b8605Smrg# For instance, some of the names that are used will be different. The list 200848b8605Smrg# of all members will be omitted, etc. 201848b8605Smrg 202848b8605SmrgOPTIMIZE_OUTPUT_FOR_C = NO 203848b8605Smrg 204848b8605Smrg# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 205848b8605Smrg# sources only. Doxygen will then generate output that is more tailored for 206848b8605Smrg# Java. For instance, namespaces will be presented as packages, qualified 207848b8605Smrg# scopes will look different, etc. 208848b8605Smrg 209848b8605SmrgOPTIMIZE_OUTPUT_JAVA = NO 210848b8605Smrg 211848b8605Smrg# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran 212848b8605Smrg# sources only. Doxygen will then generate output that is more tailored for 213848b8605Smrg# Fortran. 214848b8605Smrg 215848b8605SmrgOPTIMIZE_FOR_FORTRAN = NO 216848b8605Smrg 217848b8605Smrg# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL 218848b8605Smrg# sources. Doxygen will then generate output that is tailored for 219848b8605Smrg# VHDL. 220848b8605Smrg 221848b8605SmrgOPTIMIZE_OUTPUT_VHDL = NO 222848b8605Smrg 223848b8605Smrg# Doxygen selects the parser to use depending on the extension of the files it 224848b8605Smrg# parses. With this tag you can assign which parser to use for a given extension. 225848b8605Smrg# Doxygen has a built-in mapping, but you can override or extend it using this 226848b8605Smrg# tag. The format is ext=language, where ext is a file extension, and language 227848b8605Smrg# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, 228848b8605Smrg# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make 229848b8605Smrg# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C 230848b8605Smrg# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions 231848b8605Smrg# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. 232848b8605Smrg 233848b8605SmrgEXTENSION_MAPPING = 234848b8605Smrg 235848b8605Smrg# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 236848b8605Smrg# to include (a tag file for) the STL sources as input, then you should 237848b8605Smrg# set this tag to YES in order to let doxygen match functions declarations and 238848b8605Smrg# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 239848b8605Smrg# func(std::string) {}). This also makes the inheritance and collaboration 240848b8605Smrg# diagrams that involve STL classes more complete and accurate. 241848b8605Smrg 242848b8605SmrgBUILTIN_STL_SUPPORT = YES 243848b8605Smrg 244848b8605Smrg# If you use Microsoft's C++/CLI language, you should set this option to YES to 245848b8605Smrg# enable parsing support. 246848b8605Smrg 247848b8605SmrgCPP_CLI_SUPPORT = NO 248848b8605Smrg 249848b8605Smrg# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. 250848b8605Smrg# Doxygen will parse them like normal C++ but will assume all classes use public 251848b8605Smrg# instead of private inheritance when no explicit protection keyword is present. 252848b8605Smrg 253848b8605SmrgSIP_SUPPORT = NO 254848b8605Smrg 255848b8605Smrg# For Microsoft's IDL there are propget and propput attributes to indicate getter 256848b8605Smrg# and setter methods for a property. Setting this option to YES (the default) 257848b8605Smrg# will make doxygen replace the get and set methods by a property in the 258848b8605Smrg# documentation. This will only work if the methods are indeed getting or 259848b8605Smrg# setting a simple type. If this is not the case, or you want to show the 260848b8605Smrg# methods anyway, you should set this option to NO. 261848b8605Smrg 262848b8605SmrgIDL_PROPERTY_SUPPORT = YES 263848b8605Smrg 264848b8605Smrg# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 265848b8605Smrg# tag is set to YES, then doxygen will reuse the documentation of the first 266848b8605Smrg# member in the group (if any) for the other members of the group. By default 267848b8605Smrg# all members of a group must be documented explicitly. 268848b8605Smrg 269848b8605SmrgDISTRIBUTE_GROUP_DOC = NO 270848b8605Smrg 271848b8605Smrg# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 272848b8605Smrg# the same type (for instance a group of public functions) to be put as a 273848b8605Smrg# subgroup of that type (e.g. under the Public Functions section). Set it to 274848b8605Smrg# NO to prevent subgrouping. Alternatively, this can be done per class using 275848b8605Smrg# the \nosubgrouping command. 276848b8605Smrg 277848b8605SmrgSUBGROUPING = YES 278848b8605Smrg 279848b8605Smrg# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and 280848b8605Smrg# unions are shown inside the group in which they are included (e.g. using 281848b8605Smrg# @ingroup) instead of on a separate page (for HTML and Man pages) or 282848b8605Smrg# section (for LaTeX and RTF). 283848b8605Smrg 284848b8605SmrgINLINE_GROUPED_CLASSES = NO 285848b8605Smrg 286848b8605Smrg# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum 287848b8605Smrg# is documented as struct, union, or enum with the name of the typedef. So 288848b8605Smrg# typedef struct TypeS {} TypeT, will appear in the documentation as a struct 289848b8605Smrg# with name TypeT. When disabled the typedef will appear as a member of a file, 290848b8605Smrg# namespace, or class. And the struct will be named TypeS. This can typically 291848b8605Smrg# be useful for C code in case the coding convention dictates that all compound 292848b8605Smrg# types are typedef'ed and only the typedef is referenced, never the tag name. 293848b8605Smrg 294848b8605SmrgTYPEDEF_HIDES_STRUCT = NO 295848b8605Smrg 296848b8605Smrg# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to 297848b8605Smrg# determine which symbols to keep in memory and which to flush to disk. 298848b8605Smrg# When the cache is full, less often used symbols will be written to disk. 299848b8605Smrg# For small to medium size projects (<1000 input files) the default value is 300848b8605Smrg# probably good enough. For larger projects a too small cache size can cause 301848b8605Smrg# doxygen to be busy swapping symbols to and from disk most of the time 302848b8605Smrg# causing a significant performance penalty. 303848b8605Smrg# If the system has enough physical memory increasing the cache will improve the 304848b8605Smrg# performance by keeping more symbols in memory. Note that the value works on 305848b8605Smrg# a logarithmic scale so increasing the size by one will roughly double the 306848b8605Smrg# memory usage. The cache size is given by this formula: 307848b8605Smrg# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, 308848b8605Smrg# corresponding to a cache size of 2^16 = 65536 symbols 309848b8605Smrg 310848b8605SmrgSYMBOL_CACHE_SIZE = 0 311848b8605Smrg 312848b8605Smrg#--------------------------------------------------------------------------- 313848b8605Smrg# Build related configuration options 314848b8605Smrg#--------------------------------------------------------------------------- 315848b8605Smrg 316848b8605Smrg# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 317848b8605Smrg# documentation are documented, even if no documentation was available. 318848b8605Smrg# Private class members and static file members will be hidden unless 319848b8605Smrg# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 320848b8605Smrg 321848b8605SmrgEXTRACT_ALL = NO 322848b8605Smrg 323848b8605Smrg# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 324848b8605Smrg# will be included in the documentation. 325848b8605Smrg 326848b8605SmrgEXTRACT_PRIVATE = NO 327848b8605Smrg 328848b8605Smrg# If the EXTRACT_STATIC tag is set to YES all static members of a file 329848b8605Smrg# will be included in the documentation. 330848b8605Smrg 331848b8605SmrgEXTRACT_STATIC = NO 332848b8605Smrg 333848b8605Smrg# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 334848b8605Smrg# defined locally in source files will be included in the documentation. 335848b8605Smrg# If set to NO only classes defined in header files are included. 336848b8605Smrg 337848b8605SmrgEXTRACT_LOCAL_CLASSES = YES 338848b8605Smrg 339848b8605Smrg# This flag is only useful for Objective-C code. When set to YES local 340848b8605Smrg# methods, which are defined in the implementation section but not in 341848b8605Smrg# the interface are included in the documentation. 342848b8605Smrg# If set to NO (the default) only methods in the interface are included. 343848b8605Smrg 344848b8605SmrgEXTRACT_LOCAL_METHODS = NO 345848b8605Smrg 346848b8605Smrg# If this flag is set to YES, the members of anonymous namespaces will be 347848b8605Smrg# extracted and appear in the documentation as a namespace called 348848b8605Smrg# 'anonymous_namespace{file}', where file will be replaced with the base 349848b8605Smrg# name of the file that contains the anonymous namespace. By default 350848b8605Smrg# anonymous namespaces are hidden. 351848b8605Smrg 352848b8605SmrgEXTRACT_ANON_NSPACES = YES 353848b8605Smrg 354848b8605Smrg# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 355848b8605Smrg# undocumented members of documented classes, files or namespaces. 356848b8605Smrg# If set to NO (the default) these members will be included in the 357848b8605Smrg# various overviews, but no documentation section is generated. 358848b8605Smrg# This option has no effect if EXTRACT_ALL is enabled. 359848b8605Smrg 360848b8605SmrgHIDE_UNDOC_MEMBERS = NO 361848b8605Smrg 362848b8605Smrg# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 363848b8605Smrg# undocumented classes that are normally visible in the class hierarchy. 364848b8605Smrg# If set to NO (the default) these classes will be included in the various 365848b8605Smrg# overviews. This option has no effect if EXTRACT_ALL is enabled. 366848b8605Smrg 367848b8605SmrgHIDE_UNDOC_CLASSES = NO 368848b8605Smrg 369848b8605Smrg# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 370848b8605Smrg# friend (class|struct|union) declarations. 371848b8605Smrg# If set to NO (the default) these declarations will be included in the 372848b8605Smrg# documentation. 373848b8605Smrg 374848b8605SmrgHIDE_FRIEND_COMPOUNDS = NO 375848b8605Smrg 376848b8605Smrg# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 377848b8605Smrg# documentation blocks found inside the body of a function. 378848b8605Smrg# If set to NO (the default) these blocks will be appended to the 379848b8605Smrg# function's detailed documentation block. 380848b8605Smrg 381848b8605SmrgHIDE_IN_BODY_DOCS = NO 382848b8605Smrg 383848b8605Smrg# The INTERNAL_DOCS tag determines if documentation 384848b8605Smrg# that is typed after a \internal command is included. If the tag is set 385848b8605Smrg# to NO (the default) then the documentation will be excluded. 386848b8605Smrg# Set it to YES to include the internal documentation. 387848b8605Smrg 388848b8605SmrgINTERNAL_DOCS = NO 389848b8605Smrg 390848b8605Smrg# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 391848b8605Smrg# file names in lower-case letters. If set to YES upper-case letters are also 392848b8605Smrg# allowed. This is useful if you have classes or files whose names only differ 393848b8605Smrg# in case and if your file system supports case sensitive file names. Windows 394848b8605Smrg# and Mac users are advised to set this option to NO. 395848b8605Smrg 396848b8605SmrgCASE_SENSE_NAMES = YES 397848b8605Smrg 398848b8605Smrg# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 399848b8605Smrg# will show members with their full class and namespace scopes in the 400848b8605Smrg# documentation. If set to YES the scope will be hidden. 401848b8605Smrg 402848b8605SmrgHIDE_SCOPE_NAMES = NO 403848b8605Smrg 404848b8605Smrg# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 405848b8605Smrg# will put a list of the files that are included by a file in the documentation 406848b8605Smrg# of that file. 407848b8605Smrg 408848b8605SmrgSHOW_INCLUDE_FILES = YES 409848b8605Smrg 410848b8605Smrg# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen 411848b8605Smrg# will list include files with double quotes in the documentation 412848b8605Smrg# rather than with sharp brackets. 413848b8605Smrg 414848b8605SmrgFORCE_LOCAL_INCLUDES = NO 415848b8605Smrg 416848b8605Smrg# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 417848b8605Smrg# is inserted in the documentation for inline members. 418848b8605Smrg 419848b8605SmrgINLINE_INFO = YES 420848b8605Smrg 421848b8605Smrg# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 422848b8605Smrg# will sort the (detailed) documentation of file and class members 423848b8605Smrg# alphabetically by member name. If set to NO the members will appear in 424848b8605Smrg# declaration order. 425848b8605Smrg 426848b8605SmrgSORT_MEMBER_DOCS = YES 427848b8605Smrg 428848b8605Smrg# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 429848b8605Smrg# brief documentation of file, namespace and class members alphabetically 430848b8605Smrg# by member name. If set to NO (the default) the members will appear in 431848b8605Smrg# declaration order. 432848b8605Smrg 433848b8605SmrgSORT_BRIEF_DOCS = NO 434848b8605Smrg 435848b8605Smrg# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen 436848b8605Smrg# will sort the (brief and detailed) documentation of class members so that 437848b8605Smrg# constructors and destructors are listed first. If set to NO (the default) 438848b8605Smrg# the constructors will appear in the respective orders defined by 439848b8605Smrg# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. 440848b8605Smrg# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO 441848b8605Smrg# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. 442848b8605Smrg 443848b8605SmrgSORT_MEMBERS_CTORS_1ST = NO 444848b8605Smrg 445848b8605Smrg# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the 446848b8605Smrg# hierarchy of group names into alphabetical order. If set to NO (the default) 447848b8605Smrg# the group names will appear in their defined order. 448848b8605Smrg 449848b8605SmrgSORT_GROUP_NAMES = NO 450848b8605Smrg 451848b8605Smrg# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 452848b8605Smrg# sorted by fully-qualified names, including namespaces. If set to 453848b8605Smrg# NO (the default), the class list will be sorted only by class name, 454848b8605Smrg# not including the namespace part. 455848b8605Smrg# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 456848b8605Smrg# Note: This option applies only to the class list, not to the 457848b8605Smrg# alphabetical list. 458848b8605Smrg 459848b8605SmrgSORT_BY_SCOPE_NAME = NO 460848b8605Smrg 461848b8605Smrg# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to 462848b8605Smrg# do proper type resolution of all parameters of a function it will reject a 463848b8605Smrg# match between the prototype and the implementation of a member function even 464848b8605Smrg# if there is only one candidate or it is obvious which candidate to choose 465848b8605Smrg# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen 466848b8605Smrg# will still accept a match between prototype and implementation in such cases. 467848b8605Smrg 468848b8605SmrgSTRICT_PROTO_MATCHING = NO 469848b8605Smrg 470848b8605Smrg# The GENERATE_TODOLIST tag can be used to enable (YES) or 471848b8605Smrg# disable (NO) the todo list. This list is created by putting \todo 472848b8605Smrg# commands in the documentation. 473848b8605Smrg 474848b8605SmrgGENERATE_TODOLIST = YES 475848b8605Smrg 476848b8605Smrg# The GENERATE_TESTLIST tag can be used to enable (YES) or 477848b8605Smrg# disable (NO) the test list. This list is created by putting \test 478848b8605Smrg# commands in the documentation. 479848b8605Smrg 480848b8605SmrgGENERATE_TESTLIST = YES 481848b8605Smrg 482848b8605Smrg# The GENERATE_BUGLIST tag can be used to enable (YES) or 483848b8605Smrg# disable (NO) the bug list. This list is created by putting \bug 484848b8605Smrg# commands in the documentation. 485848b8605Smrg 486848b8605SmrgGENERATE_BUGLIST = YES 487848b8605Smrg 488848b8605Smrg# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 489848b8605Smrg# disable (NO) the deprecated list. This list is created by putting 490848b8605Smrg# \deprecated commands in the documentation. 491848b8605Smrg 492848b8605SmrgGENERATE_DEPRECATEDLIST= YES 493848b8605Smrg 494848b8605Smrg# The ENABLED_SECTIONS tag can be used to enable conditional 495848b8605Smrg# documentation sections, marked by \if sectionname ... \endif. 496848b8605Smrg 497848b8605SmrgENABLED_SECTIONS = 498848b8605Smrg 499848b8605Smrg# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 500848b8605Smrg# the initial value of a variable or macro consists of for it to appear in 501848b8605Smrg# the documentation. If the initializer consists of more lines than specified 502848b8605Smrg# here it will be hidden. Use a value of 0 to hide initializers completely. 503848b8605Smrg# The appearance of the initializer of individual variables and macros in the 504848b8605Smrg# documentation can be controlled using \showinitializer or \hideinitializer 505848b8605Smrg# command in the documentation regardless of this setting. 506848b8605Smrg 507848b8605SmrgMAX_INITIALIZER_LINES = 30 508848b8605Smrg 509848b8605Smrg# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 510848b8605Smrg# at the bottom of the documentation of classes and structs. If set to YES the 511848b8605Smrg# list will mention the files that were used to generate the documentation. 512848b8605Smrg 513848b8605SmrgSHOW_USED_FILES = YES 514848b8605Smrg 515848b8605Smrg# If the sources in your project are distributed over multiple directories 516848b8605Smrg# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 517848b8605Smrg# in the documentation. The default is NO. 518848b8605Smrg 519848b8605SmrgSHOW_DIRECTORIES = NO 520848b8605Smrg 521848b8605Smrg# Set the SHOW_FILES tag to NO to disable the generation of the Files page. 522848b8605Smrg# This will remove the Files entry from the Quick Index and from the 523848b8605Smrg# Folder Tree View (if specified). The default is YES. 524848b8605Smrg 525848b8605SmrgSHOW_FILES = YES 526848b8605Smrg 527848b8605Smrg# Set the SHOW_NAMESPACES tag to NO to disable the generation of the 528848b8605Smrg# Namespaces page. 529848b8605Smrg# This will remove the Namespaces entry from the Quick Index 530848b8605Smrg# and from the Folder Tree View (if specified). The default is YES. 531848b8605Smrg 532848b8605SmrgSHOW_NAMESPACES = YES 533848b8605Smrg 534848b8605Smrg# The FILE_VERSION_FILTER tag can be used to specify a program or script that 535848b8605Smrg# doxygen should invoke to get the current version for each file (typically from 536848b8605Smrg# the version control system). Doxygen will invoke the program by executing (via 537848b8605Smrg# popen()) the command <command> <input-file>, where <command> is the value of 538848b8605Smrg# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 539848b8605Smrg# provided by doxygen. Whatever the program writes to standard output 540848b8605Smrg# is used as the file version. See the manual for examples. 541848b8605Smrg 542848b8605SmrgFILE_VERSION_FILTER = 543848b8605Smrg 544848b8605Smrg# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed 545848b8605Smrg# by doxygen. The layout file controls the global structure of the generated 546848b8605Smrg# output files in an output format independent way. The create the layout file 547848b8605Smrg# that represents doxygen's defaults, run doxygen with the -l option. 548848b8605Smrg# You can optionally specify a file name after the option, if omitted 549848b8605Smrg# DoxygenLayout.xml will be used as the name of the layout file. 550848b8605Smrg 551848b8605SmrgLAYOUT_FILE = 552848b8605Smrg 553848b8605Smrg#--------------------------------------------------------------------------- 554848b8605Smrg# configuration options related to warning and progress messages 555848b8605Smrg#--------------------------------------------------------------------------- 556848b8605Smrg 557848b8605Smrg# The QUIET tag can be used to turn on/off the messages that are generated 558848b8605Smrg# by doxygen. Possible values are YES and NO. If left blank NO is used. 559848b8605Smrg 560848b8605SmrgQUIET = NO 561848b8605Smrg 562848b8605Smrg# The WARNINGS tag can be used to turn on/off the warning messages that are 563848b8605Smrg# generated by doxygen. Possible values are YES and NO. If left blank 564848b8605Smrg# NO is used. 565848b8605Smrg 566848b8605SmrgWARNINGS = YES 567848b8605Smrg 568848b8605Smrg# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 569848b8605Smrg# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 570848b8605Smrg# automatically be disabled. 571848b8605Smrg 572848b8605SmrgWARN_IF_UNDOCUMENTED = NO 573848b8605Smrg 574848b8605Smrg# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 575848b8605Smrg# potential errors in the documentation, such as not documenting some 576848b8605Smrg# parameters in a documented function, or documenting parameters that 577848b8605Smrg# don't exist or using markup commands wrongly. 578848b8605Smrg 579848b8605SmrgWARN_IF_DOC_ERROR = YES 580848b8605Smrg 581848b8605Smrg# The WARN_NO_PARAMDOC option can be enabled to get warnings for 582848b8605Smrg# functions that are documented, but have no documentation for their parameters 583848b8605Smrg# or return value. If set to NO (the default) doxygen will only warn about 584848b8605Smrg# wrong or incomplete parameter documentation, but not about the absence of 585848b8605Smrg# documentation. 586848b8605Smrg 587848b8605SmrgWARN_NO_PARAMDOC = NO 588848b8605Smrg 589848b8605Smrg# The WARN_FORMAT tag determines the format of the warning messages that 590848b8605Smrg# doxygen can produce. The string should contain the $file, $line, and $text 591848b8605Smrg# tags, which will be replaced by the file and line number from which the 592848b8605Smrg# warning originated and the warning text. Optionally the format may contain 593848b8605Smrg# $version, which will be replaced by the version of the file (if it could 594848b8605Smrg# be obtained via FILE_VERSION_FILTER) 595848b8605Smrg 596848b8605SmrgWARN_FORMAT = "$file:$line: $text" 597848b8605Smrg 598848b8605Smrg# The WARN_LOGFILE tag can be used to specify a file to which warning 599848b8605Smrg# and error messages should be written. If left blank the output is written 600848b8605Smrg# to stderr. 601848b8605Smrg 602848b8605SmrgWARN_LOGFILE = 603848b8605Smrg 604848b8605Smrg#--------------------------------------------------------------------------- 605848b8605Smrg# configuration options related to the input files 606848b8605Smrg#--------------------------------------------------------------------------- 607848b8605Smrg 608848b8605Smrg# The INPUT tag can be used to specify the files and/or directories that contain 609848b8605Smrg# documented source files. You may enter file names like "myfile.cpp" or 610848b8605Smrg# directories like "/usr/src/myproject". Separate the files or directories 611848b8605Smrg# with spaces. 612848b8605Smrg 613848b8605SmrgINPUT = api/ core/ util/ 614848b8605Smrg 615848b8605Smrg# This tag can be used to specify the character encoding of the source files 616848b8605Smrg# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is 617848b8605Smrg# also the default input encoding. Doxygen uses libiconv (or the iconv built 618848b8605Smrg# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for 619848b8605Smrg# the list of possible encodings. 620848b8605Smrg 621848b8605SmrgINPUT_ENCODING = UTF-8 622848b8605Smrg 623848b8605Smrg# If the value of the INPUT tag contains directories, you can use the 624848b8605Smrg# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 625848b8605Smrg# and *.h) to filter out the source-files in the directories. If left 626848b8605Smrg# blank the following patterns are tested: 627848b8605Smrg# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh 628848b8605Smrg# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py 629848b8605Smrg# *.f90 *.f *.for *.vhd *.vhdl 630848b8605Smrg 631848b8605SmrgFILE_PATTERNS = 632848b8605Smrg 633848b8605Smrg# The RECURSIVE tag can be used to turn specify whether or not subdirectories 634848b8605Smrg# should be searched for input files as well. Possible values are YES and NO. 635848b8605Smrg# If left blank NO is used. 636848b8605Smrg 637848b8605SmrgRECURSIVE = NO 638848b8605Smrg 639848b8605Smrg# The EXCLUDE tag can be used to specify files and/or directories that should 640848b8605Smrg# excluded from the INPUT source files. This way you can easily exclude a 641848b8605Smrg# subdirectory from a directory tree whose root is specified with the INPUT tag. 642848b8605Smrg 643848b8605SmrgEXCLUDE = 644848b8605Smrg 645848b8605Smrg# The EXCLUDE_SYMLINKS tag can be used select whether or not files or 646848b8605Smrg# directories that are symbolic links (a Unix file system feature) are excluded 647848b8605Smrg# from the input. 648848b8605Smrg 649848b8605SmrgEXCLUDE_SYMLINKS = NO 650848b8605Smrg 651848b8605Smrg# If the value of the INPUT tag contains directories, you can use the 652848b8605Smrg# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 653848b8605Smrg# certain files from those directories. Note that the wildcards are matched 654848b8605Smrg# against the file with absolute path, so to exclude all test directories 655848b8605Smrg# for example use the pattern */test/* 656848b8605Smrg 657848b8605SmrgEXCLUDE_PATTERNS = 658848b8605Smrg 659848b8605Smrg# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 660848b8605Smrg# (namespaces, classes, functions, etc.) that should be excluded from the 661848b8605Smrg# output. The symbol name can be a fully qualified name, a word, or if the 662848b8605Smrg# wildcard * is used, a substring. Examples: ANamespace, AClass, 663848b8605Smrg# AClass::ANamespace, ANamespace::*Test 664848b8605Smrg 665848b8605SmrgEXCLUDE_SYMBOLS = 666848b8605Smrg 667848b8605Smrg# The EXAMPLE_PATH tag can be used to specify one or more files or 668848b8605Smrg# directories that contain example code fragments that are included (see 669848b8605Smrg# the \include command). 670848b8605Smrg 671848b8605SmrgEXAMPLE_PATH = 672848b8605Smrg 673848b8605Smrg# If the value of the EXAMPLE_PATH tag contains directories, you can use the 674848b8605Smrg# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 675848b8605Smrg# and *.h) to filter out the source-files in the directories. If left 676848b8605Smrg# blank all files are included. 677848b8605Smrg 678848b8605SmrgEXAMPLE_PATTERNS = 679848b8605Smrg 680848b8605Smrg# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 681848b8605Smrg# searched for input files to be used with the \include or \dontinclude 682848b8605Smrg# commands irrespective of the value of the RECURSIVE tag. 683848b8605Smrg# Possible values are YES and NO. If left blank NO is used. 684848b8605Smrg 685848b8605SmrgEXAMPLE_RECURSIVE = NO 686848b8605Smrg 687848b8605Smrg# The IMAGE_PATH tag can be used to specify one or more files or 688848b8605Smrg# directories that contain image that are included in the documentation (see 689848b8605Smrg# the \image command). 690848b8605Smrg 691848b8605SmrgIMAGE_PATH = 692848b8605Smrg 693848b8605Smrg# The INPUT_FILTER tag can be used to specify a program that doxygen should 694848b8605Smrg# invoke to filter for each input file. Doxygen will invoke the filter program 695848b8605Smrg# by executing (via popen()) the command <filter> <input-file>, where <filter> 696848b8605Smrg# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 697848b8605Smrg# input file. Doxygen will then use the output that the filter program writes 698848b8605Smrg# to standard output. 699848b8605Smrg# If FILTER_PATTERNS is specified, this tag will be 700848b8605Smrg# ignored. 701848b8605Smrg 702848b8605SmrgINPUT_FILTER = 703848b8605Smrg 704848b8605Smrg# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 705848b8605Smrg# basis. 706848b8605Smrg# Doxygen will compare the file name with each pattern and apply the 707848b8605Smrg# filter if there is a match. 708848b8605Smrg# The filters are a list of the form: 709848b8605Smrg# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 710848b8605Smrg# info on how filters are used. If FILTER_PATTERNS is empty or if 711848b8605Smrg# non of the patterns match the file name, INPUT_FILTER is applied. 712848b8605Smrg 713848b8605SmrgFILTER_PATTERNS = 714848b8605Smrg 715848b8605Smrg# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 716848b8605Smrg# INPUT_FILTER) will be used to filter the input files when producing source 717848b8605Smrg# files to browse (i.e. when SOURCE_BROWSER is set to YES). 718848b8605Smrg 719848b8605SmrgFILTER_SOURCE_FILES = NO 720848b8605Smrg 721848b8605Smrg# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file 722848b8605Smrg# pattern. A pattern will override the setting for FILTER_PATTERN (if any) 723848b8605Smrg# and it is also possible to disable source filtering for a specific pattern 724848b8605Smrg# using *.ext= (so without naming a filter). This option only has effect when 725848b8605Smrg# FILTER_SOURCE_FILES is enabled. 726848b8605Smrg 727848b8605SmrgFILTER_SOURCE_PATTERNS = 728848b8605Smrg 729848b8605Smrg#--------------------------------------------------------------------------- 730848b8605Smrg# configuration options related to source browsing 731848b8605Smrg#--------------------------------------------------------------------------- 732848b8605Smrg 733848b8605Smrg# If the SOURCE_BROWSER tag is set to YES then a list of source files will 734848b8605Smrg# be generated. Documented entities will be cross-referenced with these sources. 735848b8605Smrg# Note: To get rid of all source code in the generated output, make sure also 736848b8605Smrg# VERBATIM_HEADERS is set to NO. 737848b8605Smrg 738848b8605SmrgSOURCE_BROWSER = NO 739848b8605Smrg 740848b8605Smrg# Setting the INLINE_SOURCES tag to YES will include the body 741848b8605Smrg# of functions and classes directly in the documentation. 742848b8605Smrg 743848b8605SmrgINLINE_SOURCES = NO 744848b8605Smrg 745848b8605Smrg# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 746848b8605Smrg# doxygen to hide any special comment blocks from generated source code 747848b8605Smrg# fragments. Normal C and C++ comments will always remain visible. 748848b8605Smrg 749848b8605SmrgSTRIP_CODE_COMMENTS = YES 750848b8605Smrg 751848b8605Smrg# If the REFERENCED_BY_RELATION tag is set to YES 752848b8605Smrg# then for each documented function all documented 753848b8605Smrg# functions referencing it will be listed. 754848b8605Smrg 755848b8605SmrgREFERENCED_BY_RELATION = NO 756848b8605Smrg 757848b8605Smrg# If the REFERENCES_RELATION tag is set to YES 758848b8605Smrg# then for each documented function all documented entities 759848b8605Smrg# called/used by that function will be listed. 760848b8605Smrg 761848b8605SmrgREFERENCES_RELATION = NO 762848b8605Smrg 763848b8605Smrg# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 764848b8605Smrg# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 765848b8605Smrg# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 766848b8605Smrg# link to the source code. 767848b8605Smrg# Otherwise they will link to the documentation. 768848b8605Smrg 769848b8605SmrgREFERENCES_LINK_SOURCE = YES 770848b8605Smrg 771848b8605Smrg# If the USE_HTAGS tag is set to YES then the references to source code 772848b8605Smrg# will point to the HTML generated by the htags(1) tool instead of doxygen 773848b8605Smrg# built-in source browser. The htags tool is part of GNU's global source 774848b8605Smrg# tagging system (see http://www.gnu.org/software/global/global.html). You 775848b8605Smrg# will need version 4.8.6 or higher. 776848b8605Smrg 777848b8605SmrgUSE_HTAGS = NO 778848b8605Smrg 779848b8605Smrg# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 780848b8605Smrg# will generate a verbatim copy of the header file for each class for 781848b8605Smrg# which an include is specified. Set to NO to disable this. 782848b8605Smrg 783848b8605SmrgVERBATIM_HEADERS = YES 784848b8605Smrg 785848b8605Smrg#--------------------------------------------------------------------------- 786848b8605Smrg# configuration options related to the alphabetical class index 787848b8605Smrg#--------------------------------------------------------------------------- 788848b8605Smrg 789848b8605Smrg# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 790848b8605Smrg# of all compounds will be generated. Enable this if the project 791848b8605Smrg# contains a lot of classes, structs, unions or interfaces. 792848b8605Smrg 793848b8605SmrgALPHABETICAL_INDEX = YES 794848b8605Smrg 795848b8605Smrg# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 796848b8605Smrg# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 797848b8605Smrg# in which this list will be split (can be a number in the range [1..20]) 798848b8605Smrg 799848b8605SmrgCOLS_IN_ALPHA_INDEX = 5 800848b8605Smrg 801848b8605Smrg# In case all classes in a project start with a common prefix, all 802848b8605Smrg# classes will be put under the same header in the alphabetical index. 803848b8605Smrg# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 804848b8605Smrg# should be ignored while generating the index headers. 805848b8605Smrg 806848b8605SmrgIGNORE_PREFIX = 807848b8605Smrg 808848b8605Smrg#--------------------------------------------------------------------------- 809848b8605Smrg# configuration options related to the HTML output 810848b8605Smrg#--------------------------------------------------------------------------- 811848b8605Smrg 812848b8605Smrg# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 813848b8605Smrg# generate HTML output. 814848b8605Smrg 815848b8605SmrgGENERATE_HTML = YES 816848b8605Smrg 817848b8605Smrg# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 818848b8605Smrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 819848b8605Smrg# put in front of it. If left blank `html' will be used as the default path. 820848b8605Smrg 821848b8605SmrgHTML_OUTPUT = html 822848b8605Smrg 823848b8605Smrg# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 824848b8605Smrg# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 825848b8605Smrg# doxygen will generate files with .html extension. 826848b8605Smrg 827848b8605SmrgHTML_FILE_EXTENSION = .html 828848b8605Smrg 829848b8605Smrg# The HTML_HEADER tag can be used to specify a personal HTML header for 830848b8605Smrg# each generated HTML page. If it is left blank doxygen will generate a 831848b8605Smrg# standard header. Note that when using a custom header you are responsible 832848b8605Smrg# for the proper inclusion of any scripts and style sheets that doxygen 833848b8605Smrg# needs, which is dependent on the configuration options used. 834848b8605Smrg# It is adviced to generate a default header using "doxygen -w html 835848b8605Smrg# header.html footer.html stylesheet.css YourConfigFile" and then modify 836848b8605Smrg# that header. Note that the header is subject to change so you typically 837848b8605Smrg# have to redo this when upgrading to a newer version of doxygen or when changing the value of configuration settings such as GENERATE_TREEVIEW! 838848b8605Smrg 839848b8605SmrgHTML_HEADER = 840848b8605Smrg 841848b8605Smrg# The HTML_FOOTER tag can be used to specify a personal HTML footer for 842848b8605Smrg# each generated HTML page. If it is left blank doxygen will generate a 843848b8605Smrg# standard footer. 844848b8605Smrg 845848b8605SmrgHTML_FOOTER = 846848b8605Smrg 847848b8605Smrg# The HTML_STYLESHEET tag can be used to specify a user-defined cascading 848848b8605Smrg# style sheet that is used by each HTML page. It can be used to 849848b8605Smrg# fine-tune the look of the HTML output. If the tag is left blank doxygen 850848b8605Smrg# will generate a default style sheet. Note that doxygen will try to copy 851848b8605Smrg# the style sheet file to the HTML output directory, so don't put your own 852848b8605Smrg# stylesheet in the HTML output directory as well, or it will be erased! 853848b8605Smrg 854848b8605SmrgHTML_STYLESHEET = 855848b8605Smrg 856848b8605Smrg# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or 857848b8605Smrg# other source files which should be copied to the HTML output directory. Note 858848b8605Smrg# that these files will be copied to the base HTML output directory. Use the 859848b8605Smrg# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these 860848b8605Smrg# files. In the HTML_STYLESHEET file, use the file name only. Also note that 861848b8605Smrg# the files will be copied as-is; there are no commands or markers available. 862848b8605Smrg 863848b8605SmrgHTML_EXTRA_FILES = 864848b8605Smrg 865848b8605Smrg# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. 866848b8605Smrg# Doxygen will adjust the colors in the stylesheet and background images 867848b8605Smrg# according to this color. Hue is specified as an angle on a colorwheel, 868848b8605Smrg# see http://en.wikipedia.org/wiki/Hue for more information. 869848b8605Smrg# For instance the value 0 represents red, 60 is yellow, 120 is green, 870848b8605Smrg# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. 871848b8605Smrg# The allowed range is 0 to 359. 872848b8605Smrg 873848b8605SmrgHTML_COLORSTYLE_HUE = 220 874848b8605Smrg 875848b8605Smrg# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of 876848b8605Smrg# the colors in the HTML output. For a value of 0 the output will use 877848b8605Smrg# grayscales only. A value of 255 will produce the most vivid colors. 878848b8605Smrg 879848b8605SmrgHTML_COLORSTYLE_SAT = 100 880848b8605Smrg 881848b8605Smrg# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to 882848b8605Smrg# the luminance component of the colors in the HTML output. Values below 883848b8605Smrg# 100 gradually make the output lighter, whereas values above 100 make 884848b8605Smrg# the output darker. The value divided by 100 is the actual gamma applied, 885848b8605Smrg# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, 886848b8605Smrg# and 100 does not change the gamma. 887848b8605Smrg 888848b8605SmrgHTML_COLORSTYLE_GAMMA = 80 889848b8605Smrg 890848b8605Smrg# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 891848b8605Smrg# page will contain the date and time when the page was generated. Setting 892848b8605Smrg# this to NO can help when comparing the output of multiple runs. 893848b8605Smrg 894848b8605SmrgHTML_TIMESTAMP = YES 895848b8605Smrg 896848b8605Smrg# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 897848b8605Smrg# files or namespaces will be aligned in HTML using tables. If set to 898848b8605Smrg# NO a bullet list will be used. 899848b8605Smrg 900848b8605SmrgHTML_ALIGN_MEMBERS = YES 901848b8605Smrg 902848b8605Smrg# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 903848b8605Smrg# documentation will contain sections that can be hidden and shown after the 904848b8605Smrg# page has loaded. For this to work a browser that supports 905848b8605Smrg# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox 906848b8605Smrg# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). 907848b8605Smrg 908848b8605SmrgHTML_DYNAMIC_SECTIONS = NO 909848b8605Smrg 910848b8605Smrg# If the GENERATE_DOCSET tag is set to YES, additional index files 911848b8605Smrg# will be generated that can be used as input for Apple's Xcode 3 912848b8605Smrg# integrated development environment, introduced with OSX 10.5 (Leopard). 913848b8605Smrg# To create a documentation set, doxygen will generate a Makefile in the 914848b8605Smrg# HTML output directory. Running make will produce the docset in that 915848b8605Smrg# directory and running "make install" will install the docset in 916848b8605Smrg# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find 917848b8605Smrg# it at startup. 918848b8605Smrg# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html 919848b8605Smrg# for more information. 920848b8605Smrg 921848b8605SmrgGENERATE_DOCSET = NO 922848b8605Smrg 923848b8605Smrg# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the 924848b8605Smrg# feed. A documentation feed provides an umbrella under which multiple 925848b8605Smrg# documentation sets from a single provider (such as a company or product suite) 926848b8605Smrg# can be grouped. 927848b8605Smrg 928848b8605SmrgDOCSET_FEEDNAME = "Doxygen generated docs" 929848b8605Smrg 930848b8605Smrg# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that 931848b8605Smrg# should uniquely identify the documentation set bundle. This should be a 932848b8605Smrg# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen 933848b8605Smrg# will append .docset to the name. 934848b8605Smrg 935848b8605SmrgDOCSET_BUNDLE_ID = org.doxygen.Project 936848b8605Smrg 937848b8605Smrg# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify 938848b8605Smrg# the documentation publisher. This should be a reverse domain-name style 939848b8605Smrg# string, e.g. com.mycompany.MyDocSet.documentation. 940848b8605Smrg 941848b8605SmrgDOCSET_PUBLISHER_ID = org.doxygen.Publisher 942848b8605Smrg 943848b8605Smrg# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. 944848b8605Smrg 945848b8605SmrgDOCSET_PUBLISHER_NAME = Publisher 946848b8605Smrg 947848b8605Smrg# If the GENERATE_HTMLHELP tag is set to YES, additional index files 948848b8605Smrg# will be generated that can be used as input for tools like the 949848b8605Smrg# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) 950848b8605Smrg# of the generated HTML documentation. 951848b8605Smrg 952848b8605SmrgGENERATE_HTMLHELP = NO 953848b8605Smrg 954848b8605Smrg# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 955848b8605Smrg# be used to specify the file name of the resulting .chm file. You 956848b8605Smrg# can add a path in front of the file if the result should not be 957848b8605Smrg# written to the html output directory. 958848b8605Smrg 959848b8605SmrgCHM_FILE = 960848b8605Smrg 961848b8605Smrg# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 962848b8605Smrg# be used to specify the location (absolute path including file name) of 963848b8605Smrg# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 964848b8605Smrg# the HTML help compiler on the generated index.hhp. 965848b8605Smrg 966848b8605SmrgHHC_LOCATION = 967848b8605Smrg 968848b8605Smrg# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 969848b8605Smrg# controls if a separate .chi index file is generated (YES) or that 970848b8605Smrg# it should be included in the master .chm file (NO). 971848b8605Smrg 972848b8605SmrgGENERATE_CHI = NO 973848b8605Smrg 974848b8605Smrg# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING 975848b8605Smrg# is used to encode HtmlHelp index (hhk), content (hhc) and project file 976848b8605Smrg# content. 977848b8605Smrg 978848b8605SmrgCHM_INDEX_ENCODING = 979848b8605Smrg 980848b8605Smrg# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 981848b8605Smrg# controls whether a binary table of contents is generated (YES) or a 982848b8605Smrg# normal table of contents (NO) in the .chm file. 983848b8605Smrg 984848b8605SmrgBINARY_TOC = NO 985848b8605Smrg 986848b8605Smrg# The TOC_EXPAND flag can be set to YES to add extra items for group members 987848b8605Smrg# to the contents of the HTML help documentation and to the tree view. 988848b8605Smrg 989848b8605SmrgTOC_EXPAND = NO 990848b8605Smrg 991848b8605Smrg# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and 992848b8605Smrg# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated 993848b8605Smrg# that can be used as input for Qt's qhelpgenerator to generate a 994848b8605Smrg# Qt Compressed Help (.qch) of the generated HTML documentation. 995848b8605Smrg 996848b8605SmrgGENERATE_QHP = NO 997848b8605Smrg 998848b8605Smrg# If the QHG_LOCATION tag is specified, the QCH_FILE tag can 999848b8605Smrg# be used to specify the file name of the resulting .qch file. 1000848b8605Smrg# The path specified is relative to the HTML output folder. 1001848b8605Smrg 1002848b8605SmrgQCH_FILE = 1003848b8605Smrg 1004848b8605Smrg# The QHP_NAMESPACE tag specifies the namespace to use when generating 1005848b8605Smrg# Qt Help Project output. For more information please see 1006848b8605Smrg# http://doc.trolltech.com/qthelpproject.html#namespace 1007848b8605Smrg 1008848b8605SmrgQHP_NAMESPACE = org.doxygen.Project 1009848b8605Smrg 1010848b8605Smrg# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating 1011848b8605Smrg# Qt Help Project output. For more information please see 1012848b8605Smrg# http://doc.trolltech.com/qthelpproject.html#virtual-folders 1013848b8605Smrg 1014848b8605SmrgQHP_VIRTUAL_FOLDER = doc 1015848b8605Smrg 1016848b8605Smrg# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to 1017848b8605Smrg# add. For more information please see 1018848b8605Smrg# http://doc.trolltech.com/qthelpproject.html#custom-filters 1019848b8605Smrg 1020848b8605SmrgQHP_CUST_FILTER_NAME = 1021848b8605Smrg 1022848b8605Smrg# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the 1023848b8605Smrg# custom filter to add. For more information please see 1024848b8605Smrg# <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters"> 1025848b8605Smrg# Qt Help Project / Custom Filters</a>. 1026848b8605Smrg 1027848b8605SmrgQHP_CUST_FILTER_ATTRS = 1028848b8605Smrg 1029848b8605Smrg# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this 1030848b8605Smrg# project's 1031848b8605Smrg# filter section matches. 1032848b8605Smrg# <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes"> 1033848b8605Smrg# Qt Help Project / Filter Attributes</a>. 1034848b8605Smrg 1035848b8605SmrgQHP_SECT_FILTER_ATTRS = 1036848b8605Smrg 1037848b8605Smrg# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can 1038848b8605Smrg# be used to specify the location of Qt's qhelpgenerator. 1039848b8605Smrg# If non-empty doxygen will try to run qhelpgenerator on the generated 1040848b8605Smrg# .qhp file. 1041848b8605Smrg 1042848b8605SmrgQHG_LOCATION = 1043848b8605Smrg 1044848b8605Smrg# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files 1045848b8605Smrg# will be generated, which together with the HTML files, form an Eclipse help 1046848b8605Smrg# plugin. To install this plugin and make it available under the help contents 1047848b8605Smrg# menu in Eclipse, the contents of the directory containing the HTML and XML 1048848b8605Smrg# files needs to be copied into the plugins directory of eclipse. The name of 1049848b8605Smrg# the directory within the plugins directory should be the same as 1050848b8605Smrg# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before 1051848b8605Smrg# the help appears. 1052848b8605Smrg 1053848b8605SmrgGENERATE_ECLIPSEHELP = NO 1054848b8605Smrg 1055848b8605Smrg# A unique identifier for the eclipse help plugin. When installing the plugin 1056848b8605Smrg# the directory name containing the HTML and XML files should also have 1057848b8605Smrg# this name. 1058848b8605Smrg 1059848b8605SmrgECLIPSE_DOC_ID = org.doxygen.Project 1060848b8605Smrg 1061848b8605Smrg# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 1062848b8605Smrg# top of each HTML page. The value NO (the default) enables the index and 1063848b8605Smrg# the value YES disables it. 1064848b8605Smrg 1065848b8605SmrgDISABLE_INDEX = NO 1066848b8605Smrg 1067848b8605Smrg# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values 1068848b8605Smrg# (range [0,1..20]) that doxygen will group on one line in the generated HTML 1069848b8605Smrg# documentation. Note that a value of 0 will completely suppress the enum 1070848b8605Smrg# values from appearing in the overview section. 1071848b8605Smrg 1072848b8605SmrgENUM_VALUES_PER_LINE = 4 1073848b8605Smrg 1074848b8605Smrg# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index 1075848b8605Smrg# structure should be generated to display hierarchical information. 1076848b8605Smrg# If the tag value is set to YES, a side panel will be generated 1077848b8605Smrg# containing a tree-like index structure (just like the one that 1078848b8605Smrg# is generated for HTML Help). For this to work a browser that supports 1079848b8605Smrg# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). 1080848b8605Smrg# Windows users are probably better off using the HTML help feature. 1081848b8605Smrg 1082848b8605SmrgGENERATE_TREEVIEW = NO 1083848b8605Smrg 1084848b8605Smrg# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, 1085848b8605Smrg# and Class Hierarchy pages using a tree view instead of an ordered list. 1086848b8605Smrg 1087848b8605SmrgUSE_INLINE_TREES = NO 1088848b8605Smrg 1089848b8605Smrg# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 1090848b8605Smrg# used to set the initial width (in pixels) of the frame in which the tree 1091848b8605Smrg# is shown. 1092848b8605Smrg 1093848b8605SmrgTREEVIEW_WIDTH = 250 1094848b8605Smrg 1095848b8605Smrg# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open 1096848b8605Smrg# links to external symbols imported via tag files in a separate window. 1097848b8605Smrg 1098848b8605SmrgEXT_LINKS_IN_WINDOW = NO 1099848b8605Smrg 1100848b8605Smrg# Use this tag to change the font size of Latex formulas included 1101848b8605Smrg# as images in the HTML documentation. The default is 10. Note that 1102848b8605Smrg# when you change the font size after a successful doxygen run you need 1103848b8605Smrg# to manually remove any form_*.png images from the HTML output directory 1104848b8605Smrg# to force them to be regenerated. 1105848b8605Smrg 1106848b8605SmrgFORMULA_FONTSIZE = 10 1107848b8605Smrg 1108848b8605Smrg# Use the FORMULA_TRANPARENT tag to determine whether or not the images 1109848b8605Smrg# generated for formulas are transparent PNGs. Transparent PNGs are 1110848b8605Smrg# not supported properly for IE 6.0, but are supported on all modern browsers. 1111848b8605Smrg# Note that when changing this option you need to delete any form_*.png files 1112848b8605Smrg# in the HTML output before the changes have effect. 1113848b8605Smrg 1114848b8605SmrgFORMULA_TRANSPARENT = YES 1115848b8605Smrg 1116848b8605Smrg# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax 1117848b8605Smrg# (see http://www.mathjax.org) which uses client side Javascript for the 1118848b8605Smrg# rendering instead of using prerendered bitmaps. Use this if you do not 1119848b8605Smrg# have LaTeX installed or if you want to formulas look prettier in the HTML 1120848b8605Smrg# output. When enabled you also need to install MathJax separately and 1121848b8605Smrg# configure the path to it using the MATHJAX_RELPATH option. 1122848b8605Smrg 1123848b8605SmrgUSE_MATHJAX = NO 1124848b8605Smrg 1125848b8605Smrg# When MathJax is enabled you need to specify the location relative to the 1126848b8605Smrg# HTML output directory using the MATHJAX_RELPATH option. The destination 1127848b8605Smrg# directory should contain the MathJax.js script. For instance, if the mathjax 1128848b8605Smrg# directory is located at the same level as the HTML output directory, then 1129848b8605Smrg# MATHJAX_RELPATH should be ../mathjax. The default value points to the 1130848b8605Smrg# mathjax.org site, so you can quickly see the result without installing 1131848b8605Smrg# MathJax, but it is strongly recommended to install a local copy of MathJax 1132848b8605Smrg# before deployment. 1133848b8605Smrg 1134848b8605SmrgMATHJAX_RELPATH = http://www.mathjax.org/mathjax 1135848b8605Smrg 1136848b8605Smrg# When the SEARCHENGINE tag is enabled doxygen will generate a search box 1137848b8605Smrg# for the HTML output. The underlying search engine uses javascript 1138848b8605Smrg# and DHTML and should work on any modern browser. Note that when using 1139848b8605Smrg# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets 1140848b8605Smrg# (GENERATE_DOCSET) there is already a search function so this one should 1141848b8605Smrg# typically be disabled. For large projects the javascript based search engine 1142848b8605Smrg# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. 1143848b8605Smrg 1144848b8605SmrgSEARCHENGINE = YES 1145848b8605Smrg 1146848b8605Smrg# When the SERVER_BASED_SEARCH tag is enabled the search engine will be 1147848b8605Smrg# implemented using a PHP enabled web server instead of at the web client 1148848b8605Smrg# using Javascript. Doxygen will generate the search PHP script and index 1149848b8605Smrg# file to put on the web server. The advantage of the server 1150848b8605Smrg# based approach is that it scales better to large projects and allows 1151848b8605Smrg# full text search. The disadvantages are that it is more difficult to setup 1152848b8605Smrg# and does not have live searching capabilities. 1153848b8605Smrg 1154848b8605SmrgSERVER_BASED_SEARCH = NO 1155848b8605Smrg 1156848b8605Smrg#--------------------------------------------------------------------------- 1157848b8605Smrg# configuration options related to the LaTeX output 1158848b8605Smrg#--------------------------------------------------------------------------- 1159848b8605Smrg 1160848b8605Smrg# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 1161848b8605Smrg# generate Latex output. 1162848b8605Smrg 1163848b8605SmrgGENERATE_LATEX = YES 1164848b8605Smrg 1165848b8605Smrg# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 1166848b8605Smrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 1167848b8605Smrg# put in front of it. If left blank `latex' will be used as the default path. 1168848b8605Smrg 1169848b8605SmrgLATEX_OUTPUT = latex 1170848b8605Smrg 1171848b8605Smrg# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 1172848b8605Smrg# invoked. If left blank `latex' will be used as the default command name. 1173848b8605Smrg# Note that when enabling USE_PDFLATEX this option is only used for 1174848b8605Smrg# generating bitmaps for formulas in the HTML output, but not in the 1175848b8605Smrg# Makefile that is written to the output directory. 1176848b8605Smrg 1177848b8605SmrgLATEX_CMD_NAME = latex 1178848b8605Smrg 1179848b8605Smrg# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 1180848b8605Smrg# generate index for LaTeX. If left blank `makeindex' will be used as the 1181848b8605Smrg# default command name. 1182848b8605Smrg 1183848b8605SmrgMAKEINDEX_CMD_NAME = makeindex 1184848b8605Smrg 1185848b8605Smrg# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 1186848b8605Smrg# LaTeX documents. This may be useful for small projects and may help to 1187848b8605Smrg# save some trees in general. 1188848b8605Smrg 1189848b8605SmrgCOMPACT_LATEX = NO 1190848b8605Smrg 1191848b8605Smrg# The PAPER_TYPE tag can be used to set the paper type that is used 1192848b8605Smrg# by the printer. Possible values are: a4, letter, legal and 1193848b8605Smrg# executive. If left blank a4wide will be used. 1194848b8605Smrg 1195848b8605SmrgPAPER_TYPE = a4 1196848b8605Smrg 1197848b8605Smrg# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 1198848b8605Smrg# packages that should be included in the LaTeX output. 1199848b8605Smrg 1200848b8605SmrgEXTRA_PACKAGES = 1201848b8605Smrg 1202848b8605Smrg# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 1203848b8605Smrg# the generated latex document. The header should contain everything until 1204848b8605Smrg# the first chapter. If it is left blank doxygen will generate a 1205848b8605Smrg# standard header. Notice: only use this tag if you know what you are doing! 1206848b8605Smrg 1207848b8605SmrgLATEX_HEADER = 1208848b8605Smrg 1209848b8605Smrg# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for 1210848b8605Smrg# the generated latex document. The footer should contain everything after 1211848b8605Smrg# the last chapter. If it is left blank doxygen will generate a 1212848b8605Smrg# standard footer. Notice: only use this tag if you know what you are doing! 1213848b8605Smrg 1214848b8605SmrgLATEX_FOOTER = 1215848b8605Smrg 1216848b8605Smrg# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 1217848b8605Smrg# is prepared for conversion to pdf (using ps2pdf). The pdf file will 1218848b8605Smrg# contain links (just like the HTML output) instead of page references 1219848b8605Smrg# This makes the output suitable for online browsing using a pdf viewer. 1220848b8605Smrg 1221848b8605SmrgPDF_HYPERLINKS = YES 1222848b8605Smrg 1223848b8605Smrg# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 1224848b8605Smrg# plain latex in the generated Makefile. Set this option to YES to get a 1225848b8605Smrg# higher quality PDF documentation. 1226848b8605Smrg 1227848b8605SmrgUSE_PDFLATEX = YES 1228848b8605Smrg 1229848b8605Smrg# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 1230848b8605Smrg# command to the generated LaTeX files. This will instruct LaTeX to keep 1231848b8605Smrg# running if errors occur, instead of asking the user for help. 1232848b8605Smrg# This option is also used when generating formulas in HTML. 1233848b8605Smrg 1234848b8605SmrgLATEX_BATCHMODE = NO 1235848b8605Smrg 1236848b8605Smrg# If LATEX_HIDE_INDICES is set to YES then doxygen will not 1237848b8605Smrg# include the index chapters (such as File Index, Compound Index, etc.) 1238848b8605Smrg# in the output. 1239848b8605Smrg 1240848b8605SmrgLATEX_HIDE_INDICES = NO 1241848b8605Smrg 1242848b8605Smrg# If LATEX_SOURCE_CODE is set to YES then doxygen will include 1243848b8605Smrg# source code with syntax highlighting in the LaTeX output. 1244848b8605Smrg# Note that which sources are shown also depends on other settings 1245848b8605Smrg# such as SOURCE_BROWSER. 1246848b8605Smrg 1247848b8605SmrgLATEX_SOURCE_CODE = NO 1248848b8605Smrg 1249848b8605Smrg#--------------------------------------------------------------------------- 1250848b8605Smrg# configuration options related to the RTF output 1251848b8605Smrg#--------------------------------------------------------------------------- 1252848b8605Smrg 1253848b8605Smrg# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 1254848b8605Smrg# The RTF output is optimized for Word 97 and may not look very pretty with 1255848b8605Smrg# other RTF readers or editors. 1256848b8605Smrg 1257848b8605SmrgGENERATE_RTF = NO 1258848b8605Smrg 1259848b8605Smrg# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 1260848b8605Smrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 1261848b8605Smrg# put in front of it. If left blank `rtf' will be used as the default path. 1262848b8605Smrg 1263848b8605SmrgRTF_OUTPUT = rtf 1264848b8605Smrg 1265848b8605Smrg# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 1266848b8605Smrg# RTF documents. This may be useful for small projects and may help to 1267848b8605Smrg# save some trees in general. 1268848b8605Smrg 1269848b8605SmrgCOMPACT_RTF = NO 1270848b8605Smrg 1271848b8605Smrg# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 1272848b8605Smrg# will contain hyperlink fields. The RTF file will 1273848b8605Smrg# contain links (just like the HTML output) instead of page references. 1274848b8605Smrg# This makes the output suitable for online browsing using WORD or other 1275848b8605Smrg# programs which support those fields. 1276848b8605Smrg# Note: wordpad (write) and others do not support links. 1277848b8605Smrg 1278848b8605SmrgRTF_HYPERLINKS = NO 1279848b8605Smrg 1280848b8605Smrg# Load stylesheet definitions from file. Syntax is similar to doxygen's 1281848b8605Smrg# config file, i.e. a series of assignments. You only have to provide 1282848b8605Smrg# replacements, missing definitions are set to their default value. 1283848b8605Smrg 1284848b8605SmrgRTF_STYLESHEET_FILE = 1285848b8605Smrg 1286848b8605Smrg# Set optional variables used in the generation of an rtf document. 1287848b8605Smrg# Syntax is similar to doxygen's config file. 1288848b8605Smrg 1289848b8605SmrgRTF_EXTENSIONS_FILE = 1290848b8605Smrg 1291848b8605Smrg#--------------------------------------------------------------------------- 1292848b8605Smrg# configuration options related to the man page output 1293848b8605Smrg#--------------------------------------------------------------------------- 1294848b8605Smrg 1295848b8605Smrg# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 1296848b8605Smrg# generate man pages 1297848b8605Smrg 1298848b8605SmrgGENERATE_MAN = NO 1299848b8605Smrg 1300848b8605Smrg# The MAN_OUTPUT tag is used to specify where the man pages will be put. 1301848b8605Smrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 1302848b8605Smrg# put in front of it. If left blank `man' will be used as the default path. 1303848b8605Smrg 1304848b8605SmrgMAN_OUTPUT = man 1305848b8605Smrg 1306848b8605Smrg# The MAN_EXTENSION tag determines the extension that is added to 1307848b8605Smrg# the generated man pages (default is the subroutine's section .3) 1308848b8605Smrg 1309848b8605SmrgMAN_EXTENSION = .3 1310848b8605Smrg 1311848b8605Smrg# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 1312848b8605Smrg# then it will generate one additional man file for each entity 1313848b8605Smrg# documented in the real man page(s). These additional files 1314848b8605Smrg# only source the real man page, but without them the man command 1315848b8605Smrg# would be unable to find the correct page. The default is NO. 1316848b8605Smrg 1317848b8605SmrgMAN_LINKS = NO 1318848b8605Smrg 1319848b8605Smrg#--------------------------------------------------------------------------- 1320848b8605Smrg# configuration options related to the XML output 1321848b8605Smrg#--------------------------------------------------------------------------- 1322848b8605Smrg 1323848b8605Smrg# If the GENERATE_XML tag is set to YES Doxygen will 1324848b8605Smrg# generate an XML file that captures the structure of 1325848b8605Smrg# the code including all documentation. 1326848b8605Smrg 1327848b8605SmrgGENERATE_XML = NO 1328848b8605Smrg 1329848b8605Smrg# The XML_OUTPUT tag is used to specify where the XML pages will be put. 1330848b8605Smrg# If a relative path is entered the value of OUTPUT_DIRECTORY will be 1331848b8605Smrg# put in front of it. If left blank `xml' will be used as the default path. 1332848b8605Smrg 1333848b8605SmrgXML_OUTPUT = xml 1334848b8605Smrg 1335848b8605Smrg# The XML_SCHEMA tag can be used to specify an XML schema, 1336848b8605Smrg# which can be used by a validating XML parser to check the 1337848b8605Smrg# syntax of the XML files. 1338848b8605Smrg 1339848b8605SmrgXML_SCHEMA = 1340848b8605Smrg 1341848b8605Smrg# The XML_DTD tag can be used to specify an XML DTD, 1342848b8605Smrg# which can be used by a validating XML parser to check the 1343848b8605Smrg# syntax of the XML files. 1344848b8605Smrg 1345848b8605SmrgXML_DTD = 1346848b8605Smrg 1347848b8605Smrg# If the XML_PROGRAMLISTING tag is set to YES Doxygen will 1348848b8605Smrg# dump the program listings (including syntax highlighting 1349848b8605Smrg# and cross-referencing information) to the XML output. Note that 1350848b8605Smrg# enabling this will significantly increase the size of the XML output. 1351848b8605Smrg 1352848b8605SmrgXML_PROGRAMLISTING = YES 1353848b8605Smrg 1354848b8605Smrg#--------------------------------------------------------------------------- 1355848b8605Smrg# configuration options for the AutoGen Definitions output 1356848b8605Smrg#--------------------------------------------------------------------------- 1357848b8605Smrg 1358848b8605Smrg# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 1359848b8605Smrg# generate an AutoGen Definitions (see autogen.sf.net) file 1360848b8605Smrg# that captures the structure of the code including all 1361848b8605Smrg# documentation. Note that this feature is still experimental 1362848b8605Smrg# and incomplete at the moment. 1363848b8605Smrg 1364848b8605SmrgGENERATE_AUTOGEN_DEF = NO 1365848b8605Smrg 1366848b8605Smrg#--------------------------------------------------------------------------- 1367848b8605Smrg# configuration options related to the Perl module output 1368848b8605Smrg#--------------------------------------------------------------------------- 1369848b8605Smrg 1370848b8605Smrg# If the GENERATE_PERLMOD tag is set to YES Doxygen will 1371848b8605Smrg# generate a Perl module file that captures the structure of 1372848b8605Smrg# the code including all documentation. Note that this 1373848b8605Smrg# feature is still experimental and incomplete at the 1374848b8605Smrg# moment. 1375848b8605Smrg 1376848b8605SmrgGENERATE_PERLMOD = NO 1377848b8605Smrg 1378848b8605Smrg# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 1379848b8605Smrg# the necessary Makefile rules, Perl scripts and LaTeX code to be able 1380848b8605Smrg# to generate PDF and DVI output from the Perl module output. 1381848b8605Smrg 1382848b8605SmrgPERLMOD_LATEX = NO 1383848b8605Smrg 1384848b8605Smrg# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 1385848b8605Smrg# nicely formatted so it can be parsed by a human reader. 1386848b8605Smrg# This is useful 1387848b8605Smrg# if you want to understand what is going on. 1388848b8605Smrg# On the other hand, if this 1389848b8605Smrg# tag is set to NO the size of the Perl module output will be much smaller 1390848b8605Smrg# and Perl will parse it just the same. 1391848b8605Smrg 1392848b8605SmrgPERLMOD_PRETTY = YES 1393848b8605Smrg 1394848b8605Smrg# The names of the make variables in the generated doxyrules.make file 1395848b8605Smrg# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 1396848b8605Smrg# This is useful so different doxyrules.make files included by the same 1397848b8605Smrg# Makefile don't overwrite each other's variables. 1398848b8605Smrg 1399848b8605SmrgPERLMOD_MAKEVAR_PREFIX = 1400848b8605Smrg 1401848b8605Smrg#--------------------------------------------------------------------------- 1402848b8605Smrg# Configuration options related to the preprocessor 1403848b8605Smrg#--------------------------------------------------------------------------- 1404848b8605Smrg 1405848b8605Smrg# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 1406848b8605Smrg# evaluate all C-preprocessor directives found in the sources and include 1407848b8605Smrg# files. 1408848b8605Smrg 1409848b8605SmrgENABLE_PREPROCESSING = YES 1410848b8605Smrg 1411848b8605Smrg# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 1412848b8605Smrg# names in the source code. If set to NO (the default) only conditional 1413848b8605Smrg# compilation will be performed. Macro expansion can be done in a controlled 1414848b8605Smrg# way by setting EXPAND_ONLY_PREDEF to YES. 1415848b8605Smrg 1416848b8605SmrgMACRO_EXPANSION = NO 1417848b8605Smrg 1418848b8605Smrg# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 1419848b8605Smrg# then the macro expansion is limited to the macros specified with the 1420848b8605Smrg# PREDEFINED and EXPAND_AS_DEFINED tags. 1421848b8605Smrg 1422848b8605SmrgEXPAND_ONLY_PREDEF = NO 1423848b8605Smrg 1424848b8605Smrg# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 1425848b8605Smrg# pointed to by INCLUDE_PATH will be searched when a #include is found. 1426848b8605Smrg 1427848b8605SmrgSEARCH_INCLUDES = YES 1428848b8605Smrg 1429848b8605Smrg# The INCLUDE_PATH tag can be used to specify one or more directories that 1430848b8605Smrg# contain include files that are not input files but should be processed by 1431848b8605Smrg# the preprocessor. 1432848b8605Smrg 1433848b8605SmrgINCLUDE_PATH = 1434848b8605Smrg 1435848b8605Smrg# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 1436848b8605Smrg# patterns (like *.h and *.hpp) to filter out the header-files in the 1437848b8605Smrg# directories. If left blank, the patterns specified with FILE_PATTERNS will 1438848b8605Smrg# be used. 1439848b8605Smrg 1440848b8605SmrgINCLUDE_FILE_PATTERNS = 1441848b8605Smrg 1442848b8605Smrg# The PREDEFINED tag can be used to specify one or more macro names that 1443848b8605Smrg# are defined before the preprocessor is started (similar to the -D option of 1444848b8605Smrg# gcc). The argument of the tag is a list of macros of the form: name 1445848b8605Smrg# or name=definition (no spaces). If the definition and the = are 1446848b8605Smrg# omitted =1 is assumed. To prevent a macro definition from being 1447848b8605Smrg# undefined via #undef or recursively expanded use the := operator 1448848b8605Smrg# instead of the = operator. 1449848b8605Smrg 1450848b8605SmrgPREDEFINED = 1451848b8605Smrg 1452848b8605Smrg# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 1453848b8605Smrg# this tag can be used to specify a list of macro names that should be expanded. 1454848b8605Smrg# The macro definition that is found in the sources will be used. 1455848b8605Smrg# Use the PREDEFINED tag if you want to use a different macro definition that 1456848b8605Smrg# overrules the definition found in the source code. 1457848b8605Smrg 1458848b8605SmrgEXPAND_AS_DEFINED = 1459848b8605Smrg 1460848b8605Smrg# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 1461848b8605Smrg# doxygen's preprocessor will remove all references to function-like macros 1462848b8605Smrg# that are alone on a line, have an all uppercase name, and do not end with a 1463848b8605Smrg# semicolon, because these will confuse the parser if not removed. 1464848b8605Smrg 1465848b8605SmrgSKIP_FUNCTION_MACROS = YES 1466848b8605Smrg 1467848b8605Smrg#--------------------------------------------------------------------------- 1468848b8605Smrg# Configuration::additions related to external references 1469848b8605Smrg#--------------------------------------------------------------------------- 1470848b8605Smrg 1471848b8605Smrg# The TAGFILES option can be used to specify one or more tagfiles. 1472848b8605Smrg# Optionally an initial location of the external documentation 1473848b8605Smrg# can be added for each tagfile. The format of a tag file without 1474848b8605Smrg# this location is as follows: 1475848b8605Smrg# 1476848b8605Smrg# TAGFILES = file1 file2 ... 1477848b8605Smrg# Adding location for the tag files is done as follows: 1478848b8605Smrg# 1479848b8605Smrg# TAGFILES = file1=loc1 "file2 = loc2" ... 1480848b8605Smrg# where "loc1" and "loc2" can be relative or absolute paths or 1481848b8605Smrg# URLs. If a location is present for each tag, the installdox tool 1482848b8605Smrg# does not have to be run to correct the links. 1483848b8605Smrg# Note that each tag file must have a unique name 1484848b8605Smrg# (where the name does NOT include the path) 1485848b8605Smrg# If a tag file is not located in the directory in which doxygen 1486848b8605Smrg# is run, you must also specify the path to the tagfile here. 1487848b8605Smrg 1488848b8605SmrgTAGFILES = 1489848b8605Smrg 1490848b8605Smrg# When a file name is specified after GENERATE_TAGFILE, doxygen will create 1491848b8605Smrg# a tag file that is based on the input files it reads. 1492848b8605Smrg 1493848b8605SmrgGENERATE_TAGFILE = 1494848b8605Smrg 1495848b8605Smrg# If the ALLEXTERNALS tag is set to YES all external classes will be listed 1496848b8605Smrg# in the class index. If set to NO only the inherited external classes 1497848b8605Smrg# will be listed. 1498848b8605Smrg 1499848b8605SmrgALLEXTERNALS = NO 1500848b8605Smrg 1501848b8605Smrg# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 1502848b8605Smrg# in the modules index. If set to NO, only the current project's groups will 1503848b8605Smrg# be listed. 1504848b8605Smrg 1505848b8605SmrgEXTERNAL_GROUPS = YES 1506848b8605Smrg 1507848b8605Smrg# The PERL_PATH should be the absolute path and name of the perl script 1508848b8605Smrg# interpreter (i.e. the result of `which perl'). 1509848b8605Smrg 1510848b8605SmrgPERL_PATH = /usr/bin/perl 1511848b8605Smrg 1512848b8605Smrg#--------------------------------------------------------------------------- 1513848b8605Smrg# Configuration options related to the dot tool 1514848b8605Smrg#--------------------------------------------------------------------------- 1515848b8605Smrg 1516848b8605Smrg# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 1517848b8605Smrg# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 1518848b8605Smrg# or super classes. Setting the tag to NO turns the diagrams off. Note that 1519848b8605Smrg# this option also works with HAVE_DOT disabled, but it is recommended to 1520848b8605Smrg# install and use dot, since it yields more powerful graphs. 1521848b8605Smrg 1522848b8605SmrgCLASS_DIAGRAMS = YES 1523848b8605Smrg 1524848b8605Smrg# You can define message sequence charts within doxygen comments using the \msc 1525848b8605Smrg# command. Doxygen will then run the mscgen tool (see 1526848b8605Smrg# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the 1527848b8605Smrg# documentation. The MSCGEN_PATH tag allows you to specify the directory where 1528848b8605Smrg# the mscgen tool resides. If left empty the tool is assumed to be found in the 1529848b8605Smrg# default search path. 1530848b8605Smrg 1531848b8605SmrgMSCGEN_PATH = 1532848b8605Smrg 1533848b8605Smrg# If set to YES, the inheritance and collaboration graphs will hide 1534848b8605Smrg# inheritance and usage relations if the target is undocumented 1535848b8605Smrg# or is not a class. 1536848b8605Smrg 1537848b8605SmrgHIDE_UNDOC_RELATIONS = YES 1538848b8605Smrg 1539848b8605Smrg# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 1540848b8605Smrg# available from the path. This tool is part of Graphviz, a graph visualization 1541848b8605Smrg# toolkit from AT&T and Lucent Bell Labs. The other options in this section 1542848b8605Smrg# have no effect if this option is set to NO (the default) 1543848b8605Smrg 1544848b8605SmrgHAVE_DOT = NO 1545848b8605Smrg 1546848b8605Smrg# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is 1547848b8605Smrg# allowed to run in parallel. When set to 0 (the default) doxygen will 1548848b8605Smrg# base this on the number of processors available in the system. You can set it 1549848b8605Smrg# explicitly to a value larger than 0 to get control over the balance 1550848b8605Smrg# between CPU load and processing speed. 1551848b8605Smrg 1552848b8605SmrgDOT_NUM_THREADS = 0 1553848b8605Smrg 1554848b8605Smrg# By default doxygen will write a font called Helvetica to the output 1555848b8605Smrg# directory and reference it in all dot files that doxygen generates. 1556848b8605Smrg# When you want a differently looking font you can specify the font name 1557848b8605Smrg# using DOT_FONTNAME. You need to make sure dot is able to find the font, 1558848b8605Smrg# which can be done by putting it in a standard location or by setting the 1559848b8605Smrg# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory 1560848b8605Smrg# containing the font. 1561848b8605Smrg 1562848b8605SmrgDOT_FONTNAME = Helvetica 1563848b8605Smrg 1564848b8605Smrg# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. 1565848b8605Smrg# The default size is 10pt. 1566848b8605Smrg 1567848b8605SmrgDOT_FONTSIZE = 10 1568848b8605Smrg 1569848b8605Smrg# By default doxygen will tell dot to use the output directory to look for the 1570848b8605Smrg# FreeSans.ttf font (which doxygen will put there itself). If you specify a 1571848b8605Smrg# different font using DOT_FONTNAME you can set the path where dot 1572848b8605Smrg# can find it using this tag. 1573848b8605Smrg 1574848b8605SmrgDOT_FONTPATH = 1575848b8605Smrg 1576848b8605Smrg# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 1577848b8605Smrg# will generate a graph for each documented class showing the direct and 1578848b8605Smrg# indirect inheritance relations. Setting this tag to YES will force the 1579848b8605Smrg# the CLASS_DIAGRAMS tag to NO. 1580848b8605Smrg 1581848b8605SmrgCLASS_GRAPH = YES 1582848b8605Smrg 1583848b8605Smrg# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 1584848b8605Smrg# will generate a graph for each documented class showing the direct and 1585848b8605Smrg# indirect implementation dependencies (inheritance, containment, and 1586848b8605Smrg# class references variables) of the class with other documented classes. 1587848b8605Smrg 1588848b8605SmrgCOLLABORATION_GRAPH = YES 1589848b8605Smrg 1590848b8605Smrg# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 1591848b8605Smrg# will generate a graph for groups, showing the direct groups dependencies 1592848b8605Smrg 1593848b8605SmrgGROUP_GRAPHS = YES 1594848b8605Smrg 1595848b8605Smrg# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 1596848b8605Smrg# collaboration diagrams in a style similar to the OMG's Unified Modeling 1597848b8605Smrg# Language. 1598848b8605Smrg 1599848b8605SmrgUML_LOOK = NO 1600848b8605Smrg 1601848b8605Smrg# If set to YES, the inheritance and collaboration graphs will show the 1602848b8605Smrg# relations between templates and their instances. 1603848b8605Smrg 1604848b8605SmrgTEMPLATE_RELATIONS = NO 1605848b8605Smrg 1606848b8605Smrg# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 1607848b8605Smrg# tags are set to YES then doxygen will generate a graph for each documented 1608848b8605Smrg# file showing the direct and indirect include dependencies of the file with 1609848b8605Smrg# other documented files. 1610848b8605Smrg 1611848b8605SmrgINCLUDE_GRAPH = YES 1612848b8605Smrg 1613848b8605Smrg# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 1614848b8605Smrg# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 1615848b8605Smrg# documented header file showing the documented files that directly or 1616848b8605Smrg# indirectly include this file. 1617848b8605Smrg 1618848b8605SmrgINCLUDED_BY_GRAPH = YES 1619848b8605Smrg 1620848b8605Smrg# If the CALL_GRAPH and HAVE_DOT options are set to YES then 1621848b8605Smrg# doxygen will generate a call dependency graph for every global function 1622848b8605Smrg# or class method. Note that enabling this option will significantly increase 1623848b8605Smrg# the time of a run. So in most cases it will be better to enable call graphs 1624848b8605Smrg# for selected functions only using the \callgraph command. 1625848b8605Smrg 1626848b8605SmrgCALL_GRAPH = NO 1627848b8605Smrg 1628848b8605Smrg# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then 1629848b8605Smrg# doxygen will generate a caller dependency graph for every global function 1630848b8605Smrg# or class method. Note that enabling this option will significantly increase 1631848b8605Smrg# the time of a run. So in most cases it will be better to enable caller 1632848b8605Smrg# graphs for selected functions only using the \callergraph command. 1633848b8605Smrg 1634848b8605SmrgCALLER_GRAPH = NO 1635848b8605Smrg 1636848b8605Smrg# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 1637848b8605Smrg# will generate a graphical hierarchy of all classes instead of a textual one. 1638848b8605Smrg 1639848b8605SmrgGRAPHICAL_HIERARCHY = YES 1640848b8605Smrg 1641848b8605Smrg# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 1642848b8605Smrg# then doxygen will show the dependencies a directory has on other directories 1643848b8605Smrg# in a graphical way. The dependency relations are determined by the #include 1644848b8605Smrg# relations between the files in the directories. 1645848b8605Smrg 1646848b8605SmrgDIRECTORY_GRAPH = YES 1647848b8605Smrg 1648848b8605Smrg# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 1649848b8605Smrg# generated by dot. Possible values are svg, png, jpg, or gif. 1650848b8605Smrg# If left blank png will be used. 1651848b8605Smrg 1652848b8605SmrgDOT_IMAGE_FORMAT = png 1653848b8605Smrg 1654848b8605Smrg# The tag DOT_PATH can be used to specify the path where the dot tool can be 1655848b8605Smrg# found. If left blank, it is assumed the dot tool can be found in the path. 1656848b8605Smrg 1657848b8605SmrgDOT_PATH = 1658848b8605Smrg 1659848b8605Smrg# The DOTFILE_DIRS tag can be used to specify one or more directories that 1660848b8605Smrg# contain dot files that are included in the documentation (see the 1661848b8605Smrg# \dotfile command). 1662848b8605Smrg 1663848b8605SmrgDOTFILE_DIRS = 1664848b8605Smrg 1665848b8605Smrg# The MSCFILE_DIRS tag can be used to specify one or more directories that 1666848b8605Smrg# contain msc files that are included in the documentation (see the 1667848b8605Smrg# \mscfile command). 1668848b8605Smrg 1669848b8605SmrgMSCFILE_DIRS = 1670848b8605Smrg 1671848b8605Smrg# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of 1672848b8605Smrg# nodes that will be shown in the graph. If the number of nodes in a graph 1673848b8605Smrg# becomes larger than this value, doxygen will truncate the graph, which is 1674848b8605Smrg# visualized by representing a node as a red box. Note that doxygen if the 1675848b8605Smrg# number of direct children of the root node in a graph is already larger than 1676848b8605Smrg# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note 1677848b8605Smrg# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 1678848b8605Smrg 1679848b8605SmrgDOT_GRAPH_MAX_NODES = 50 1680848b8605Smrg 1681848b8605Smrg# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1682848b8605Smrg# graphs generated by dot. A depth value of 3 means that only nodes reachable 1683848b8605Smrg# from the root by following a path via at most 3 edges will be shown. Nodes 1684848b8605Smrg# that lay further from the root node will be omitted. Note that setting this 1685848b8605Smrg# option to 1 or 2 may greatly reduce the computation time needed for large 1686848b8605Smrg# code bases. Also note that the size of a graph can be further restricted by 1687848b8605Smrg# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 1688848b8605Smrg 1689848b8605SmrgMAX_DOT_GRAPH_DEPTH = 0 1690848b8605Smrg 1691848b8605Smrg# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 1692848b8605Smrg# background. This is disabled by default, because dot on Windows does not 1693848b8605Smrg# seem to support this out of the box. Warning: Depending on the platform used, 1694848b8605Smrg# enabling this option may lead to badly anti-aliased labels on the edges of 1695848b8605Smrg# a graph (i.e. they become hard to read). 1696848b8605Smrg 1697848b8605SmrgDOT_TRANSPARENT = NO 1698848b8605Smrg 1699848b8605Smrg# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 1700848b8605Smrg# files in one run (i.e. multiple -o and -T options on the command line). This 1701848b8605Smrg# makes dot run faster, but since only newer versions of dot (>1.8.10) 1702848b8605Smrg# support this, this feature is disabled by default. 1703848b8605Smrg 1704848b8605SmrgDOT_MULTI_TARGETS = NO 1705848b8605Smrg 1706848b8605Smrg# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 1707848b8605Smrg# generate a legend page explaining the meaning of the various boxes and 1708848b8605Smrg# arrows in the dot generated graphs. 1709848b8605Smrg 1710848b8605SmrgGENERATE_LEGEND = YES 1711848b8605Smrg 1712848b8605Smrg# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 1713848b8605Smrg# remove the intermediate dot files that are used to generate 1714848b8605Smrg# the various graphs. 1715848b8605Smrg 1716848b8605SmrgDOT_CLEANUP = YES 1717