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