1*231558cbSagc# Doxyfile 1.7.1 2*231558cbSagc 3*231558cbSagc# This file describes the settings to be used by the documentation system 4*231558cbSagc# doxygen (www.doxygen.org) for a project 5*231558cbSagc# 6*231558cbSagc# All text after a hash (#) is considered a comment and will be ignored 7*231558cbSagc# The format is: 8*231558cbSagc# TAG = value [value, ...] 9*231558cbSagc# For lists items can also be appended using: 10*231558cbSagc# TAG += value [value, ...] 11*231558cbSagc# Values that contain spaces should be placed between quotes (" ") 12*231558cbSagc 13*231558cbSagc#--------------------------------------------------------------------------- 14*231558cbSagc# Project related configuration options 15*231558cbSagc#--------------------------------------------------------------------------- 16*231558cbSagc 17*231558cbSagc# This tag specifies the encoding used for all characters in the config file 18*231558cbSagc# that follow. The default is UTF-8 which is also the encoding used for all 19*231558cbSagc# text before the first occurrence of this tag. Doxygen uses libiconv (or the 20*231558cbSagc# iconv built into libc) for the transcoding. See 21*231558cbSagc# http://www.gnu.org/software/libiconv for the list of possible encodings. 22*231558cbSagc 23*231558cbSagcDOXYFILE_ENCODING = UTF-8 24*231558cbSagc 25*231558cbSagc# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 26*231558cbSagc# by quotes) that should identify the project. 27*231558cbSagc 28*231558cbSagcPROJECT_NAME = "Simple Authentication and Security Layer client library" 29*231558cbSagc 30*231558cbSagc# The PROJECT_NUMBER tag can be used to enter a project or revision number. 31*231558cbSagc# This could be handy for archiving the generated documentation or 32*231558cbSagc# if some version control system is used. 33*231558cbSagc 34*231558cbSagcPROJECT_NUMBER = 1.0 35*231558cbSagc 36*231558cbSagc# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 37*231558cbSagc# base path where the generated documentation will be put. 38*231558cbSagc# If a relative path is entered, it will be relative to the location 39*231558cbSagc# where doxygen was started. If left blank the current directory will be used. 40*231558cbSagc 41*231558cbSagcOUTPUT_DIRECTORY = doxydoc 42*231558cbSagc 43*231558cbSagc# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 44*231558cbSagc# 4096 sub-directories (in 2 levels) under the output directory of each output 45*231558cbSagc# format and will distribute the generated files over these directories. 46*231558cbSagc# Enabling this option can be useful when feeding doxygen a huge amount of 47*231558cbSagc# source files, where putting all generated files in the same directory would 48*231558cbSagc# otherwise cause performance problems for the file system. 49*231558cbSagc 50*231558cbSagcCREATE_SUBDIRS = NO 51*231558cbSagc 52*231558cbSagc# The OUTPUT_LANGUAGE tag is used to specify the language in which all 53*231558cbSagc# documentation generated by doxygen is written. Doxygen will use this 54*231558cbSagc# information to generate all constant output in the proper language. 55*231558cbSagc# The default language is English, other supported languages are: 56*231558cbSagc# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 57*231558cbSagc# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, 58*231558cbSagc# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English 59*231558cbSagc# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, 60*231558cbSagc# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, 61*231558cbSagc# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. 62*231558cbSagc 63*231558cbSagcOUTPUT_LANGUAGE = English 64*231558cbSagc 65*231558cbSagc# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 66*231558cbSagc# include brief member descriptions after the members that are listed in 67*231558cbSagc# the file and class documentation (similar to JavaDoc). 68*231558cbSagc# Set to NO to disable this. 69*231558cbSagc 70*231558cbSagcBRIEF_MEMBER_DESC = YES 71*231558cbSagc 72*231558cbSagc# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 73*231558cbSagc# the brief description of a member or function before the detailed description. 74*231558cbSagc# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 75*231558cbSagc# brief descriptions will be completely suppressed. 76*231558cbSagc 77*231558cbSagcREPEAT_BRIEF = YES 78*231558cbSagc 79*231558cbSagc# This tag implements a quasi-intelligent brief description abbreviator 80*231558cbSagc# that is used to form the text in various listings. Each string 81*231558cbSagc# in this list, if found as the leading text of the brief description, will be 82*231558cbSagc# stripped from the text and the result after processing the whole list, is 83*231558cbSagc# used as the annotated text. Otherwise, the brief description is used as-is. 84*231558cbSagc# If left blank, the following values are used ("$name" is automatically 85*231558cbSagc# replaced with the name of the entity): "The $name class" "The $name widget" 86*231558cbSagc# "The $name file" "is" "provides" "specifies" "contains" 87*231558cbSagc# "represents" "a" "an" "the" 88*231558cbSagc 89*231558cbSagcABBREVIATE_BRIEF = 90*231558cbSagc 91*231558cbSagc# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 92*231558cbSagc# Doxygen will generate a detailed section even if there is only a brief 93*231558cbSagc# description. 94*231558cbSagc 95*231558cbSagcALWAYS_DETAILED_SEC = NO 96*231558cbSagc 97*231558cbSagc# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 98*231558cbSagc# inherited members of a class in the documentation of that class as if those 99*231558cbSagc# members were ordinary class members. Constructors, destructors and assignment 100*231558cbSagc# operators of the base classes will not be shown. 101*231558cbSagc 102*231558cbSagcINLINE_INHERITED_MEMB = NO 103*231558cbSagc 104*231558cbSagc# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 105*231558cbSagc# path before files name in the file list and in the header files. If set 106*231558cbSagc# to NO the shortest path that makes the file name unique will be used. 107*231558cbSagc 108*231558cbSagcFULL_PATH_NAMES = YES 109*231558cbSagc 110*231558cbSagc# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 111*231558cbSagc# can be used to strip a user-defined part of the path. Stripping is 112*231558cbSagc# only done if one of the specified strings matches the left-hand part of 113*231558cbSagc# the path. The tag can be used to show relative paths in the file list. 114*231558cbSagc# If left blank the directory from which doxygen is run is used as the 115*231558cbSagc# path to strip. 116*231558cbSagc 117*231558cbSagcSTRIP_FROM_PATH = 118*231558cbSagc 119*231558cbSagc# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 120*231558cbSagc# the path mentioned in the documentation of a class, which tells 121*231558cbSagc# the reader which header file to include in order to use a class. 122*231558cbSagc# If left blank only the name of the header file containing the class 123*231558cbSagc# definition is used. Otherwise one should specify the include paths that 124*231558cbSagc# are normally passed to the compiler using the -I flag. 125*231558cbSagc 126*231558cbSagcSTRIP_FROM_INC_PATH = 127*231558cbSagc 128*231558cbSagc# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 129*231558cbSagc# (but less readable) file names. This can be useful is your file systems 130*231558cbSagc# doesn't support long names like on DOS, Mac, or CD-ROM. 131*231558cbSagc 132*231558cbSagcSHORT_NAMES = NO 133*231558cbSagc 134*231558cbSagc# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 135*231558cbSagc# will interpret the first line (until the first dot) of a JavaDoc-style 136*231558cbSagc# comment as the brief description. If set to NO, the JavaDoc 137*231558cbSagc# comments will behave just like regular Qt-style comments 138*231558cbSagc# (thus requiring an explicit @brief command for a brief description.) 139*231558cbSagc 140*231558cbSagcJAVADOC_AUTOBRIEF = NO 141*231558cbSagc 142*231558cbSagc# If the QT_AUTOBRIEF tag is set to YES then Doxygen will 143*231558cbSagc# interpret the first line (until the first dot) of a Qt-style 144*231558cbSagc# comment as the brief description. If set to NO, the comments 145*231558cbSagc# will behave just like regular Qt-style comments (thus requiring 146*231558cbSagc# an explicit \brief command for a brief description.) 147*231558cbSagc 148*231558cbSagcQT_AUTOBRIEF = NO 149*231558cbSagc 150*231558cbSagc# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 151*231558cbSagc# treat a multi-line C++ special comment block (i.e. a block of //! or /// 152*231558cbSagc# comments) as a brief description. This used to be the default behaviour. 153*231558cbSagc# The new default is to treat a multi-line C++ comment block as a detailed 154*231558cbSagc# description. Set this tag to YES if you prefer the old behaviour instead. 155*231558cbSagc 156*231558cbSagcMULTILINE_CPP_IS_BRIEF = NO 157*231558cbSagc 158*231558cbSagc# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 159*231558cbSagc# member inherits the documentation from any documented member that it 160*231558cbSagc# re-implements. 161*231558cbSagc 162*231558cbSagcINHERIT_DOCS = YES 163*231558cbSagc 164*231558cbSagc# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 165*231558cbSagc# a new page for each member. If set to NO, the documentation of a member will 166*231558cbSagc# be part of the file/class/namespace that contains it. 167*231558cbSagc 168*231558cbSagcSEPARATE_MEMBER_PAGES = NO 169*231558cbSagc 170*231558cbSagc# The TAB_SIZE tag can be used to set the number of spaces in a tab. 171*231558cbSagc# Doxygen uses this value to replace tabs by spaces in code fragments. 172*231558cbSagc 173*231558cbSagcTAB_SIZE = 8 174*231558cbSagc 175*231558cbSagc# This tag can be used to specify a number of aliases that acts 176*231558cbSagc# as commands in the documentation. An alias has the form "name=value". 177*231558cbSagc# For example adding "sideeffect=\par Side Effects:\n" will allow you to 178*231558cbSagc# put the command \sideeffect (or @sideeffect) in the documentation, which 179*231558cbSagc# will result in a user-defined paragraph with heading "Side Effects:". 180*231558cbSagc# You can put \n's in the value part of an alias to insert newlines. 181*231558cbSagc 182*231558cbSagcALIASES = 183*231558cbSagc 184*231558cbSagc# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 185*231558cbSagc# sources only. Doxygen will then generate output that is more tailored for C. 186*231558cbSagc# For instance, some of the names that are used will be different. The list 187*231558cbSagc# of all members will be omitted, etc. 188*231558cbSagc 189*231558cbSagcOPTIMIZE_OUTPUT_FOR_C = YES 190*231558cbSagc 191*231558cbSagc# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 192*231558cbSagc# sources only. Doxygen will then generate output that is more tailored for 193*231558cbSagc# Java. For instance, namespaces will be presented as packages, qualified 194*231558cbSagc# scopes will look different, etc. 195*231558cbSagc 196*231558cbSagcOPTIMIZE_OUTPUT_JAVA = NO 197*231558cbSagc 198*231558cbSagc# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran 199*231558cbSagc# sources only. Doxygen will then generate output that is more tailored for 200*231558cbSagc# Fortran. 201*231558cbSagc 202*231558cbSagcOPTIMIZE_FOR_FORTRAN = NO 203*231558cbSagc 204*231558cbSagc# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL 205*231558cbSagc# sources. Doxygen will then generate output that is tailored for 206*231558cbSagc# VHDL. 207*231558cbSagc 208*231558cbSagcOPTIMIZE_OUTPUT_VHDL = NO 209*231558cbSagc 210*231558cbSagc# Doxygen selects the parser to use depending on the extension of the files it 211*231558cbSagc# parses. With this tag you can assign which parser to use for a given extension. 212*231558cbSagc# Doxygen has a built-in mapping, but you can override or extend it using this 213*231558cbSagc# tag. The format is ext=language, where ext is a file extension, and language 214*231558cbSagc# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, 215*231558cbSagc# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make 216*231558cbSagc# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C 217*231558cbSagc# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions 218*231558cbSagc# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. 219*231558cbSagc 220*231558cbSagcEXTENSION_MAPPING = 221*231558cbSagc 222*231558cbSagc# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 223*231558cbSagc# to include (a tag file for) the STL sources as input, then you should 224*231558cbSagc# set this tag to YES in order to let doxygen match functions declarations and 225*231558cbSagc# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 226*231558cbSagc# func(std::string) {}). This also make the inheritance and collaboration 227*231558cbSagc# diagrams that involve STL classes more complete and accurate. 228*231558cbSagc 229*231558cbSagcBUILTIN_STL_SUPPORT = NO 230*231558cbSagc 231*231558cbSagc# If you use Microsoft's C++/CLI language, you should set this option to YES to 232*231558cbSagc# enable parsing support. 233*231558cbSagc 234*231558cbSagcCPP_CLI_SUPPORT = NO 235*231558cbSagc 236*231558cbSagc# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. 237*231558cbSagc# Doxygen will parse them like normal C++ but will assume all classes use public 238*231558cbSagc# instead of private inheritance when no explicit protection keyword is present. 239*231558cbSagc 240*231558cbSagcSIP_SUPPORT = NO 241*231558cbSagc 242*231558cbSagc# For Microsoft's IDL there are propget and propput attributes to indicate getter 243*231558cbSagc# and setter methods for a property. Setting this option to YES (the default) 244*231558cbSagc# will make doxygen to replace the get and set methods by a property in the 245*231558cbSagc# documentation. This will only work if the methods are indeed getting or 246*231558cbSagc# setting a simple type. If this is not the case, or you want to show the 247*231558cbSagc# methods anyway, you should set this option to NO. 248*231558cbSagc 249*231558cbSagcIDL_PROPERTY_SUPPORT = YES 250*231558cbSagc 251*231558cbSagc# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 252*231558cbSagc# tag is set to YES, then doxygen will reuse the documentation of the first 253*231558cbSagc# member in the group (if any) for the other members of the group. By default 254*231558cbSagc# all members of a group must be documented explicitly. 255*231558cbSagc 256*231558cbSagcDISTRIBUTE_GROUP_DOC = NO 257*231558cbSagc 258*231558cbSagc# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 259*231558cbSagc# the same type (for instance a group of public functions) to be put as a 260*231558cbSagc# subgroup of that type (e.g. under the Public Functions section). Set it to 261*231558cbSagc# NO to prevent subgrouping. Alternatively, this can be done per class using 262*231558cbSagc# the \nosubgrouping command. 263*231558cbSagc 264*231558cbSagcSUBGROUPING = YES 265*231558cbSagc 266*231558cbSagc# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum 267*231558cbSagc# is documented as struct, union, or enum with the name of the typedef. So 268*231558cbSagc# typedef struct TypeS {} TypeT, will appear in the documentation as a struct 269*231558cbSagc# with name TypeT. When disabled the typedef will appear as a member of a file, 270*231558cbSagc# namespace, or class. And the struct will be named TypeS. This can typically 271*231558cbSagc# be useful for C code in case the coding convention dictates that all compound 272*231558cbSagc# types are typedef'ed and only the typedef is referenced, never the tag name. 273*231558cbSagc 274*231558cbSagcTYPEDEF_HIDES_STRUCT = NO 275*231558cbSagc 276*231558cbSagc# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to 277*231558cbSagc# determine which symbols to keep in memory and which to flush to disk. 278*231558cbSagc# When the cache is full, less often used symbols will be written to disk. 279*231558cbSagc# For small to medium size projects (<1000 input files) the default value is 280*231558cbSagc# probably good enough. For larger projects a too small cache size can cause 281*231558cbSagc# doxygen to be busy swapping symbols to and from disk most of the time 282*231558cbSagc# causing a significant performance penality. 283*231558cbSagc# If the system has enough physical memory increasing the cache will improve the 284*231558cbSagc# performance by keeping more symbols in memory. Note that the value works on 285*231558cbSagc# a logarithmic scale so increasing the size by one will rougly double the 286*231558cbSagc# memory usage. The cache size is given by this formula: 287*231558cbSagc# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, 288*231558cbSagc# corresponding to a cache size of 2^16 = 65536 symbols 289*231558cbSagc 290*231558cbSagcSYMBOL_CACHE_SIZE = 0 291*231558cbSagc 292*231558cbSagc#--------------------------------------------------------------------------- 293*231558cbSagc# Build related configuration options 294*231558cbSagc#--------------------------------------------------------------------------- 295*231558cbSagc 296*231558cbSagc# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 297*231558cbSagc# documentation are documented, even if no documentation was available. 298*231558cbSagc# Private class members and static file members will be hidden unless 299*231558cbSagc# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 300*231558cbSagc 301*231558cbSagcEXTRACT_ALL = YES 302*231558cbSagc 303*231558cbSagc# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 304*231558cbSagc# will be included in the documentation. 305*231558cbSagc 306*231558cbSagcEXTRACT_PRIVATE = NO 307*231558cbSagc 308*231558cbSagc# If the EXTRACT_STATIC tag is set to YES all static members of a file 309*231558cbSagc# will be included in the documentation. 310*231558cbSagc 311*231558cbSagcEXTRACT_STATIC = NO 312*231558cbSagc 313*231558cbSagc# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 314*231558cbSagc# defined locally in source files will be included in the documentation. 315*231558cbSagc# If set to NO only classes defined in header files are included. 316*231558cbSagc 317*231558cbSagcEXTRACT_LOCAL_CLASSES = YES 318*231558cbSagc 319*231558cbSagc# This flag is only useful for Objective-C code. When set to YES local 320*231558cbSagc# methods, which are defined in the implementation section but not in 321*231558cbSagc# the interface are included in the documentation. 322*231558cbSagc# If set to NO (the default) only methods in the interface are included. 323*231558cbSagc 324*231558cbSagcEXTRACT_LOCAL_METHODS = NO 325*231558cbSagc 326*231558cbSagc# If this flag is set to YES, the members of anonymous namespaces will be 327*231558cbSagc# extracted and appear in the documentation as a namespace called 328*231558cbSagc# 'anonymous_namespace{file}', where file will be replaced with the base 329*231558cbSagc# name of the file that contains the anonymous namespace. By default 330*231558cbSagc# anonymous namespace are hidden. 331*231558cbSagc 332*231558cbSagcEXTRACT_ANON_NSPACES = NO 333*231558cbSagc 334*231558cbSagc# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 335*231558cbSagc# undocumented members of documented classes, files or namespaces. 336*231558cbSagc# If set to NO (the default) these members will be included in the 337*231558cbSagc# various overviews, but no documentation section is generated. 338*231558cbSagc# This option has no effect if EXTRACT_ALL is enabled. 339*231558cbSagc 340*231558cbSagcHIDE_UNDOC_MEMBERS = NO 341*231558cbSagc 342*231558cbSagc# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 343*231558cbSagc# undocumented classes that are normally visible in the class hierarchy. 344*231558cbSagc# If set to NO (the default) these classes will be included in the various 345*231558cbSagc# overviews. This option has no effect if EXTRACT_ALL is enabled. 346*231558cbSagc 347*231558cbSagcHIDE_UNDOC_CLASSES = NO 348*231558cbSagc 349*231558cbSagc# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 350*231558cbSagc# friend (class|struct|union) declarations. 351*231558cbSagc# If set to NO (the default) these declarations will be included in the 352*231558cbSagc# documentation. 353*231558cbSagc 354*231558cbSagcHIDE_FRIEND_COMPOUNDS = NO 355*231558cbSagc 356*231558cbSagc# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 357*231558cbSagc# documentation blocks found inside the body of a function. 358*231558cbSagc# If set to NO (the default) these blocks will be appended to the 359*231558cbSagc# function's detailed documentation block. 360*231558cbSagc 361*231558cbSagcHIDE_IN_BODY_DOCS = NO 362*231558cbSagc 363*231558cbSagc# The INTERNAL_DOCS tag determines if documentation 364*231558cbSagc# that is typed after a \internal command is included. If the tag is set 365*231558cbSagc# to NO (the default) then the documentation will be excluded. 366*231558cbSagc# Set it to YES to include the internal documentation. 367*231558cbSagc 368*231558cbSagcINTERNAL_DOCS = NO 369*231558cbSagc 370*231558cbSagc# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 371*231558cbSagc# file names in lower-case letters. If set to YES upper-case letters are also 372*231558cbSagc# allowed. This is useful if you have classes or files whose names only differ 373*231558cbSagc# in case and if your file system supports case sensitive file names. Windows 374*231558cbSagc# and Mac users are advised to set this option to NO. 375*231558cbSagc 376*231558cbSagcCASE_SENSE_NAMES = YES 377*231558cbSagc 378*231558cbSagc# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 379*231558cbSagc# will show members with their full class and namespace scopes in the 380*231558cbSagc# documentation. If set to YES the scope will be hidden. 381*231558cbSagc 382*231558cbSagcHIDE_SCOPE_NAMES = YES 383*231558cbSagc 384*231558cbSagc# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 385*231558cbSagc# will put a list of the files that are included by a file in the documentation 386*231558cbSagc# of that file. 387*231558cbSagc 388*231558cbSagcSHOW_INCLUDE_FILES = YES 389*231558cbSagc 390*231558cbSagc# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen 391*231558cbSagc# will list include files with double quotes in the documentation 392*231558cbSagc# rather than with sharp brackets. 393*231558cbSagc 394*231558cbSagcFORCE_LOCAL_INCLUDES = NO 395*231558cbSagc 396*231558cbSagc# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 397*231558cbSagc# is inserted in the documentation for inline members. 398*231558cbSagc 399*231558cbSagcINLINE_INFO = YES 400*231558cbSagc 401*231558cbSagc# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 402*231558cbSagc# will sort the (detailed) documentation of file and class members 403*231558cbSagc# alphabetically by member name. If set to NO the members will appear in 404*231558cbSagc# declaration order. 405*231558cbSagc 406*231558cbSagcSORT_MEMBER_DOCS = YES 407*231558cbSagc 408*231558cbSagc# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 409*231558cbSagc# brief documentation of file, namespace and class members alphabetically 410*231558cbSagc# by member name. If set to NO (the default) the members will appear in 411*231558cbSagc# declaration order. 412*231558cbSagc 413*231558cbSagcSORT_BRIEF_DOCS = NO 414*231558cbSagc 415*231558cbSagc# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen 416*231558cbSagc# will sort the (brief and detailed) documentation of class members so that 417*231558cbSagc# constructors and destructors are listed first. If set to NO (the default) 418*231558cbSagc# the constructors will appear in the respective orders defined by 419*231558cbSagc# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. 420*231558cbSagc# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO 421*231558cbSagc# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. 422*231558cbSagc 423*231558cbSagcSORT_MEMBERS_CTORS_1ST = NO 424*231558cbSagc 425*231558cbSagc# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the 426*231558cbSagc# hierarchy of group names into alphabetical order. If set to NO (the default) 427*231558cbSagc# the group names will appear in their defined order. 428*231558cbSagc 429*231558cbSagcSORT_GROUP_NAMES = NO 430*231558cbSagc 431*231558cbSagc# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 432*231558cbSagc# sorted by fully-qualified names, including namespaces. If set to 433*231558cbSagc# NO (the default), the class list will be sorted only by class name, 434*231558cbSagc# not including the namespace part. 435*231558cbSagc# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 436*231558cbSagc# Note: This option applies only to the class list, not to the 437*231558cbSagc# alphabetical list. 438*231558cbSagc 439*231558cbSagcSORT_BY_SCOPE_NAME = NO 440*231558cbSagc 441*231558cbSagc# The GENERATE_TODOLIST tag can be used to enable (YES) or 442*231558cbSagc# disable (NO) the todo list. This list is created by putting \todo 443*231558cbSagc# commands in the documentation. 444*231558cbSagc 445*231558cbSagcGENERATE_TODOLIST = YES 446*231558cbSagc 447*231558cbSagc# The GENERATE_TESTLIST tag can be used to enable (YES) or 448*231558cbSagc# disable (NO) the test list. This list is created by putting \test 449*231558cbSagc# commands in the documentation. 450*231558cbSagc 451*231558cbSagcGENERATE_TESTLIST = YES 452*231558cbSagc 453*231558cbSagc# The GENERATE_BUGLIST tag can be used to enable (YES) or 454*231558cbSagc# disable (NO) the bug list. This list is created by putting \bug 455*231558cbSagc# commands in the documentation. 456*231558cbSagc 457*231558cbSagcGENERATE_BUGLIST = YES 458*231558cbSagc 459*231558cbSagc# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 460*231558cbSagc# disable (NO) the deprecated list. This list is created by putting 461*231558cbSagc# \deprecated commands in the documentation. 462*231558cbSagc 463*231558cbSagcGENERATE_DEPRECATEDLIST= YES 464*231558cbSagc 465*231558cbSagc# The ENABLED_SECTIONS tag can be used to enable conditional 466*231558cbSagc# documentation sections, marked by \if sectionname ... \endif. 467*231558cbSagc 468*231558cbSagcENABLED_SECTIONS = 469*231558cbSagc 470*231558cbSagc# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 471*231558cbSagc# the initial value of a variable or define consists of for it to appear in 472*231558cbSagc# the documentation. If the initializer consists of more lines than specified 473*231558cbSagc# here it will be hidden. Use a value of 0 to hide initializers completely. 474*231558cbSagc# The appearance of the initializer of individual variables and defines in the 475*231558cbSagc# documentation can be controlled using \showinitializer or \hideinitializer 476*231558cbSagc# command in the documentation regardless of this setting. 477*231558cbSagc 478*231558cbSagcMAX_INITIALIZER_LINES = 30 479*231558cbSagc 480*231558cbSagc# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 481*231558cbSagc# at the bottom of the documentation of classes and structs. If set to YES the 482*231558cbSagc# list will mention the files that were used to generate the documentation. 483*231558cbSagc 484*231558cbSagcSHOW_USED_FILES = YES 485*231558cbSagc 486*231558cbSagc# If the sources in your project are distributed over multiple directories 487*231558cbSagc# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 488*231558cbSagc# in the documentation. The default is NO. 489*231558cbSagc 490*231558cbSagcSHOW_DIRECTORIES = NO 491*231558cbSagc 492*231558cbSagc# Set the SHOW_FILES tag to NO to disable the generation of the Files page. 493*231558cbSagc# This will remove the Files entry from the Quick Index and from the 494*231558cbSagc# Folder Tree View (if specified). The default is YES. 495*231558cbSagc 496*231558cbSagcSHOW_FILES = YES 497*231558cbSagc 498*231558cbSagc# Set the SHOW_NAMESPACES tag to NO to disable the generation of the 499*231558cbSagc# Namespaces page. This will remove the Namespaces entry from the Quick Index 500*231558cbSagc# and from the Folder Tree View (if specified). The default is YES. 501*231558cbSagc 502*231558cbSagcSHOW_NAMESPACES = YES 503*231558cbSagc 504*231558cbSagc# The FILE_VERSION_FILTER tag can be used to specify a program or script that 505*231558cbSagc# doxygen should invoke to get the current version for each file (typically from 506*231558cbSagc# the version control system). Doxygen will invoke the program by executing (via 507*231558cbSagc# popen()) the command <command> <input-file>, where <command> is the value of 508*231558cbSagc# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 509*231558cbSagc# provided by doxygen. Whatever the program writes to standard output 510*231558cbSagc# is used as the file version. See the manual for examples. 511*231558cbSagc 512*231558cbSagcFILE_VERSION_FILTER = 513*231558cbSagc 514*231558cbSagc# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed 515*231558cbSagc# by doxygen. The layout file controls the global structure of the generated 516*231558cbSagc# output files in an output format independent way. The create the layout file 517*231558cbSagc# that represents doxygen's defaults, run doxygen with the -l option. 518*231558cbSagc# You can optionally specify a file name after the option, if omitted 519*231558cbSagc# DoxygenLayout.xml will be used as the name of the layout file. 520*231558cbSagc 521*231558cbSagcLAYOUT_FILE = 522*231558cbSagc 523*231558cbSagc#--------------------------------------------------------------------------- 524*231558cbSagc# configuration options related to warning and progress messages 525*231558cbSagc#--------------------------------------------------------------------------- 526*231558cbSagc 527*231558cbSagc# The QUIET tag can be used to turn on/off the messages that are generated 528*231558cbSagc# by doxygen. Possible values are YES and NO. If left blank NO is used. 529*231558cbSagc 530*231558cbSagcQUIET = NO 531*231558cbSagc 532*231558cbSagc# The WARNINGS tag can be used to turn on/off the warning messages that are 533*231558cbSagc# generated by doxygen. Possible values are YES and NO. If left blank 534*231558cbSagc# NO is used. 535*231558cbSagc 536*231558cbSagcWARNINGS = YES 537*231558cbSagc 538*231558cbSagc# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 539*231558cbSagc# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 540*231558cbSagc# automatically be disabled. 541*231558cbSagc 542*231558cbSagcWARN_IF_UNDOCUMENTED = YES 543*231558cbSagc 544*231558cbSagc# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 545*231558cbSagc# potential errors in the documentation, such as not documenting some 546*231558cbSagc# parameters in a documented function, or documenting parameters that 547*231558cbSagc# don't exist or using markup commands wrongly. 548*231558cbSagc 549*231558cbSagcWARN_IF_DOC_ERROR = YES 550*231558cbSagc 551*231558cbSagc# This WARN_NO_PARAMDOC option can be abled to get warnings for 552*231558cbSagc# functions that are documented, but have no documentation for their parameters 553*231558cbSagc# or return value. If set to NO (the default) doxygen will only warn about 554*231558cbSagc# wrong or incomplete parameter documentation, but not about the absence of 555*231558cbSagc# documentation. 556*231558cbSagc 557*231558cbSagcWARN_NO_PARAMDOC = NO 558*231558cbSagc 559*231558cbSagc# The WARN_FORMAT tag determines the format of the warning messages that 560*231558cbSagc# doxygen can produce. The string should contain the $file, $line, and $text 561*231558cbSagc# tags, which will be replaced by the file and line number from which the 562*231558cbSagc# warning originated and the warning text. Optionally the format may contain 563*231558cbSagc# $version, which will be replaced by the version of the file (if it could 564*231558cbSagc# be obtained via FILE_VERSION_FILTER) 565*231558cbSagc 566*231558cbSagcWARN_FORMAT = "$file:$line: $text" 567*231558cbSagc 568*231558cbSagc# The WARN_LOGFILE tag can be used to specify a file to which warning 569*231558cbSagc# and error messages should be written. If left blank the output is written 570*231558cbSagc# to stderr. 571*231558cbSagc 572*231558cbSagcWARN_LOGFILE = 573*231558cbSagc 574*231558cbSagc#--------------------------------------------------------------------------- 575*231558cbSagc# configuration options related to the input files 576*231558cbSagc#--------------------------------------------------------------------------- 577*231558cbSagc 578*231558cbSagc# The INPUT tag can be used to specify the files and/or directories that contain 579*231558cbSagc# documented source files. You may enter file names like "myfile.cpp" or 580*231558cbSagc# directories like "/usr/src/myproject". Separate the files or directories 581*231558cbSagc# with spaces. 582*231558cbSagc 583*231558cbSagcINPUT = ../src \ 584*231558cbSagc ../include 585*231558cbSagc 586*231558cbSagc# This tag can be used to specify the character encoding of the source files 587*231558cbSagc# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is 588*231558cbSagc# also the default input encoding. Doxygen uses libiconv (or the iconv built 589*231558cbSagc# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for 590*231558cbSagc# the list of possible encodings. 591*231558cbSagc 592*231558cbSagcINPUT_ENCODING = UTF-8 593*231558cbSagc 594*231558cbSagc# If the value of the INPUT tag contains directories, you can use the 595*231558cbSagc# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 596*231558cbSagc# and *.h) to filter out the source-files in the directories. If left 597*231558cbSagc# blank the following patterns are tested: 598*231558cbSagc# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 599*231558cbSagc# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 600*231558cbSagc 601*231558cbSagcFILE_PATTERNS = *.c \ 602*231558cbSagc *.h 603*231558cbSagc 604*231558cbSagc# The RECURSIVE tag can be used to turn specify whether or not subdirectories 605*231558cbSagc# should be searched for input files as well. Possible values are YES and NO. 606*231558cbSagc# If left blank NO is used. 607*231558cbSagc 608*231558cbSagcRECURSIVE = YES 609*231558cbSagc 610*231558cbSagc# The EXCLUDE tag can be used to specify files and/or directories that should 611*231558cbSagc# excluded from the INPUT source files. This way you can easily exclude a 612*231558cbSagc# subdirectory from a directory tree whose root is specified with the INPUT tag. 613*231558cbSagc 614*231558cbSagcEXCLUDE = 615*231558cbSagc 616*231558cbSagc# The EXCLUDE_SYMLINKS tag can be used select whether or not files or 617*231558cbSagc# directories that are symbolic links (a Unix filesystem feature) are excluded 618*231558cbSagc# from the input. 619*231558cbSagc 620*231558cbSagcEXCLUDE_SYMLINKS = NO 621*231558cbSagc 622*231558cbSagc# If the value of the INPUT tag contains directories, you can use the 623*231558cbSagc# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 624*231558cbSagc# certain files from those directories. Note that the wildcards are matched 625*231558cbSagc# against the file with absolute path, so to exclude all test directories 626*231558cbSagc# for example use the pattern */test/* 627*231558cbSagc 628*231558cbSagcEXCLUDE_PATTERNS = 629*231558cbSagc 630*231558cbSagc# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 631*231558cbSagc# (namespaces, classes, functions, etc.) that should be excluded from the 632*231558cbSagc# output. The symbol name can be a fully qualified name, a word, or if the 633*231558cbSagc# wildcard * is used, a substring. Examples: ANamespace, AClass, 634*231558cbSagc# AClass::ANamespace, ANamespace::*Test 635*231558cbSagc 636*231558cbSagcEXCLUDE_SYMBOLS = 637*231558cbSagc 638*231558cbSagc# The EXAMPLE_PATH tag can be used to specify one or more files or 639*231558cbSagc# directories that contain example code fragments that are included (see 640*231558cbSagc# the \include command). 641*231558cbSagc 642*231558cbSagcEXAMPLE_PATH = 643*231558cbSagc 644*231558cbSagc# If the value of the EXAMPLE_PATH tag contains directories, you can use the 645*231558cbSagc# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 646*231558cbSagc# and *.h) to filter out the source-files in the directories. If left 647*231558cbSagc# blank all files are included. 648*231558cbSagc 649*231558cbSagcEXAMPLE_PATTERNS = 650*231558cbSagc 651*231558cbSagc# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 652*231558cbSagc# searched for input files to be used with the \include or \dontinclude 653*231558cbSagc# commands irrespective of the value of the RECURSIVE tag. 654*231558cbSagc# Possible values are YES and NO. If left blank NO is used. 655*231558cbSagc 656*231558cbSagcEXAMPLE_RECURSIVE = NO 657*231558cbSagc 658*231558cbSagc# The IMAGE_PATH tag can be used to specify one or more files or 659*231558cbSagc# directories that contain image that are included in the documentation (see 660*231558cbSagc# the \image command). 661*231558cbSagc 662*231558cbSagcIMAGE_PATH = 663*231558cbSagc 664*231558cbSagc# The INPUT_FILTER tag can be used to specify a program that doxygen should 665*231558cbSagc# invoke to filter for each input file. Doxygen will invoke the filter program 666*231558cbSagc# by executing (via popen()) the command <filter> <input-file>, where <filter> 667*231558cbSagc# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 668*231558cbSagc# input file. Doxygen will then use the output that the filter program writes 669*231558cbSagc# to standard output. If FILTER_PATTERNS is specified, this tag will be 670*231558cbSagc# ignored. 671*231558cbSagc 672*231558cbSagcINPUT_FILTER = 673*231558cbSagc 674*231558cbSagc# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 675*231558cbSagc# basis. Doxygen will compare the file name with each pattern and apply the 676*231558cbSagc# filter if there is a match. The filters are a list of the form: 677*231558cbSagc# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 678*231558cbSagc# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 679*231558cbSagc# is applied to all files. 680*231558cbSagc 681*231558cbSagcFILTER_PATTERNS = 682*231558cbSagc 683*231558cbSagc# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 684*231558cbSagc# INPUT_FILTER) will be used to filter the input files when producing source 685*231558cbSagc# files to browse (i.e. when SOURCE_BROWSER is set to YES). 686*231558cbSagc 687*231558cbSagcFILTER_SOURCE_FILES = NO 688*231558cbSagc 689*231558cbSagc#--------------------------------------------------------------------------- 690*231558cbSagc# configuration options related to source browsing 691*231558cbSagc#--------------------------------------------------------------------------- 692*231558cbSagc 693*231558cbSagc# If the SOURCE_BROWSER tag is set to YES then a list of source files will 694*231558cbSagc# be generated. Documented entities will be cross-referenced with these sources. 695*231558cbSagc# Note: To get rid of all source code in the generated output, make sure also 696*231558cbSagc# VERBATIM_HEADERS is set to NO. 697*231558cbSagc 698*231558cbSagcSOURCE_BROWSER = NO 699*231558cbSagc 700*231558cbSagc# Setting the INLINE_SOURCES tag to YES will include the body 701*231558cbSagc# of functions and classes directly in the documentation. 702*231558cbSagc 703*231558cbSagcINLINE_SOURCES = NO 704*231558cbSagc 705*231558cbSagc# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 706*231558cbSagc# doxygen to hide any special comment blocks from generated source code 707*231558cbSagc# fragments. Normal C and C++ comments will always remain visible. 708*231558cbSagc 709*231558cbSagcSTRIP_CODE_COMMENTS = YES 710*231558cbSagc 711*231558cbSagc# If the REFERENCED_BY_RELATION tag is set to YES 712*231558cbSagc# then for each documented function all documented 713*231558cbSagc# functions referencing it will be listed. 714*231558cbSagc 715*231558cbSagcREFERENCED_BY_RELATION = NO 716*231558cbSagc 717*231558cbSagc# If the REFERENCES_RELATION tag is set to YES 718*231558cbSagc# then for each documented function all documented entities 719*231558cbSagc# called/used by that function will be listed. 720*231558cbSagc 721*231558cbSagcREFERENCES_RELATION = NO 722*231558cbSagc 723*231558cbSagc# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 724*231558cbSagc# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 725*231558cbSagc# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 726*231558cbSagc# link to the source code. Otherwise they will link to the documentation. 727*231558cbSagc 728*231558cbSagcREFERENCES_LINK_SOURCE = YES 729*231558cbSagc 730*231558cbSagc# If the USE_HTAGS tag is set to YES then the references to source code 731*231558cbSagc# will point to the HTML generated by the htags(1) tool instead of doxygen 732*231558cbSagc# built-in source browser. The htags tool is part of GNU's global source 733*231558cbSagc# tagging system (see http://www.gnu.org/software/global/global.html). You 734*231558cbSagc# will need version 4.8.6 or higher. 735*231558cbSagc 736*231558cbSagcUSE_HTAGS = NO 737*231558cbSagc 738*231558cbSagc# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 739*231558cbSagc# will generate a verbatim copy of the header file for each class for 740*231558cbSagc# which an include is specified. Set to NO to disable this. 741*231558cbSagc 742*231558cbSagcVERBATIM_HEADERS = YES 743*231558cbSagc 744*231558cbSagc#--------------------------------------------------------------------------- 745*231558cbSagc# configuration options related to the alphabetical class index 746*231558cbSagc#--------------------------------------------------------------------------- 747*231558cbSagc 748*231558cbSagc# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 749*231558cbSagc# of all compounds will be generated. Enable this if the project 750*231558cbSagc# contains a lot of classes, structs, unions or interfaces. 751*231558cbSagc 752*231558cbSagcALPHABETICAL_INDEX = YES 753*231558cbSagc 754*231558cbSagc# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 755*231558cbSagc# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 756*231558cbSagc# in which this list will be split (can be a number in the range [1..20]) 757*231558cbSagc 758*231558cbSagcCOLS_IN_ALPHA_INDEX = 5 759*231558cbSagc 760*231558cbSagc# In case all classes in a project start with a common prefix, all 761*231558cbSagc# classes will be put under the same header in the alphabetical index. 762*231558cbSagc# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 763*231558cbSagc# should be ignored while generating the index headers. 764*231558cbSagc 765*231558cbSagcIGNORE_PREFIX = 766*231558cbSagc 767*231558cbSagc#--------------------------------------------------------------------------- 768*231558cbSagc# configuration options related to the HTML output 769*231558cbSagc#--------------------------------------------------------------------------- 770*231558cbSagc 771*231558cbSagc# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 772*231558cbSagc# generate HTML output. 773*231558cbSagc 774*231558cbSagcGENERATE_HTML = YES 775*231558cbSagc 776*231558cbSagc# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 777*231558cbSagc# If a relative path is entered the value of OUTPUT_DIRECTORY will be 778*231558cbSagc# put in front of it. If left blank `html' will be used as the default path. 779*231558cbSagc 780*231558cbSagcHTML_OUTPUT = html 781*231558cbSagc 782*231558cbSagc# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 783*231558cbSagc# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 784*231558cbSagc# doxygen will generate files with .html extension. 785*231558cbSagc 786*231558cbSagcHTML_FILE_EXTENSION = .html 787*231558cbSagc 788*231558cbSagc# The HTML_HEADER tag can be used to specify a personal HTML header for 789*231558cbSagc# each generated HTML page. If it is left blank doxygen will generate a 790*231558cbSagc# standard header. 791*231558cbSagc 792*231558cbSagcHTML_HEADER = 793*231558cbSagc 794*231558cbSagc# The HTML_FOOTER tag can be used to specify a personal HTML footer for 795*231558cbSagc# each generated HTML page. If it is left blank doxygen will generate a 796*231558cbSagc# standard footer. 797*231558cbSagc 798*231558cbSagcHTML_FOOTER = 799*231558cbSagc 800*231558cbSagc# The HTML_STYLESHEET tag can be used to specify a user-defined cascading 801*231558cbSagc# style sheet that is used by each HTML page. It can be used to 802*231558cbSagc# fine-tune the look of the HTML output. If the tag is left blank doxygen 803*231558cbSagc# will generate a default style sheet. Note that doxygen will try to copy 804*231558cbSagc# the style sheet file to the HTML output directory, so don't put your own 805*231558cbSagc# stylesheet in the HTML output directory as well, or it will be erased! 806*231558cbSagc 807*231558cbSagcHTML_STYLESHEET = 808*231558cbSagc 809*231558cbSagc# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. 810*231558cbSagc# Doxygen will adjust the colors in the stylesheet and background images 811*231558cbSagc# according to this color. Hue is specified as an angle on a colorwheel, 812*231558cbSagc# see http://en.wikipedia.org/wiki/Hue for more information. 813*231558cbSagc# For instance the value 0 represents red, 60 is yellow, 120 is green, 814*231558cbSagc# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. 815*231558cbSagc# The allowed range is 0 to 359. 816*231558cbSagc 817*231558cbSagcHTML_COLORSTYLE_HUE = 220 818*231558cbSagc 819*231558cbSagc# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of 820*231558cbSagc# the colors in the HTML output. For a value of 0 the output will use 821*231558cbSagc# grayscales only. A value of 255 will produce the most vivid colors. 822*231558cbSagc 823*231558cbSagcHTML_COLORSTYLE_SAT = 100 824*231558cbSagc 825*231558cbSagc# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to 826*231558cbSagc# the luminance component of the colors in the HTML output. Values below 827*231558cbSagc# 100 gradually make the output lighter, whereas values above 100 make 828*231558cbSagc# the output darker. The value divided by 100 is the actual gamma applied, 829*231558cbSagc# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, 830*231558cbSagc# and 100 does not change the gamma. 831*231558cbSagc 832*231558cbSagcHTML_COLORSTYLE_GAMMA = 80 833*231558cbSagc 834*231558cbSagc# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 835*231558cbSagc# page will contain the date and time when the page was generated. Setting 836*231558cbSagc# this to NO can help when comparing the output of multiple runs. 837*231558cbSagc 838*231558cbSagcHTML_TIMESTAMP = YES 839*231558cbSagc 840*231558cbSagc# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 841*231558cbSagc# files or namespaces will be aligned in HTML using tables. If set to 842*231558cbSagc# NO a bullet list will be used. 843*231558cbSagc 844*231558cbSagcHTML_ALIGN_MEMBERS = YES 845*231558cbSagc 846*231558cbSagc# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 847*231558cbSagc# documentation will contain sections that can be hidden and shown after the 848*231558cbSagc# page has loaded. For this to work a browser that supports 849*231558cbSagc# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox 850*231558cbSagc# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). 851*231558cbSagc 852*231558cbSagcHTML_DYNAMIC_SECTIONS = NO 853*231558cbSagc 854*231558cbSagc# If the GENERATE_DOCSET tag is set to YES, additional index files 855*231558cbSagc# will be generated that can be used as input for Apple's Xcode 3 856*231558cbSagc# integrated development environment, introduced with OSX 10.5 (Leopard). 857*231558cbSagc# To create a documentation set, doxygen will generate a Makefile in the 858*231558cbSagc# HTML output directory. Running make will produce the docset in that 859*231558cbSagc# directory and running "make install" will install the docset in 860*231558cbSagc# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find 861*231558cbSagc# it at startup. 862*231558cbSagc# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html 863*231558cbSagc# for more information. 864*231558cbSagc 865*231558cbSagcGENERATE_DOCSET = NO 866*231558cbSagc 867*231558cbSagc# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the 868*231558cbSagc# feed. A documentation feed provides an umbrella under which multiple 869*231558cbSagc# documentation sets from a single provider (such as a company or product suite) 870*231558cbSagc# can be grouped. 871*231558cbSagc 872*231558cbSagcDOCSET_FEEDNAME = "Doxygen generated docs" 873*231558cbSagc 874*231558cbSagc# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that 875*231558cbSagc# should uniquely identify the documentation set bundle. This should be a 876*231558cbSagc# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen 877*231558cbSagc# will append .docset to the name. 878*231558cbSagc 879*231558cbSagcDOCSET_BUNDLE_ID = org.doxygen.Project 880*231558cbSagc 881*231558cbSagc# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify 882*231558cbSagc# the documentation publisher. This should be a reverse domain-name style 883*231558cbSagc# string, e.g. com.mycompany.MyDocSet.documentation. 884*231558cbSagc 885*231558cbSagcDOCSET_PUBLISHER_ID = org.doxygen.Publisher 886*231558cbSagc 887*231558cbSagc# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. 888*231558cbSagc 889*231558cbSagcDOCSET_PUBLISHER_NAME = "Mateusz Kocielski" 890*231558cbSagc 891*231558cbSagc# If the GENERATE_HTMLHELP tag is set to YES, additional index files 892*231558cbSagc# will be generated that can be used as input for tools like the 893*231558cbSagc# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) 894*231558cbSagc# of the generated HTML documentation. 895*231558cbSagc 896*231558cbSagcGENERATE_HTMLHELP = NO 897*231558cbSagc 898*231558cbSagc# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 899*231558cbSagc# be used to specify the file name of the resulting .chm file. You 900*231558cbSagc# can add a path in front of the file if the result should not be 901*231558cbSagc# written to the html output directory. 902*231558cbSagc 903*231558cbSagcCHM_FILE = 904*231558cbSagc 905*231558cbSagc# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 906*231558cbSagc# be used to specify the location (absolute path including file name) of 907*231558cbSagc# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 908*231558cbSagc# the HTML help compiler on the generated index.hhp. 909*231558cbSagc 910*231558cbSagcHHC_LOCATION = 911*231558cbSagc 912*231558cbSagc# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 913*231558cbSagc# controls if a separate .chi index file is generated (YES) or that 914*231558cbSagc# it should be included in the master .chm file (NO). 915*231558cbSagc 916*231558cbSagcGENERATE_CHI = NO 917*231558cbSagc 918*231558cbSagc# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING 919*231558cbSagc# is used to encode HtmlHelp index (hhk), content (hhc) and project file 920*231558cbSagc# content. 921*231558cbSagc 922*231558cbSagcCHM_INDEX_ENCODING = 923*231558cbSagc 924*231558cbSagc# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 925*231558cbSagc# controls whether a binary table of contents is generated (YES) or a 926*231558cbSagc# normal table of contents (NO) in the .chm file. 927*231558cbSagc 928*231558cbSagcBINARY_TOC = NO 929*231558cbSagc 930*231558cbSagc# The TOC_EXPAND flag can be set to YES to add extra items for group members 931*231558cbSagc# to the contents of the HTML help documentation and to the tree view. 932*231558cbSagc 933*231558cbSagcTOC_EXPAND = NO 934*231558cbSagc 935*231558cbSagc# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and 936*231558cbSagc# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated 937*231558cbSagc# that can be used as input for Qt's qhelpgenerator to generate a 938*231558cbSagc# Qt Compressed Help (.qch) of the generated HTML documentation. 939*231558cbSagc 940*231558cbSagcGENERATE_QHP = NO 941*231558cbSagc 942*231558cbSagc# If the QHG_LOCATION tag is specified, the QCH_FILE tag can 943*231558cbSagc# be used to specify the file name of the resulting .qch file. 944*231558cbSagc# The path specified is relative to the HTML output folder. 945*231558cbSagc 946*231558cbSagcQCH_FILE = 947*231558cbSagc 948*231558cbSagc# The QHP_NAMESPACE tag specifies the namespace to use when generating 949*231558cbSagc# Qt Help Project output. For more information please see 950*231558cbSagc# http://doc.trolltech.com/qthelpproject.html#namespace 951*231558cbSagc 952*231558cbSagcQHP_NAMESPACE = org.doxygen.Project 953*231558cbSagc 954*231558cbSagc# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating 955*231558cbSagc# Qt Help Project output. For more information please see 956*231558cbSagc# http://doc.trolltech.com/qthelpproject.html#virtual-folders 957*231558cbSagc 958*231558cbSagcQHP_VIRTUAL_FOLDER = doc 959*231558cbSagc 960*231558cbSagc# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to 961*231558cbSagc# add. For more information please see 962*231558cbSagc# http://doc.trolltech.com/qthelpproject.html#custom-filters 963*231558cbSagc 964*231558cbSagcQHP_CUST_FILTER_NAME = 965*231558cbSagc 966*231558cbSagc# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the 967*231558cbSagc# custom filter to add. For more information please see 968*231558cbSagc# <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters"> 969*231558cbSagc# Qt Help Project / Custom Filters</a>. 970*231558cbSagc 971*231558cbSagcQHP_CUST_FILTER_ATTRS = 972*231558cbSagc 973*231558cbSagc# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this 974*231558cbSagc# project's 975*231558cbSagc# filter section matches. 976*231558cbSagc# <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes"> 977*231558cbSagc# Qt Help Project / Filter Attributes</a>. 978*231558cbSagc 979*231558cbSagcQHP_SECT_FILTER_ATTRS = 980*231558cbSagc 981*231558cbSagc# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can 982*231558cbSagc# be used to specify the location of Qt's qhelpgenerator. 983*231558cbSagc# If non-empty doxygen will try to run qhelpgenerator on the generated 984*231558cbSagc# .qhp file. 985*231558cbSagc 986*231558cbSagcQHG_LOCATION = 987*231558cbSagc 988*231558cbSagc# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files 989*231558cbSagc# will be generated, which together with the HTML files, form an Eclipse help 990*231558cbSagc# plugin. To install this plugin and make it available under the help contents 991*231558cbSagc# menu in Eclipse, the contents of the directory containing the HTML and XML 992*231558cbSagc# files needs to be copied into the plugins directory of eclipse. The name of 993*231558cbSagc# the directory within the plugins directory should be the same as 994*231558cbSagc# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before 995*231558cbSagc# the help appears. 996*231558cbSagc 997*231558cbSagcGENERATE_ECLIPSEHELP = NO 998*231558cbSagc 999*231558cbSagc# A unique identifier for the eclipse help plugin. When installing the plugin 1000*231558cbSagc# the directory name containing the HTML and XML files should also have 1001*231558cbSagc# this name. 1002*231558cbSagc 1003*231558cbSagcECLIPSE_DOC_ID = org.doxygen.Project 1004*231558cbSagc 1005*231558cbSagc# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 1006*231558cbSagc# top of each HTML page. The value NO (the default) enables the index and 1007*231558cbSagc# the value YES disables it. 1008*231558cbSagc 1009*231558cbSagcDISABLE_INDEX = NO 1010*231558cbSagc 1011*231558cbSagc# This tag can be used to set the number of enum values (range [1..20]) 1012*231558cbSagc# that doxygen will group on one line in the generated HTML documentation. 1013*231558cbSagc 1014*231558cbSagcENUM_VALUES_PER_LINE = 4 1015*231558cbSagc 1016*231558cbSagc# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index 1017*231558cbSagc# structure should be generated to display hierarchical information. 1018*231558cbSagc# If the tag value is set to YES, a side panel will be generated 1019*231558cbSagc# containing a tree-like index structure (just like the one that 1020*231558cbSagc# is generated for HTML Help). For this to work a browser that supports 1021*231558cbSagc# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). 1022*231558cbSagc# Windows users are probably better off using the HTML help feature. 1023*231558cbSagc 1024*231558cbSagcGENERATE_TREEVIEW = NO 1025*231558cbSagc 1026*231558cbSagc# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, 1027*231558cbSagc# and Class Hierarchy pages using a tree view instead of an ordered list. 1028*231558cbSagc 1029*231558cbSagcUSE_INLINE_TREES = NO 1030*231558cbSagc 1031*231558cbSagc# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 1032*231558cbSagc# used to set the initial width (in pixels) of the frame in which the tree 1033*231558cbSagc# is shown. 1034*231558cbSagc 1035*231558cbSagcTREEVIEW_WIDTH = 250 1036*231558cbSagc 1037*231558cbSagc# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open 1038*231558cbSagc# links to external symbols imported via tag files in a separate window. 1039*231558cbSagc 1040*231558cbSagcEXT_LINKS_IN_WINDOW = NO 1041*231558cbSagc 1042*231558cbSagc# Use this tag to change the font size of Latex formulas included 1043*231558cbSagc# as images in the HTML documentation. The default is 10. Note that 1044*231558cbSagc# when you change the font size after a successful doxygen run you need 1045*231558cbSagc# to manually remove any form_*.png images from the HTML output directory 1046*231558cbSagc# to force them to be regenerated. 1047*231558cbSagc 1048*231558cbSagcFORMULA_FONTSIZE = 10 1049*231558cbSagc 1050*231558cbSagc# Use the FORMULA_TRANPARENT tag to determine whether or not the images 1051*231558cbSagc# generated for formulas are transparent PNGs. Transparent PNGs are 1052*231558cbSagc# not supported properly for IE 6.0, but are supported on all modern browsers. 1053*231558cbSagc# Note that when changing this option you need to delete any form_*.png files 1054*231558cbSagc# in the HTML output before the changes have effect. 1055*231558cbSagc 1056*231558cbSagcFORMULA_TRANSPARENT = YES 1057*231558cbSagc 1058*231558cbSagc# When the SEARCHENGINE tag is enabled doxygen will generate a search box 1059*231558cbSagc# for the HTML output. The underlying search engine uses javascript 1060*231558cbSagc# and DHTML and should work on any modern browser. Note that when using 1061*231558cbSagc# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets 1062*231558cbSagc# (GENERATE_DOCSET) there is already a search function so this one should 1063*231558cbSagc# typically be disabled. For large projects the javascript based search engine 1064*231558cbSagc# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. 1065*231558cbSagc 1066*231558cbSagcSEARCHENGINE = YES 1067*231558cbSagc 1068*231558cbSagc# When the SERVER_BASED_SEARCH tag is enabled the search engine will be 1069*231558cbSagc# implemented using a PHP enabled web server instead of at the web client 1070*231558cbSagc# using Javascript. Doxygen will generate the search PHP script and index 1071*231558cbSagc# file to put on the web server. The advantage of the server 1072*231558cbSagc# based approach is that it scales better to large projects and allows 1073*231558cbSagc# full text search. The disadvances is that it is more difficult to setup 1074*231558cbSagc# and does not have live searching capabilities. 1075*231558cbSagc 1076*231558cbSagcSERVER_BASED_SEARCH = NO 1077*231558cbSagc 1078*231558cbSagc#--------------------------------------------------------------------------- 1079*231558cbSagc# configuration options related to the LaTeX output 1080*231558cbSagc#--------------------------------------------------------------------------- 1081*231558cbSagc 1082*231558cbSagc# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 1083*231558cbSagc# generate Latex output. 1084*231558cbSagc 1085*231558cbSagcGENERATE_LATEX = NO 1086*231558cbSagc 1087*231558cbSagc# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 1088*231558cbSagc# If a relative path is entered the value of OUTPUT_DIRECTORY will be 1089*231558cbSagc# put in front of it. If left blank `latex' will be used as the default path. 1090*231558cbSagc 1091*231558cbSagcLATEX_OUTPUT = latex 1092*231558cbSagc 1093*231558cbSagc# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 1094*231558cbSagc# invoked. If left blank `latex' will be used as the default command name. 1095*231558cbSagc# Note that when enabling USE_PDFLATEX this option is only used for 1096*231558cbSagc# generating bitmaps for formulas in the HTML output, but not in the 1097*231558cbSagc# Makefile that is written to the output directory. 1098*231558cbSagc 1099*231558cbSagcLATEX_CMD_NAME = latex 1100*231558cbSagc 1101*231558cbSagc# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 1102*231558cbSagc# generate index for LaTeX. If left blank `makeindex' will be used as the 1103*231558cbSagc# default command name. 1104*231558cbSagc 1105*231558cbSagcMAKEINDEX_CMD_NAME = makeindex 1106*231558cbSagc 1107*231558cbSagc# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 1108*231558cbSagc# LaTeX documents. This may be useful for small projects and may help to 1109*231558cbSagc# save some trees in general. 1110*231558cbSagc 1111*231558cbSagcCOMPACT_LATEX = NO 1112*231558cbSagc 1113*231558cbSagc# The PAPER_TYPE tag can be used to set the paper type that is used 1114*231558cbSagc# by the printer. Possible values are: a4, a4wide, letter, legal and 1115*231558cbSagc# executive. If left blank a4wide will be used. 1116*231558cbSagc 1117*231558cbSagcPAPER_TYPE = a4wide 1118*231558cbSagc 1119*231558cbSagc# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 1120*231558cbSagc# packages that should be included in the LaTeX output. 1121*231558cbSagc 1122*231558cbSagcEXTRA_PACKAGES = 1123*231558cbSagc 1124*231558cbSagc# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 1125*231558cbSagc# the generated latex document. The header should contain everything until 1126*231558cbSagc# the first chapter. If it is left blank doxygen will generate a 1127*231558cbSagc# standard header. Notice: only use this tag if you know what you are doing! 1128*231558cbSagc 1129*231558cbSagcLATEX_HEADER = 1130*231558cbSagc 1131*231558cbSagc# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 1132*231558cbSagc# is prepared for conversion to pdf (using ps2pdf). The pdf file will 1133*231558cbSagc# contain links (just like the HTML output) instead of page references 1134*231558cbSagc# This makes the output suitable for online browsing using a pdf viewer. 1135*231558cbSagc 1136*231558cbSagcPDF_HYPERLINKS = YES 1137*231558cbSagc 1138*231558cbSagc# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 1139*231558cbSagc# plain latex in the generated Makefile. Set this option to YES to get a 1140*231558cbSagc# higher quality PDF documentation. 1141*231558cbSagc 1142*231558cbSagcUSE_PDFLATEX = YES 1143*231558cbSagc 1144*231558cbSagc# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 1145*231558cbSagc# command to the generated LaTeX files. This will instruct LaTeX to keep 1146*231558cbSagc# running if errors occur, instead of asking the user for help. 1147*231558cbSagc# This option is also used when generating formulas in HTML. 1148*231558cbSagc 1149*231558cbSagcLATEX_BATCHMODE = NO 1150*231558cbSagc 1151*231558cbSagc# If LATEX_HIDE_INDICES is set to YES then doxygen will not 1152*231558cbSagc# include the index chapters (such as File Index, Compound Index, etc.) 1153*231558cbSagc# in the output. 1154*231558cbSagc 1155*231558cbSagcLATEX_HIDE_INDICES = NO 1156*231558cbSagc 1157*231558cbSagc# If LATEX_SOURCE_CODE is set to YES then doxygen will include 1158*231558cbSagc# source code with syntax highlighting in the LaTeX output. 1159*231558cbSagc# Note that which sources are shown also depends on other settings 1160*231558cbSagc# such as SOURCE_BROWSER. 1161*231558cbSagc 1162*231558cbSagcLATEX_SOURCE_CODE = NO 1163*231558cbSagc 1164*231558cbSagc#--------------------------------------------------------------------------- 1165*231558cbSagc# configuration options related to the RTF output 1166*231558cbSagc#--------------------------------------------------------------------------- 1167*231558cbSagc 1168*231558cbSagc# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 1169*231558cbSagc# The RTF output is optimized for Word 97 and may not look very pretty with 1170*231558cbSagc# other RTF readers or editors. 1171*231558cbSagc 1172*231558cbSagcGENERATE_RTF = NO 1173*231558cbSagc 1174*231558cbSagc# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 1175*231558cbSagc# If a relative path is entered the value of OUTPUT_DIRECTORY will be 1176*231558cbSagc# put in front of it. If left blank `rtf' will be used as the default path. 1177*231558cbSagc 1178*231558cbSagcRTF_OUTPUT = rtf 1179*231558cbSagc 1180*231558cbSagc# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 1181*231558cbSagc# RTF documents. This may be useful for small projects and may help to 1182*231558cbSagc# save some trees in general. 1183*231558cbSagc 1184*231558cbSagcCOMPACT_RTF = NO 1185*231558cbSagc 1186*231558cbSagc# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 1187*231558cbSagc# will contain hyperlink fields. The RTF file will 1188*231558cbSagc# contain links (just like the HTML output) instead of page references. 1189*231558cbSagc# This makes the output suitable for online browsing using WORD or other 1190*231558cbSagc# programs which support those fields. 1191*231558cbSagc# Note: wordpad (write) and others do not support links. 1192*231558cbSagc 1193*231558cbSagcRTF_HYPERLINKS = NO 1194*231558cbSagc 1195*231558cbSagc# Load stylesheet definitions from file. Syntax is similar to doxygen's 1196*231558cbSagc# config file, i.e. a series of assignments. You only have to provide 1197*231558cbSagc# replacements, missing definitions are set to their default value. 1198*231558cbSagc 1199*231558cbSagcRTF_STYLESHEET_FILE = 1200*231558cbSagc 1201*231558cbSagc# Set optional variables used in the generation of an rtf document. 1202*231558cbSagc# Syntax is similar to doxygen's config file. 1203*231558cbSagc 1204*231558cbSagcRTF_EXTENSIONS_FILE = 1205*231558cbSagc 1206*231558cbSagc#--------------------------------------------------------------------------- 1207*231558cbSagc# configuration options related to the man page output 1208*231558cbSagc#--------------------------------------------------------------------------- 1209*231558cbSagc 1210*231558cbSagc# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 1211*231558cbSagc# generate man pages 1212*231558cbSagc 1213*231558cbSagcGENERATE_MAN = YES 1214*231558cbSagc 1215*231558cbSagc# The MAN_OUTPUT tag is used to specify where the man pages will be put. 1216*231558cbSagc# If a relative path is entered the value of OUTPUT_DIRECTORY will be 1217*231558cbSagc# put in front of it. If left blank `man' will be used as the default path. 1218*231558cbSagc 1219*231558cbSagcMAN_OUTPUT = man 1220*231558cbSagc 1221*231558cbSagc# The MAN_EXTENSION tag determines the extension that is added to 1222*231558cbSagc# the generated man pages (default is the subroutine's section .3) 1223*231558cbSagc 1224*231558cbSagcMAN_EXTENSION = .3 1225*231558cbSagc 1226*231558cbSagc# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 1227*231558cbSagc# then it will generate one additional man file for each entity 1228*231558cbSagc# documented in the real man page(s). These additional files 1229*231558cbSagc# only source the real man page, but without them the man command 1230*231558cbSagc# would be unable to find the correct page. The default is NO. 1231*231558cbSagc 1232*231558cbSagcMAN_LINKS = NO 1233*231558cbSagc 1234*231558cbSagc#--------------------------------------------------------------------------- 1235*231558cbSagc# configuration options related to the XML output 1236*231558cbSagc#--------------------------------------------------------------------------- 1237*231558cbSagc 1238*231558cbSagc# If the GENERATE_XML tag is set to YES Doxygen will 1239*231558cbSagc# generate an XML file that captures the structure of 1240*231558cbSagc# the code including all documentation. 1241*231558cbSagc 1242*231558cbSagcGENERATE_XML = NO 1243*231558cbSagc 1244*231558cbSagc# The XML_OUTPUT tag is used to specify where the XML pages will be put. 1245*231558cbSagc# If a relative path is entered the value of OUTPUT_DIRECTORY will be 1246*231558cbSagc# put in front of it. If left blank `xml' will be used as the default path. 1247*231558cbSagc 1248*231558cbSagcXML_OUTPUT = xml 1249*231558cbSagc 1250*231558cbSagc# The XML_SCHEMA tag can be used to specify an XML schema, 1251*231558cbSagc# which can be used by a validating XML parser to check the 1252*231558cbSagc# syntax of the XML files. 1253*231558cbSagc 1254*231558cbSagcXML_SCHEMA = 1255*231558cbSagc 1256*231558cbSagc# The XML_DTD tag can be used to specify an XML DTD, 1257*231558cbSagc# which can be used by a validating XML parser to check the 1258*231558cbSagc# syntax of the XML files. 1259*231558cbSagc 1260*231558cbSagcXML_DTD = 1261*231558cbSagc 1262*231558cbSagc# If the XML_PROGRAMLISTING tag is set to YES Doxygen will 1263*231558cbSagc# dump the program listings (including syntax highlighting 1264*231558cbSagc# and cross-referencing information) to the XML output. Note that 1265*231558cbSagc# enabling this will significantly increase the size of the XML output. 1266*231558cbSagc 1267*231558cbSagcXML_PROGRAMLISTING = YES 1268*231558cbSagc 1269*231558cbSagc#--------------------------------------------------------------------------- 1270*231558cbSagc# configuration options for the AutoGen Definitions output 1271*231558cbSagc#--------------------------------------------------------------------------- 1272*231558cbSagc 1273*231558cbSagc# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 1274*231558cbSagc# generate an AutoGen Definitions (see autogen.sf.net) file 1275*231558cbSagc# that captures the structure of the code including all 1276*231558cbSagc# documentation. Note that this feature is still experimental 1277*231558cbSagc# and incomplete at the moment. 1278*231558cbSagc 1279*231558cbSagcGENERATE_AUTOGEN_DEF = NO 1280*231558cbSagc 1281*231558cbSagc#--------------------------------------------------------------------------- 1282*231558cbSagc# configuration options related to the Perl module output 1283*231558cbSagc#--------------------------------------------------------------------------- 1284*231558cbSagc 1285*231558cbSagc# If the GENERATE_PERLMOD tag is set to YES Doxygen will 1286*231558cbSagc# generate a Perl module file that captures the structure of 1287*231558cbSagc# the code including all documentation. Note that this 1288*231558cbSagc# feature is still experimental and incomplete at the 1289*231558cbSagc# moment. 1290*231558cbSagc 1291*231558cbSagcGENERATE_PERLMOD = NO 1292*231558cbSagc 1293*231558cbSagc# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 1294*231558cbSagc# the necessary Makefile rules, Perl scripts and LaTeX code to be able 1295*231558cbSagc# to generate PDF and DVI output from the Perl module output. 1296*231558cbSagc 1297*231558cbSagcPERLMOD_LATEX = NO 1298*231558cbSagc 1299*231558cbSagc# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 1300*231558cbSagc# nicely formatted so it can be parsed by a human reader. This is useful 1301*231558cbSagc# if you want to understand what is going on. On the other hand, if this 1302*231558cbSagc# tag is set to NO the size of the Perl module output will be much smaller 1303*231558cbSagc# and Perl will parse it just the same. 1304*231558cbSagc 1305*231558cbSagcPERLMOD_PRETTY = YES 1306*231558cbSagc 1307*231558cbSagc# The names of the make variables in the generated doxyrules.make file 1308*231558cbSagc# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 1309*231558cbSagc# This is useful so different doxyrules.make files included by the same 1310*231558cbSagc# Makefile don't overwrite each other's variables. 1311*231558cbSagc 1312*231558cbSagcPERLMOD_MAKEVAR_PREFIX = 1313*231558cbSagc 1314*231558cbSagc#--------------------------------------------------------------------------- 1315*231558cbSagc# Configuration options related to the preprocessor 1316*231558cbSagc#--------------------------------------------------------------------------- 1317*231558cbSagc 1318*231558cbSagc# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 1319*231558cbSagc# evaluate all C-preprocessor directives found in the sources and include 1320*231558cbSagc# files. 1321*231558cbSagc 1322*231558cbSagcENABLE_PREPROCESSING = YES 1323*231558cbSagc 1324*231558cbSagc# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 1325*231558cbSagc# names in the source code. If set to NO (the default) only conditional 1326*231558cbSagc# compilation will be performed. Macro expansion can be done in a controlled 1327*231558cbSagc# way by setting EXPAND_ONLY_PREDEF to YES. 1328*231558cbSagc 1329*231558cbSagcMACRO_EXPANSION = NO 1330*231558cbSagc 1331*231558cbSagc# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 1332*231558cbSagc# then the macro expansion is limited to the macros specified with the 1333*231558cbSagc# PREDEFINED and EXPAND_AS_DEFINED tags. 1334*231558cbSagc 1335*231558cbSagcEXPAND_ONLY_PREDEF = NO 1336*231558cbSagc 1337*231558cbSagc# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 1338*231558cbSagc# in the INCLUDE_PATH (see below) will be search if a #include is found. 1339*231558cbSagc 1340*231558cbSagcSEARCH_INCLUDES = YES 1341*231558cbSagc 1342*231558cbSagc# The INCLUDE_PATH tag can be used to specify one or more directories that 1343*231558cbSagc# contain include files that are not input files but should be processed by 1344*231558cbSagc# the preprocessor. 1345*231558cbSagc 1346*231558cbSagcINCLUDE_PATH = 1347*231558cbSagc 1348*231558cbSagc# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 1349*231558cbSagc# patterns (like *.h and *.hpp) to filter out the header-files in the 1350*231558cbSagc# directories. If left blank, the patterns specified with FILE_PATTERNS will 1351*231558cbSagc# be used. 1352*231558cbSagc 1353*231558cbSagcINCLUDE_FILE_PATTERNS = 1354*231558cbSagc 1355*231558cbSagc# The PREDEFINED tag can be used to specify one or more macro names that 1356*231558cbSagc# are defined before the preprocessor is started (similar to the -D option of 1357*231558cbSagc# gcc). The argument of the tag is a list of macros of the form: name 1358*231558cbSagc# or name=definition (no spaces). If the definition and the = are 1359*231558cbSagc# omitted =1 is assumed. To prevent a macro definition from being 1360*231558cbSagc# undefined via #undef or recursively expanded use the := operator 1361*231558cbSagc# instead of the = operator. 1362*231558cbSagc 1363*231558cbSagcPREDEFINED = 1364*231558cbSagc 1365*231558cbSagc# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 1366*231558cbSagc# this tag can be used to specify a list of macro names that should be expanded. 1367*231558cbSagc# The macro definition that is found in the sources will be used. 1368*231558cbSagc# Use the PREDEFINED tag if you want to use a different macro definition. 1369*231558cbSagc 1370*231558cbSagcEXPAND_AS_DEFINED = 1371*231558cbSagc 1372*231558cbSagc# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 1373*231558cbSagc# doxygen's preprocessor will remove all function-like macros that are alone 1374*231558cbSagc# on a line, have an all uppercase name, and do not end with a semicolon. Such 1375*231558cbSagc# function macros are typically used for boiler-plate code, and will confuse 1376*231558cbSagc# the parser if not removed. 1377*231558cbSagc 1378*231558cbSagcSKIP_FUNCTION_MACROS = YES 1379*231558cbSagc 1380*231558cbSagc#--------------------------------------------------------------------------- 1381*231558cbSagc# Configuration::additions related to external references 1382*231558cbSagc#--------------------------------------------------------------------------- 1383*231558cbSagc 1384*231558cbSagc# The TAGFILES option can be used to specify one or more tagfiles. 1385*231558cbSagc# Optionally an initial location of the external documentation 1386*231558cbSagc# can be added for each tagfile. The format of a tag file without 1387*231558cbSagc# this location is as follows: 1388*231558cbSagc# TAGFILES = file1 file2 ... 1389*231558cbSagc# Adding location for the tag files is done as follows: 1390*231558cbSagc# TAGFILES = file1=loc1 "file2 = loc2" ... 1391*231558cbSagc# where "loc1" and "loc2" can be relative or absolute paths or 1392*231558cbSagc# URLs. If a location is present for each tag, the installdox tool 1393*231558cbSagc# does not have to be run to correct the links. 1394*231558cbSagc# Note that each tag file must have a unique name 1395*231558cbSagc# (where the name does NOT include the path) 1396*231558cbSagc# If a tag file is not located in the directory in which doxygen 1397*231558cbSagc# is run, you must also specify the path to the tagfile here. 1398*231558cbSagc 1399*231558cbSagcTAGFILES = 1400*231558cbSagc 1401*231558cbSagc# When a file name is specified after GENERATE_TAGFILE, doxygen will create 1402*231558cbSagc# a tag file that is based on the input files it reads. 1403*231558cbSagc 1404*231558cbSagcGENERATE_TAGFILE = 1405*231558cbSagc 1406*231558cbSagc# If the ALLEXTERNALS tag is set to YES all external classes will be listed 1407*231558cbSagc# in the class index. If set to NO only the inherited external classes 1408*231558cbSagc# will be listed. 1409*231558cbSagc 1410*231558cbSagcALLEXTERNALS = NO 1411*231558cbSagc 1412*231558cbSagc# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 1413*231558cbSagc# in the modules index. If set to NO, only the current project's groups will 1414*231558cbSagc# be listed. 1415*231558cbSagc 1416*231558cbSagcEXTERNAL_GROUPS = YES 1417*231558cbSagc 1418*231558cbSagc# The PERL_PATH should be the absolute path and name of the perl script 1419*231558cbSagc# interpreter (i.e. the result of `which perl'). 1420*231558cbSagc 1421*231558cbSagcPERL_PATH = /usr/bin/perl 1422*231558cbSagc 1423*231558cbSagc#--------------------------------------------------------------------------- 1424*231558cbSagc# Configuration options related to the dot tool 1425*231558cbSagc#--------------------------------------------------------------------------- 1426*231558cbSagc 1427*231558cbSagc# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 1428*231558cbSagc# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 1429*231558cbSagc# or super classes. Setting the tag to NO turns the diagrams off. Note that 1430*231558cbSagc# this option is superseded by the HAVE_DOT option below. This is only a 1431*231558cbSagc# fallback. It is recommended to install and use dot, since it yields more 1432*231558cbSagc# powerful graphs. 1433*231558cbSagc 1434*231558cbSagcCLASS_DIAGRAMS = YES 1435*231558cbSagc 1436*231558cbSagc# You can define message sequence charts within doxygen comments using the \msc 1437*231558cbSagc# command. Doxygen will then run the mscgen tool (see 1438*231558cbSagc# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the 1439*231558cbSagc# documentation. The MSCGEN_PATH tag allows you to specify the directory where 1440*231558cbSagc# the mscgen tool resides. If left empty the tool is assumed to be found in the 1441*231558cbSagc# default search path. 1442*231558cbSagc 1443*231558cbSagcMSCGEN_PATH = 1444*231558cbSagc 1445*231558cbSagc# If set to YES, the inheritance and collaboration graphs will hide 1446*231558cbSagc# inheritance and usage relations if the target is undocumented 1447*231558cbSagc# or is not a class. 1448*231558cbSagc 1449*231558cbSagcHIDE_UNDOC_RELATIONS = YES 1450*231558cbSagc 1451*231558cbSagc# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 1452*231558cbSagc# available from the path. This tool is part of Graphviz, a graph visualization 1453*231558cbSagc# toolkit from AT&T and Lucent Bell Labs. The other options in this section 1454*231558cbSagc# have no effect if this option is set to NO (the default) 1455*231558cbSagc 1456*231558cbSagcHAVE_DOT = NO 1457*231558cbSagc 1458*231558cbSagc# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is 1459*231558cbSagc# allowed to run in parallel. When set to 0 (the default) doxygen will 1460*231558cbSagc# base this on the number of processors available in the system. You can set it 1461*231558cbSagc# explicitly to a value larger than 0 to get control over the balance 1462*231558cbSagc# between CPU load and processing speed. 1463*231558cbSagc 1464*231558cbSagcDOT_NUM_THREADS = 0 1465*231558cbSagc 1466*231558cbSagc# By default doxygen will write a font called FreeSans.ttf to the output 1467*231558cbSagc# directory and reference it in all dot files that doxygen generates. This 1468*231558cbSagc# font does not include all possible unicode characters however, so when you need 1469*231558cbSagc# these (or just want a differently looking font) you can specify the font name 1470*231558cbSagc# using DOT_FONTNAME. You need need to make sure dot is able to find the font, 1471*231558cbSagc# which can be done by putting it in a standard location or by setting the 1472*231558cbSagc# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory 1473*231558cbSagc# containing the font. 1474*231558cbSagc 1475*231558cbSagcDOT_FONTNAME = FreeSans.ttf 1476*231558cbSagc 1477*231558cbSagc# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. 1478*231558cbSagc# The default size is 10pt. 1479*231558cbSagc 1480*231558cbSagcDOT_FONTSIZE = 10 1481*231558cbSagc 1482*231558cbSagc# By default doxygen will tell dot to use the output directory to look for the 1483*231558cbSagc# FreeSans.ttf font (which doxygen will put there itself). If you specify a 1484*231558cbSagc# different font using DOT_FONTNAME you can set the path where dot 1485*231558cbSagc# can find it using this tag. 1486*231558cbSagc 1487*231558cbSagcDOT_FONTPATH = 1488*231558cbSagc 1489*231558cbSagc# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 1490*231558cbSagc# will generate a graph for each documented class showing the direct and 1491*231558cbSagc# indirect inheritance relations. Setting this tag to YES will force the 1492*231558cbSagc# the CLASS_DIAGRAMS tag to NO. 1493*231558cbSagc 1494*231558cbSagcCLASS_GRAPH = YES 1495*231558cbSagc 1496*231558cbSagc# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 1497*231558cbSagc# will generate a graph for each documented class showing the direct and 1498*231558cbSagc# indirect implementation dependencies (inheritance, containment, and 1499*231558cbSagc# class references variables) of the class with other documented classes. 1500*231558cbSagc 1501*231558cbSagcCOLLABORATION_GRAPH = YES 1502*231558cbSagc 1503*231558cbSagc# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 1504*231558cbSagc# will generate a graph for groups, showing the direct groups dependencies 1505*231558cbSagc 1506*231558cbSagcGROUP_GRAPHS = YES 1507*231558cbSagc 1508*231558cbSagc# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 1509*231558cbSagc# collaboration diagrams in a style similar to the OMG's Unified Modeling 1510*231558cbSagc# Language. 1511*231558cbSagc 1512*231558cbSagcUML_LOOK = NO 1513*231558cbSagc 1514*231558cbSagc# If set to YES, the inheritance and collaboration graphs will show the 1515*231558cbSagc# relations between templates and their instances. 1516*231558cbSagc 1517*231558cbSagcTEMPLATE_RELATIONS = NO 1518*231558cbSagc 1519*231558cbSagc# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 1520*231558cbSagc# tags are set to YES then doxygen will generate a graph for each documented 1521*231558cbSagc# file showing the direct and indirect include dependencies of the file with 1522*231558cbSagc# other documented files. 1523*231558cbSagc 1524*231558cbSagcINCLUDE_GRAPH = YES 1525*231558cbSagc 1526*231558cbSagc# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 1527*231558cbSagc# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 1528*231558cbSagc# documented header file showing the documented files that directly or 1529*231558cbSagc# indirectly include this file. 1530*231558cbSagc 1531*231558cbSagcINCLUDED_BY_GRAPH = YES 1532*231558cbSagc 1533*231558cbSagc# If the CALL_GRAPH and HAVE_DOT options are set to YES then 1534*231558cbSagc# doxygen will generate a call dependency graph for every global function 1535*231558cbSagc# or class method. Note that enabling this option will significantly increase 1536*231558cbSagc# the time of a run. So in most cases it will be better to enable call graphs 1537*231558cbSagc# for selected functions only using the \callgraph command. 1538*231558cbSagc 1539*231558cbSagcCALL_GRAPH = NO 1540*231558cbSagc 1541*231558cbSagc# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then 1542*231558cbSagc# doxygen will generate a caller dependency graph for every global function 1543*231558cbSagc# or class method. Note that enabling this option will significantly increase 1544*231558cbSagc# the time of a run. So in most cases it will be better to enable caller 1545*231558cbSagc# graphs for selected functions only using the \callergraph command. 1546*231558cbSagc 1547*231558cbSagcCALLER_GRAPH = NO 1548*231558cbSagc 1549*231558cbSagc# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 1550*231558cbSagc# will graphical hierarchy of all classes instead of a textual one. 1551*231558cbSagc 1552*231558cbSagcGRAPHICAL_HIERARCHY = YES 1553*231558cbSagc 1554*231558cbSagc# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 1555*231558cbSagc# then doxygen will show the dependencies a directory has on other directories 1556*231558cbSagc# in a graphical way. The dependency relations are determined by the #include 1557*231558cbSagc# relations between the files in the directories. 1558*231558cbSagc 1559*231558cbSagcDIRECTORY_GRAPH = YES 1560*231558cbSagc 1561*231558cbSagc# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 1562*231558cbSagc# generated by dot. Possible values are png, jpg, or gif 1563*231558cbSagc# If left blank png will be used. 1564*231558cbSagc 1565*231558cbSagcDOT_IMAGE_FORMAT = png 1566*231558cbSagc 1567*231558cbSagc# The tag DOT_PATH can be used to specify the path where the dot tool can be 1568*231558cbSagc# found. If left blank, it is assumed the dot tool can be found in the path. 1569*231558cbSagc 1570*231558cbSagcDOT_PATH = 1571*231558cbSagc 1572*231558cbSagc# The DOTFILE_DIRS tag can be used to specify one or more directories that 1573*231558cbSagc# contain dot files that are included in the documentation (see the 1574*231558cbSagc# \dotfile command). 1575*231558cbSagc 1576*231558cbSagcDOTFILE_DIRS = 1577*231558cbSagc 1578*231558cbSagc# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of 1579*231558cbSagc# nodes that will be shown in the graph. If the number of nodes in a graph 1580*231558cbSagc# becomes larger than this value, doxygen will truncate the graph, which is 1581*231558cbSagc# visualized by representing a node as a red box. Note that doxygen if the 1582*231558cbSagc# number of direct children of the root node in a graph is already larger than 1583*231558cbSagc# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note 1584*231558cbSagc# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 1585*231558cbSagc 1586*231558cbSagcDOT_GRAPH_MAX_NODES = 50 1587*231558cbSagc 1588*231558cbSagc# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1589*231558cbSagc# graphs generated by dot. A depth value of 3 means that only nodes reachable 1590*231558cbSagc# from the root by following a path via at most 3 edges will be shown. Nodes 1591*231558cbSagc# that lay further from the root node will be omitted. Note that setting this 1592*231558cbSagc# option to 1 or 2 may greatly reduce the computation time needed for large 1593*231558cbSagc# code bases. Also note that the size of a graph can be further restricted by 1594*231558cbSagc# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 1595*231558cbSagc 1596*231558cbSagcMAX_DOT_GRAPH_DEPTH = 0 1597*231558cbSagc 1598*231558cbSagc# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 1599*231558cbSagc# background. This is disabled by default, because dot on Windows does not 1600*231558cbSagc# seem to support this out of the box. Warning: Depending on the platform used, 1601*231558cbSagc# enabling this option may lead to badly anti-aliased labels on the edges of 1602*231558cbSagc# a graph (i.e. they become hard to read). 1603*231558cbSagc 1604*231558cbSagcDOT_TRANSPARENT = NO 1605*231558cbSagc 1606*231558cbSagc# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 1607*231558cbSagc# files in one run (i.e. multiple -o and -T options on the command line). This 1608*231558cbSagc# makes dot run faster, but since only newer versions of dot (>1.8.10) 1609*231558cbSagc# support this, this feature is disabled by default. 1610*231558cbSagc 1611*231558cbSagcDOT_MULTI_TARGETS = NO 1612*231558cbSagc 1613*231558cbSagc# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 1614*231558cbSagc# generate a legend page explaining the meaning of the various boxes and 1615*231558cbSagc# arrows in the dot generated graphs. 1616*231558cbSagc 1617*231558cbSagcGENERATE_LEGEND = YES 1618*231558cbSagc 1619*231558cbSagc# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 1620*231558cbSagc# remove the intermediate dot files that are used to generate 1621*231558cbSagc# the various graphs. 1622*231558cbSagc 1623*231558cbSagcDOT_CLEANUP = YES 1624