1*c2c66affSColin Finck# Doxyfile 1.3.9.1 2*c2c66affSColin Finck 3*c2c66affSColin Finck# This file describes the settings to be used by the documentation system 4*c2c66affSColin Finck# doxygen (www.doxygen.org) for a project 5*c2c66affSColin Finck# 6*c2c66affSColin Finck# All text after a hash (#) is considered a comment and will be ignored 7*c2c66affSColin Finck# The format is: 8*c2c66affSColin Finck# TAG = value [value, ...] 9*c2c66affSColin Finck# For lists items can also be appended using: 10*c2c66affSColin Finck# TAG += value [value, ...] 11*c2c66affSColin Finck# Values that contain spaces should be placed between quotes (" ") 12*c2c66affSColin Finck 13*c2c66affSColin Finck#--------------------------------------------------------------------------- 14*c2c66affSColin Finck# Project related configuration options 15*c2c66affSColin Finck#--------------------------------------------------------------------------- 16*c2c66affSColin Finck 17*c2c66affSColin Finck# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 18*c2c66affSColin Finck# by quotes) that should identify the project. 19*c2c66affSColin Finck 20*c2c66affSColin FinckPROJECT_NAME = "ROS Explorer" 21*c2c66affSColin Finck 22*c2c66affSColin Finck# The PROJECT_NUMBER tag can be used to enter a project or revision number. 23*c2c66affSColin Finck# This could be handy for archiving the generated documentation or 24*c2c66affSColin Finck# if some version control system is used. 25*c2c66affSColin Finck 26*c2c66affSColin FinckPROJECT_NUMBER = 27*c2c66affSColin Finck 28*c2c66affSColin Finck# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 29*c2c66affSColin Finck# base path where the generated documentation will be put. 30*c2c66affSColin Finck# If a relative path is entered, it will be relative to the location 31*c2c66affSColin Finck# where doxygen was started. If left blank the current directory will be used. 32*c2c66affSColin Finck 33*c2c66affSColin FinckOUTPUT_DIRECTORY = doxy-doc 34*c2c66affSColin Finck 35*c2c66affSColin Finck# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 36*c2c66affSColin Finck# 4096 sub-directories (in 2 levels) under the output directory of each output 37*c2c66affSColin Finck# format and will distribute the generated files over these directories. 38*c2c66affSColin Finck# Enabling this option can be useful when feeding doxygen a huge amount of source 39*c2c66affSColin Finck# files, where putting all generated files in the same directory would otherwise 40*c2c66affSColin Finck# cause performance problems for the file system. 41*c2c66affSColin Finck 42*c2c66affSColin FinckCREATE_SUBDIRS = NO 43*c2c66affSColin Finck 44*c2c66affSColin Finck# The OUTPUT_LANGUAGE tag is used to specify the language in which all 45*c2c66affSColin Finck# documentation generated by doxygen is written. Doxygen will use this 46*c2c66affSColin Finck# information to generate all constant output in the proper language. 47*c2c66affSColin Finck# The default language is English, other supported languages are: 48*c2c66affSColin Finck# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, 49*c2c66affSColin Finck# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, 50*c2c66affSColin Finck# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, 51*c2c66affSColin Finck# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, 52*c2c66affSColin Finck# Swedish, and Ukrainian. 53*c2c66affSColin Finck 54*c2c66affSColin FinckOUTPUT_LANGUAGE = English 55*c2c66affSColin Finck 56*c2c66affSColin Finck# This tag can be used to specify the encoding used in the generated output. 57*c2c66affSColin Finck# The encoding is not always determined by the language that is chosen, 58*c2c66affSColin Finck# but also whether or not the output is meant for Windows or non-Windows users. 59*c2c66affSColin Finck# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES 60*c2c66affSColin Finck# forces the Windows encoding (this is the default for the Windows binary), 61*c2c66affSColin Finck# whereas setting the tag to NO uses a Unix-style encoding (the default for 62*c2c66affSColin Finck# all platforms other than Windows). 63*c2c66affSColin Finck 64*c2c66affSColin FinckUSE_WINDOWS_ENCODING = YES 65*c2c66affSColin Finck 66*c2c66affSColin Finck# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 67*c2c66affSColin Finck# include brief member descriptions after the members that are listed in 68*c2c66affSColin Finck# the file and class documentation (similar to JavaDoc). 69*c2c66affSColin Finck# Set to NO to disable this. 70*c2c66affSColin Finck 71*c2c66affSColin FinckBRIEF_MEMBER_DESC = YES 72*c2c66affSColin Finck 73*c2c66affSColin Finck# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 74*c2c66affSColin Finck# the brief description of a member or function before the detailed description. 75*c2c66affSColin Finck# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 76*c2c66affSColin Finck# brief descriptions will be completely suppressed. 77*c2c66affSColin Finck 78*c2c66affSColin FinckREPEAT_BRIEF = YES 79*c2c66affSColin Finck 80*c2c66affSColin Finck# This tag implements a quasi-intelligent brief description abbreviator 81*c2c66affSColin Finck# that is used to form the text in various listings. Each string 82*c2c66affSColin Finck# in this list, if found as the leading text of the brief description, will be 83*c2c66affSColin Finck# stripped from the text and the result after processing the whole list, is used 84*c2c66affSColin Finck# as the annotated text. Otherwise, the brief description is used as-is. If left 85*c2c66affSColin Finck# blank, the following values are used ("$name" is automatically replaced with the 86*c2c66affSColin Finck# name of the entity): "The $name class" "The $name widget" "The $name file" 87*c2c66affSColin Finck# "is" "provides" "specifies" "contains" "represents" "a" "an" "the" 88*c2c66affSColin Finck 89*c2c66affSColin FinckABBREVIATE_BRIEF = 90*c2c66affSColin Finck 91*c2c66affSColin Finck# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 92*c2c66affSColin Finck# Doxygen will generate a detailed section even if there is only a brief 93*c2c66affSColin Finck# description. 94*c2c66affSColin Finck 95*c2c66affSColin FinckALWAYS_DETAILED_SEC = NO 96*c2c66affSColin Finck 97*c2c66affSColin Finck# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited 98*c2c66affSColin Finck# members of a class in the documentation of that class as if those members were 99*c2c66affSColin Finck# ordinary class members. Constructors, destructors and assignment operators of 100*c2c66affSColin Finck# the base classes will not be shown. 101*c2c66affSColin Finck 102*c2c66affSColin FinckINLINE_INHERITED_MEMB = NO 103*c2c66affSColin Finck 104*c2c66affSColin Finck# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 105*c2c66affSColin Finck# path before files name in the file list and in the header files. If set 106*c2c66affSColin Finck# to NO the shortest path that makes the file name unique will be used. 107*c2c66affSColin Finck 108*c2c66affSColin FinckFULL_PATH_NAMES = NO 109*c2c66affSColin Finck 110*c2c66affSColin Finck# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 111*c2c66affSColin Finck# can be used to strip a user-defined part of the path. Stripping is 112*c2c66affSColin Finck# only done if one of the specified strings matches the left-hand part of 113*c2c66affSColin Finck# the path. The tag can be used to show relative paths in the file list. 114*c2c66affSColin Finck# If left blank the directory from which doxygen is run is used as the 115*c2c66affSColin Finck# path to strip. 116*c2c66affSColin Finck 117*c2c66affSColin FinckSTRIP_FROM_PATH = 118*c2c66affSColin Finck 119*c2c66affSColin Finck# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 120*c2c66affSColin Finck# the path mentioned in the documentation of a class, which tells 121*c2c66affSColin Finck# the reader which header file to include in order to use a class. 122*c2c66affSColin Finck# If left blank only the name of the header file containing the class 123*c2c66affSColin Finck# definition is used. Otherwise one should specify the include paths that 124*c2c66affSColin Finck# are normally passed to the compiler using the -I flag. 125*c2c66affSColin Finck 126*c2c66affSColin FinckSTRIP_FROM_INC_PATH = 127*c2c66affSColin Finck 128*c2c66affSColin Finck# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 129*c2c66affSColin Finck# (but less readable) file names. This can be useful is your file systems 130*c2c66affSColin Finck# doesn't support long names like on DOS, Mac, or CD-ROM. 131*c2c66affSColin Finck 132*c2c66affSColin FinckSHORT_NAMES = NO 133*c2c66affSColin Finck 134*c2c66affSColin Finck# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 135*c2c66affSColin Finck# will interpret the first line (until the first dot) of a JavaDoc-style 136*c2c66affSColin Finck# comment as the brief description. If set to NO, the JavaDoc 137*c2c66affSColin Finck# comments will behave just like the Qt-style comments (thus requiring an 138*c2c66affSColin Finck# explicit @brief command for a brief description. 139*c2c66affSColin Finck 140*c2c66affSColin FinckJAVADOC_AUTOBRIEF = YES 141*c2c66affSColin Finck 142*c2c66affSColin Finck# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 143*c2c66affSColin Finck# treat a multi-line C++ special comment block (i.e. a block of //! or /// 144*c2c66affSColin Finck# comments) as a brief description. This used to be the default behaviour. 145*c2c66affSColin Finck# The new default is to treat a multi-line C++ comment block as a detailed 146*c2c66affSColin Finck# description. Set this tag to YES if you prefer the old behaviour instead. 147*c2c66affSColin Finck 148*c2c66affSColin FinckMULTILINE_CPP_IS_BRIEF = NO 149*c2c66affSColin Finck 150*c2c66affSColin Finck# If the DETAILS_AT_TOP tag is set to YES then Doxygen 151*c2c66affSColin Finck# will output the detailed description near the top, like JavaDoc. 152*c2c66affSColin Finck# If set to NO, the detailed description appears after the member 153*c2c66affSColin Finck# documentation. 154*c2c66affSColin Finck 155*c2c66affSColin FinckDETAILS_AT_TOP = NO 156*c2c66affSColin Finck 157*c2c66affSColin Finck# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 158*c2c66affSColin Finck# member inherits the documentation from any documented member that it 159*c2c66affSColin Finck# re-implements. 160*c2c66affSColin Finck 161*c2c66affSColin FinckINHERIT_DOCS = YES 162*c2c66affSColin Finck 163*c2c66affSColin Finck# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 164*c2c66affSColin Finck# tag is set to YES, then doxygen will reuse the documentation of the first 165*c2c66affSColin Finck# member in the group (if any) for the other members of the group. By default 166*c2c66affSColin Finck# all members of a group must be documented explicitly. 167*c2c66affSColin Finck 168*c2c66affSColin FinckDISTRIBUTE_GROUP_DOC = NO 169*c2c66affSColin Finck 170*c2c66affSColin Finck# The TAB_SIZE tag can be used to set the number of spaces in a tab. 171*c2c66affSColin Finck# Doxygen uses this value to replace tabs by spaces in code fragments. 172*c2c66affSColin Finck 173*c2c66affSColin FinckTAB_SIZE = 8 174*c2c66affSColin Finck 175*c2c66affSColin Finck# This tag can be used to specify a number of aliases that acts 176*c2c66affSColin Finck# as commands in the documentation. An alias has the form "name=value". 177*c2c66affSColin Finck# For example adding "sideeffect=\par Side Effects:\n" will allow you to 178*c2c66affSColin Finck# put the command \sideeffect (or @sideeffect) in the documentation, which 179*c2c66affSColin Finck# will result in a user-defined paragraph with heading "Side Effects:". 180*c2c66affSColin Finck# You can put \n's in the value part of an alias to insert newlines. 181*c2c66affSColin Finck 182*c2c66affSColin FinckALIASES = 183*c2c66affSColin Finck 184*c2c66affSColin Finck# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 185*c2c66affSColin Finck# only. Doxygen will then generate output that is more tailored for C. 186*c2c66affSColin Finck# For instance, some of the names that are used will be different. The list 187*c2c66affSColin Finck# of all members will be omitted, etc. 188*c2c66affSColin Finck 189*c2c66affSColin FinckOPTIMIZE_OUTPUT_FOR_C = NO 190*c2c66affSColin Finck 191*c2c66affSColin Finck# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources 192*c2c66affSColin Finck# only. Doxygen will then generate output that is more tailored for Java. 193*c2c66affSColin Finck# For instance, namespaces will be presented as packages, qualified scopes 194*c2c66affSColin Finck# will look different, etc. 195*c2c66affSColin Finck 196*c2c66affSColin FinckOPTIMIZE_OUTPUT_JAVA = NO 197*c2c66affSColin Finck 198*c2c66affSColin Finck# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 199*c2c66affSColin Finck# the same type (for instance a group of public functions) to be put as a 200*c2c66affSColin Finck# subgroup of that type (e.g. under the Public Functions section). Set it to 201*c2c66affSColin Finck# NO to prevent subgrouping. Alternatively, this can be done per class using 202*c2c66affSColin Finck# the \nosubgrouping command. 203*c2c66affSColin Finck 204*c2c66affSColin FinckSUBGROUPING = YES 205*c2c66affSColin Finck 206*c2c66affSColin Finck#--------------------------------------------------------------------------- 207*c2c66affSColin Finck# Build related configuration options 208*c2c66affSColin Finck#--------------------------------------------------------------------------- 209*c2c66affSColin Finck 210*c2c66affSColin Finck# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 211*c2c66affSColin Finck# documentation are documented, even if no documentation was available. 212*c2c66affSColin Finck# Private class members and static file members will be hidden unless 213*c2c66affSColin Finck# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 214*c2c66affSColin Finck 215*c2c66affSColin FinckEXTRACT_ALL = YES 216*c2c66affSColin Finck 217*c2c66affSColin Finck# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 218*c2c66affSColin Finck# will be included in the documentation. 219*c2c66affSColin Finck 220*c2c66affSColin FinckEXTRACT_PRIVATE = NO 221*c2c66affSColin Finck 222*c2c66affSColin Finck# If the EXTRACT_STATIC tag is set to YES all static members of a file 223*c2c66affSColin Finck# will be included in the documentation. 224*c2c66affSColin Finck 225*c2c66affSColin FinckEXTRACT_STATIC = NO 226*c2c66affSColin Finck 227*c2c66affSColin Finck# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 228*c2c66affSColin Finck# defined locally in source files will be included in the documentation. 229*c2c66affSColin Finck# If set to NO only classes defined in header files are included. 230*c2c66affSColin Finck 231*c2c66affSColin FinckEXTRACT_LOCAL_CLASSES = YES 232*c2c66affSColin Finck 233*c2c66affSColin Finck# This flag is only useful for Objective-C code. When set to YES local 234*c2c66affSColin Finck# methods, which are defined in the implementation section but not in 235*c2c66affSColin Finck# the interface are included in the documentation. 236*c2c66affSColin Finck# If set to NO (the default) only methods in the interface are included. 237*c2c66affSColin Finck 238*c2c66affSColin FinckEXTRACT_LOCAL_METHODS = NO 239*c2c66affSColin Finck 240*c2c66affSColin Finck# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 241*c2c66affSColin Finck# undocumented members of documented classes, files or namespaces. 242*c2c66affSColin Finck# If set to NO (the default) these members will be included in the 243*c2c66affSColin Finck# various overviews, but no documentation section is generated. 244*c2c66affSColin Finck# This option has no effect if EXTRACT_ALL is enabled. 245*c2c66affSColin Finck 246*c2c66affSColin FinckHIDE_UNDOC_MEMBERS = NO 247*c2c66affSColin Finck 248*c2c66affSColin Finck# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 249*c2c66affSColin Finck# undocumented classes that are normally visible in the class hierarchy. 250*c2c66affSColin Finck# If set to NO (the default) these classes will be included in the various 251*c2c66affSColin Finck# overviews. This option has no effect if EXTRACT_ALL is enabled. 252*c2c66affSColin Finck 253*c2c66affSColin FinckHIDE_UNDOC_CLASSES = NO 254*c2c66affSColin Finck 255*c2c66affSColin Finck# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 256*c2c66affSColin Finck# friend (class|struct|union) declarations. 257*c2c66affSColin Finck# If set to NO (the default) these declarations will be included in the 258*c2c66affSColin Finck# documentation. 259*c2c66affSColin Finck 260*c2c66affSColin FinckHIDE_FRIEND_COMPOUNDS = NO 261*c2c66affSColin Finck 262*c2c66affSColin Finck# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 263*c2c66affSColin Finck# documentation blocks found inside the body of a function. 264*c2c66affSColin Finck# If set to NO (the default) these blocks will be appended to the 265*c2c66affSColin Finck# function's detailed documentation block. 266*c2c66affSColin Finck 267*c2c66affSColin FinckHIDE_IN_BODY_DOCS = NO 268*c2c66affSColin Finck 269*c2c66affSColin Finck# The INTERNAL_DOCS tag determines if documentation 270*c2c66affSColin Finck# that is typed after a \internal command is included. If the tag is set 271*c2c66affSColin Finck# to NO (the default) then the documentation will be excluded. 272*c2c66affSColin Finck# Set it to YES to include the internal documentation. 273*c2c66affSColin Finck 274*c2c66affSColin FinckINTERNAL_DOCS = NO 275*c2c66affSColin Finck 276*c2c66affSColin Finck# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 277*c2c66affSColin Finck# file names in lower-case letters. If set to YES upper-case letters are also 278*c2c66affSColin Finck# allowed. This is useful if you have classes or files whose names only differ 279*c2c66affSColin Finck# in case and if your file system supports case sensitive file names. Windows 280*c2c66affSColin Finck# and Mac users are advised to set this option to NO. 281*c2c66affSColin Finck 282*c2c66affSColin FinckCASE_SENSE_NAMES = YES 283*c2c66affSColin Finck 284*c2c66affSColin Finck# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 285*c2c66affSColin Finck# will show members with their full class and namespace scopes in the 286*c2c66affSColin Finck# documentation. If set to YES the scope will be hidden. 287*c2c66affSColin Finck 288*c2c66affSColin FinckHIDE_SCOPE_NAMES = NO 289*c2c66affSColin Finck 290*c2c66affSColin Finck# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 291*c2c66affSColin Finck# will put a list of the files that are included by a file in the documentation 292*c2c66affSColin Finck# of that file. 293*c2c66affSColin Finck 294*c2c66affSColin FinckSHOW_INCLUDE_FILES = YES 295*c2c66affSColin Finck 296*c2c66affSColin Finck# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 297*c2c66affSColin Finck# is inserted in the documentation for inline members. 298*c2c66affSColin Finck 299*c2c66affSColin FinckINLINE_INFO = YES 300*c2c66affSColin Finck 301*c2c66affSColin Finck# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 302*c2c66affSColin Finck# will sort the (detailed) documentation of file and class members 303*c2c66affSColin Finck# alphabetically by member name. If set to NO the members will appear in 304*c2c66affSColin Finck# declaration order. 305*c2c66affSColin Finck 306*c2c66affSColin FinckSORT_MEMBER_DOCS = YES 307*c2c66affSColin Finck 308*c2c66affSColin Finck# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 309*c2c66affSColin Finck# brief documentation of file, namespace and class members alphabetically 310*c2c66affSColin Finck# by member name. If set to NO (the default) the members will appear in 311*c2c66affSColin Finck# declaration order. 312*c2c66affSColin Finck 313*c2c66affSColin FinckSORT_BRIEF_DOCS = NO 314*c2c66affSColin Finck 315*c2c66affSColin Finck# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 316*c2c66affSColin Finck# sorted by fully-qualified names, including namespaces. If set to 317*c2c66affSColin Finck# NO (the default), the class list will be sorted only by class name, 318*c2c66affSColin Finck# not including the namespace part. 319*c2c66affSColin Finck# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 320*c2c66affSColin Finck# Note: This option applies only to the class list, not to the 321*c2c66affSColin Finck# alphabetical list. 322*c2c66affSColin Finck 323*c2c66affSColin FinckSORT_BY_SCOPE_NAME = NO 324*c2c66affSColin Finck 325*c2c66affSColin Finck# The GENERATE_TODOLIST tag can be used to enable (YES) or 326*c2c66affSColin Finck# disable (NO) the todo list. This list is created by putting \todo 327*c2c66affSColin Finck# commands in the documentation. 328*c2c66affSColin Finck 329*c2c66affSColin FinckGENERATE_TODOLIST = YES 330*c2c66affSColin Finck 331*c2c66affSColin Finck# The GENERATE_TESTLIST tag can be used to enable (YES) or 332*c2c66affSColin Finck# disable (NO) the test list. This list is created by putting \test 333*c2c66affSColin Finck# commands in the documentation. 334*c2c66affSColin Finck 335*c2c66affSColin FinckGENERATE_TESTLIST = YES 336*c2c66affSColin Finck 337*c2c66affSColin Finck# The GENERATE_BUGLIST tag can be used to enable (YES) or 338*c2c66affSColin Finck# disable (NO) the bug list. This list is created by putting \bug 339*c2c66affSColin Finck# commands in the documentation. 340*c2c66affSColin Finck 341*c2c66affSColin FinckGENERATE_BUGLIST = YES 342*c2c66affSColin Finck 343*c2c66affSColin Finck# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 344*c2c66affSColin Finck# disable (NO) the deprecated list. This list is created by putting 345*c2c66affSColin Finck# \deprecated commands in the documentation. 346*c2c66affSColin Finck 347*c2c66affSColin FinckGENERATE_DEPRECATEDLIST= YES 348*c2c66affSColin Finck 349*c2c66affSColin Finck# The ENABLED_SECTIONS tag can be used to enable conditional 350*c2c66affSColin Finck# documentation sections, marked by \if sectionname ... \endif. 351*c2c66affSColin Finck 352*c2c66affSColin FinckENABLED_SECTIONS = 353*c2c66affSColin Finck 354*c2c66affSColin Finck# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 355*c2c66affSColin Finck# the initial value of a variable or define consists of for it to appear in 356*c2c66affSColin Finck# the documentation. If the initializer consists of more lines than specified 357*c2c66affSColin Finck# here it will be hidden. Use a value of 0 to hide initializers completely. 358*c2c66affSColin Finck# The appearance of the initializer of individual variables and defines in the 359*c2c66affSColin Finck# documentation can be controlled using \showinitializer or \hideinitializer 360*c2c66affSColin Finck# command in the documentation regardless of this setting. 361*c2c66affSColin Finck 362*c2c66affSColin FinckMAX_INITIALIZER_LINES = 30 363*c2c66affSColin Finck 364*c2c66affSColin Finck# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 365*c2c66affSColin Finck# at the bottom of the documentation of classes and structs. If set to YES the 366*c2c66affSColin Finck# list will mention the files that were used to generate the documentation. 367*c2c66affSColin Finck 368*c2c66affSColin FinckSHOW_USED_FILES = YES 369*c2c66affSColin Finck 370*c2c66affSColin Finck# If the sources in your project are distributed over multiple directories 371*c2c66affSColin Finck# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 372*c2c66affSColin Finck# in the documentation. 373*c2c66affSColin Finck 374*c2c66affSColin FinckSHOW_DIRECTORIES = YES 375*c2c66affSColin Finck 376*c2c66affSColin Finck#--------------------------------------------------------------------------- 377*c2c66affSColin Finck# configuration options related to warning and progress messages 378*c2c66affSColin Finck#--------------------------------------------------------------------------- 379*c2c66affSColin Finck 380*c2c66affSColin Finck# The QUIET tag can be used to turn on/off the messages that are generated 381*c2c66affSColin Finck# by doxygen. Possible values are YES and NO. If left blank NO is used. 382*c2c66affSColin Finck 383*c2c66affSColin FinckQUIET = YES 384*c2c66affSColin Finck 385*c2c66affSColin Finck# The WARNINGS tag can be used to turn on/off the warning messages that are 386*c2c66affSColin Finck# generated by doxygen. Possible values are YES and NO. If left blank 387*c2c66affSColin Finck# NO is used. 388*c2c66affSColin Finck 389*c2c66affSColin FinckWARNINGS = NO 390*c2c66affSColin Finck 391*c2c66affSColin Finck# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 392*c2c66affSColin Finck# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 393*c2c66affSColin Finck# automatically be disabled. 394*c2c66affSColin Finck 395*c2c66affSColin FinckWARN_IF_UNDOCUMENTED = NO 396*c2c66affSColin Finck 397*c2c66affSColin Finck# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 398*c2c66affSColin Finck# potential errors in the documentation, such as not documenting some 399*c2c66affSColin Finck# parameters in a documented function, or documenting parameters that 400*c2c66affSColin Finck# don't exist or using markup commands wrongly. 401*c2c66affSColin Finck 402*c2c66affSColin FinckWARN_IF_DOC_ERROR = YES 403*c2c66affSColin Finck 404*c2c66affSColin Finck# The WARN_FORMAT tag determines the format of the warning messages that 405*c2c66affSColin Finck# doxygen can produce. The string should contain the $file, $line, and $text 406*c2c66affSColin Finck# tags, which will be replaced by the file and line number from which the 407*c2c66affSColin Finck# warning originated and the warning text. 408*c2c66affSColin Finck 409*c2c66affSColin FinckWARN_FORMAT = "$file:$line: $text" 410*c2c66affSColin Finck 411*c2c66affSColin Finck# The WARN_LOGFILE tag can be used to specify a file to which warning 412*c2c66affSColin Finck# and error messages should be written. If left blank the output is written 413*c2c66affSColin Finck# to stderr. 414*c2c66affSColin Finck 415*c2c66affSColin FinckWARN_LOGFILE = 416*c2c66affSColin Finck 417*c2c66affSColin Finck#--------------------------------------------------------------------------- 418*c2c66affSColin Finck# configuration options related to the input files 419*c2c66affSColin Finck#--------------------------------------------------------------------------- 420*c2c66affSColin Finck 421*c2c66affSColin Finck# The INPUT tag can be used to specify the files and/or directories that contain 422*c2c66affSColin Finck# documented source files. You may enter file names like "myfile.cpp" or 423*c2c66affSColin Finck# directories like "/usr/src/myproject". Separate the files or directories 424*c2c66affSColin Finck# with spaces. 425*c2c66affSColin Finck 426*c2c66affSColin FinckINPUT = . \ 427*c2c66affSColin Finck desktop \ 428*c2c66affSColin Finck dialogs \ 429*c2c66affSColin Finck shell \ 430*c2c66affSColin Finck taskbar \ 431*c2c66affSColin Finck utility 432*c2c66affSColin Finck 433*c2c66affSColin Finck# If the value of the INPUT tag contains directories, you can use the 434*c2c66affSColin Finck# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 435*c2c66affSColin Finck# and *.h) to filter out the source-files in the directories. If left 436*c2c66affSColin Finck# blank the following patterns are tested: 437*c2c66affSColin Finck# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp 438*c2c66affSColin Finck# *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm 439*c2c66affSColin Finck 440*c2c66affSColin FinckFILE_PATTERNS = *.cpp \ 441*c2c66affSColin Finck *.c \ 442*c2c66affSColin Finck *.hpp \ 443*c2c66affSColin Finck *.h 444*c2c66affSColin Finck 445*c2c66affSColin Finck# The RECURSIVE tag can be used to turn specify whether or not subdirectories 446*c2c66affSColin Finck# should be searched for input files as well. Possible values are YES and NO. 447*c2c66affSColin Finck# If left blank NO is used. 448*c2c66affSColin Finck 449*c2c66affSColin FinckRECURSIVE = NO 450*c2c66affSColin Finck 451*c2c66affSColin Finck# The EXCLUDE tag can be used to specify files and/or directories that should 452*c2c66affSColin Finck# excluded from the INPUT source files. This way you can easily exclude a 453*c2c66affSColin Finck# subdirectory from a directory tree whose root is specified with the INPUT tag. 454*c2c66affSColin Finck 455*c2c66affSColin FinckEXCLUDE = 456*c2c66affSColin Finck 457*c2c66affSColin Finck# The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories 458*c2c66affSColin Finck# that are symbolic links (a Unix filesystem feature) are excluded from the input. 459*c2c66affSColin Finck 460*c2c66affSColin FinckEXCLUDE_SYMLINKS = NO 461*c2c66affSColin Finck 462*c2c66affSColin Finck# If the value of the INPUT tag contains directories, you can use the 463*c2c66affSColin Finck# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 464*c2c66affSColin Finck# certain files from those directories. 465*c2c66affSColin Finck 466*c2c66affSColin FinckEXCLUDE_PATTERNS = 467*c2c66affSColin Finck 468*c2c66affSColin Finck# The EXAMPLE_PATH tag can be used to specify one or more files or 469*c2c66affSColin Finck# directories that contain example code fragments that are included (see 470*c2c66affSColin Finck# the \include command). 471*c2c66affSColin Finck 472*c2c66affSColin FinckEXAMPLE_PATH = 473*c2c66affSColin Finck 474*c2c66affSColin Finck# If the value of the EXAMPLE_PATH tag contains directories, you can use the 475*c2c66affSColin Finck# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 476*c2c66affSColin Finck# and *.h) to filter out the source-files in the directories. If left 477*c2c66affSColin Finck# blank all files are included. 478*c2c66affSColin Finck 479*c2c66affSColin FinckEXAMPLE_PATTERNS = 480*c2c66affSColin Finck 481*c2c66affSColin Finck# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 482*c2c66affSColin Finck# searched for input files to be used with the \include or \dontinclude 483*c2c66affSColin Finck# commands irrespective of the value of the RECURSIVE tag. 484*c2c66affSColin Finck# Possible values are YES and NO. If left blank NO is used. 485*c2c66affSColin Finck 486*c2c66affSColin FinckEXAMPLE_RECURSIVE = NO 487*c2c66affSColin Finck 488*c2c66affSColin Finck# The IMAGE_PATH tag can be used to specify one or more files or 489*c2c66affSColin Finck# directories that contain image that are included in the documentation (see 490*c2c66affSColin Finck# the \image command). 491*c2c66affSColin Finck 492*c2c66affSColin FinckIMAGE_PATH = 493*c2c66affSColin Finck 494*c2c66affSColin Finck# The INPUT_FILTER tag can be used to specify a program that doxygen should 495*c2c66affSColin Finck# invoke to filter for each input file. Doxygen will invoke the filter program 496*c2c66affSColin Finck# by executing (via popen()) the command <filter> <input-file>, where <filter> 497*c2c66affSColin Finck# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 498*c2c66affSColin Finck# input file. Doxygen will then use the output that the filter program writes 499*c2c66affSColin Finck# to standard output. If FILTER_PATTERNS is specified, this tag will be 500*c2c66affSColin Finck# ignored. 501*c2c66affSColin Finck 502*c2c66affSColin FinckINPUT_FILTER = 503*c2c66affSColin Finck 504*c2c66affSColin Finck# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 505*c2c66affSColin Finck# basis. Doxygen will compare the file name with each pattern and apply the 506*c2c66affSColin Finck# filter if there is a match. The filters are a list of the form: 507*c2c66affSColin Finck# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 508*c2c66affSColin Finck# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 509*c2c66affSColin Finck# is applied to all files. 510*c2c66affSColin Finck 511*c2c66affSColin FinckFILTER_PATTERNS = 512*c2c66affSColin Finck 513*c2c66affSColin Finck# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 514*c2c66affSColin Finck# INPUT_FILTER) will be used to filter the input files when producing source 515*c2c66affSColin Finck# files to browse (i.e. when SOURCE_BROWSER is set to YES). 516*c2c66affSColin Finck 517*c2c66affSColin FinckFILTER_SOURCE_FILES = NO 518*c2c66affSColin Finck 519*c2c66affSColin Finck#--------------------------------------------------------------------------- 520*c2c66affSColin Finck# configuration options related to source browsing 521*c2c66affSColin Finck#--------------------------------------------------------------------------- 522*c2c66affSColin Finck 523*c2c66affSColin Finck# If the SOURCE_BROWSER tag is set to YES then a list of source files will 524*c2c66affSColin Finck# be generated. Documented entities will be cross-referenced with these sources. 525*c2c66affSColin Finck# Note: To get rid of all source code in the generated output, make sure also 526*c2c66affSColin Finck# VERBATIM_HEADERS is set to NO. 527*c2c66affSColin Finck 528*c2c66affSColin FinckSOURCE_BROWSER = YES 529*c2c66affSColin Finck 530*c2c66affSColin Finck# Setting the INLINE_SOURCES tag to YES will include the body 531*c2c66affSColin Finck# of functions and classes directly in the documentation. 532*c2c66affSColin Finck 533*c2c66affSColin FinckINLINE_SOURCES = YES 534*c2c66affSColin Finck 535*c2c66affSColin Finck# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 536*c2c66affSColin Finck# doxygen to hide any special comment blocks from generated source code 537*c2c66affSColin Finck# fragments. Normal C and C++ comments will always remain visible. 538*c2c66affSColin Finck 539*c2c66affSColin FinckSTRIP_CODE_COMMENTS = YES 540*c2c66affSColin Finck 541*c2c66affSColin Finck# If the REFERENCED_BY_RELATION tag is set to YES (the default) 542*c2c66affSColin Finck# then for each documented function all documented 543*c2c66affSColin Finck# functions referencing it will be listed. 544*c2c66affSColin Finck 545*c2c66affSColin FinckREFERENCED_BY_RELATION = YES 546*c2c66affSColin Finck 547*c2c66affSColin Finck# If the REFERENCES_RELATION tag is set to YES (the default) 548*c2c66affSColin Finck# then for each documented function all documented entities 549*c2c66affSColin Finck# called/used by that function will be listed. 550*c2c66affSColin Finck 551*c2c66affSColin FinckREFERENCES_RELATION = YES 552*c2c66affSColin Finck 553*c2c66affSColin Finck# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 554*c2c66affSColin Finck# will generate a verbatim copy of the header file for each class for 555*c2c66affSColin Finck# which an include is specified. Set to NO to disable this. 556*c2c66affSColin Finck 557*c2c66affSColin FinckVERBATIM_HEADERS = YES 558*c2c66affSColin Finck 559*c2c66affSColin Finck#--------------------------------------------------------------------------- 560*c2c66affSColin Finck# configuration options related to the alphabetical class index 561*c2c66affSColin Finck#--------------------------------------------------------------------------- 562*c2c66affSColin Finck 563*c2c66affSColin Finck# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 564*c2c66affSColin Finck# of all compounds will be generated. Enable this if the project 565*c2c66affSColin Finck# contains a lot of classes, structs, unions or interfaces. 566*c2c66affSColin Finck 567*c2c66affSColin FinckALPHABETICAL_INDEX = YES 568*c2c66affSColin Finck 569*c2c66affSColin Finck# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 570*c2c66affSColin Finck# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 571*c2c66affSColin Finck# in which this list will be split (can be a number in the range [1..20]) 572*c2c66affSColin Finck 573*c2c66affSColin FinckCOLS_IN_ALPHA_INDEX = 5 574*c2c66affSColin Finck 575*c2c66affSColin Finck# In case all classes in a project start with a common prefix, all 576*c2c66affSColin Finck# classes will be put under the same header in the alphabetical index. 577*c2c66affSColin Finck# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 578*c2c66affSColin Finck# should be ignored while generating the index headers. 579*c2c66affSColin Finck 580*c2c66affSColin FinckIGNORE_PREFIX = 581*c2c66affSColin Finck 582*c2c66affSColin Finck#--------------------------------------------------------------------------- 583*c2c66affSColin Finck# configuration options related to the HTML output 584*c2c66affSColin Finck#--------------------------------------------------------------------------- 585*c2c66affSColin Finck 586*c2c66affSColin Finck# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 587*c2c66affSColin Finck# generate HTML output. 588*c2c66affSColin Finck 589*c2c66affSColin FinckGENERATE_HTML = YES 590*c2c66affSColin Finck 591*c2c66affSColin Finck# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 592*c2c66affSColin Finck# If a relative path is entered the value of OUTPUT_DIRECTORY will be 593*c2c66affSColin Finck# put in front of it. If left blank `html' will be used as the default path. 594*c2c66affSColin Finck 595*c2c66affSColin FinckHTML_OUTPUT = html 596*c2c66affSColin Finck 597*c2c66affSColin Finck# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 598*c2c66affSColin Finck# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 599*c2c66affSColin Finck# doxygen will generate files with .html extension. 600*c2c66affSColin Finck 601*c2c66affSColin FinckHTML_FILE_EXTENSION = .html 602*c2c66affSColin Finck 603*c2c66affSColin Finck# The HTML_HEADER tag can be used to specify a personal HTML header for 604*c2c66affSColin Finck# each generated HTML page. If it is left blank doxygen will generate a 605*c2c66affSColin Finck# standard header. 606*c2c66affSColin Finck 607*c2c66affSColin FinckHTML_HEADER = 608*c2c66affSColin Finck 609*c2c66affSColin Finck# The HTML_FOOTER tag can be used to specify a personal HTML footer for 610*c2c66affSColin Finck# each generated HTML page. If it is left blank doxygen will generate a 611*c2c66affSColin Finck# standard footer. 612*c2c66affSColin Finck 613*c2c66affSColin FinckHTML_FOOTER = doxy-footer.html 614*c2c66affSColin Finck 615*c2c66affSColin Finck# The HTML_STYLESHEET tag can be used to specify a user-defined cascading 616*c2c66affSColin Finck# style sheet that is used by each HTML page. It can be used to 617*c2c66affSColin Finck# fine-tune the look of the HTML output. If the tag is left blank doxygen 618*c2c66affSColin Finck# will generate a default style sheet. Note that doxygen will try to copy 619*c2c66affSColin Finck# the style sheet file to the HTML output directory, so don't put your own 620*c2c66affSColin Finck# stylesheet in the HTML output directory as well, or it will be erased! 621*c2c66affSColin Finck 622*c2c66affSColin FinckHTML_STYLESHEET = 623*c2c66affSColin Finck 624*c2c66affSColin Finck# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 625*c2c66affSColin Finck# files or namespaces will be aligned in HTML using tables. If set to 626*c2c66affSColin Finck# NO a bullet list will be used. 627*c2c66affSColin Finck 628*c2c66affSColin FinckHTML_ALIGN_MEMBERS = YES 629*c2c66affSColin Finck 630*c2c66affSColin Finck# If the GENERATE_HTMLHELP tag is set to YES, additional index files 631*c2c66affSColin Finck# will be generated that can be used as input for tools like the 632*c2c66affSColin Finck# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 633*c2c66affSColin Finck# of the generated HTML documentation. 634*c2c66affSColin Finck 635*c2c66affSColin FinckGENERATE_HTMLHELP = YES 636*c2c66affSColin Finck 637*c2c66affSColin Finck# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 638*c2c66affSColin Finck# be used to specify the file name of the resulting .chm file. You 639*c2c66affSColin Finck# can add a path in front of the file if the result should not be 640*c2c66affSColin Finck# written to the html output directory. 641*c2c66affSColin Finck 642*c2c66affSColin FinckCHM_FILE = 643*c2c66affSColin Finck 644*c2c66affSColin Finck# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 645*c2c66affSColin Finck# be used to specify the location (absolute path including file name) of 646*c2c66affSColin Finck# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 647*c2c66affSColin Finck# the HTML help compiler on the generated index.hhp. 648*c2c66affSColin Finck 649*c2c66affSColin FinckHHC_LOCATION = 650*c2c66affSColin Finck 651*c2c66affSColin Finck# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 652*c2c66affSColin Finck# controls if a separate .chi index file is generated (YES) or that 653*c2c66affSColin Finck# it should be included in the master .chm file (NO). 654*c2c66affSColin Finck 655*c2c66affSColin FinckGENERATE_CHI = NO 656*c2c66affSColin Finck 657*c2c66affSColin Finck# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 658*c2c66affSColin Finck# controls whether a binary table of contents is generated (YES) or a 659*c2c66affSColin Finck# normal table of contents (NO) in the .chm file. 660*c2c66affSColin Finck 661*c2c66affSColin FinckBINARY_TOC = NO 662*c2c66affSColin Finck 663*c2c66affSColin Finck# The TOC_EXPAND flag can be set to YES to add extra items for group members 664*c2c66affSColin Finck# to the contents of the HTML help documentation and to the tree view. 665*c2c66affSColin Finck 666*c2c66affSColin FinckTOC_EXPAND = NO 667*c2c66affSColin Finck 668*c2c66affSColin Finck# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 669*c2c66affSColin Finck# top of each HTML page. The value NO (the default) enables the index and 670*c2c66affSColin Finck# the value YES disables it. 671*c2c66affSColin Finck 672*c2c66affSColin FinckDISABLE_INDEX = NO 673*c2c66affSColin Finck 674*c2c66affSColin Finck# This tag can be used to set the number of enum values (range [1..20]) 675*c2c66affSColin Finck# that doxygen will group on one line in the generated HTML documentation. 676*c2c66affSColin Finck 677*c2c66affSColin FinckENUM_VALUES_PER_LINE = 4 678*c2c66affSColin Finck 679*c2c66affSColin Finck# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be 680*c2c66affSColin Finck# generated containing a tree-like index structure (just like the one that 681*c2c66affSColin Finck# is generated for HTML Help). For this to work a browser that supports 682*c2c66affSColin Finck# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 683*c2c66affSColin Finck# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 684*c2c66affSColin Finck# probably better off using the HTML help feature. 685*c2c66affSColin Finck 686*c2c66affSColin FinckGENERATE_TREEVIEW = YES 687*c2c66affSColin Finck 688*c2c66affSColin Finck# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 689*c2c66affSColin Finck# used to set the initial width (in pixels) of the frame in which the tree 690*c2c66affSColin Finck# is shown. 691*c2c66affSColin Finck 692*c2c66affSColin FinckTREEVIEW_WIDTH = 240 693*c2c66affSColin Finck 694*c2c66affSColin Finck#--------------------------------------------------------------------------- 695*c2c66affSColin Finck# configuration options related to the LaTeX output 696*c2c66affSColin Finck#--------------------------------------------------------------------------- 697*c2c66affSColin Finck 698*c2c66affSColin Finck# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 699*c2c66affSColin Finck# generate Latex output. 700*c2c66affSColin Finck 701*c2c66affSColin FinckGENERATE_LATEX = NO 702*c2c66affSColin Finck 703*c2c66affSColin Finck# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 704*c2c66affSColin Finck# If a relative path is entered the value of OUTPUT_DIRECTORY will be 705*c2c66affSColin Finck# put in front of it. If left blank `latex' will be used as the default path. 706*c2c66affSColin Finck 707*c2c66affSColin FinckLATEX_OUTPUT = latex 708*c2c66affSColin Finck 709*c2c66affSColin Finck# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 710*c2c66affSColin Finck# invoked. If left blank `latex' will be used as the default command name. 711*c2c66affSColin Finck 712*c2c66affSColin FinckLATEX_CMD_NAME = latex 713*c2c66affSColin Finck 714*c2c66affSColin Finck# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 715*c2c66affSColin Finck# generate index for LaTeX. If left blank `makeindex' will be used as the 716*c2c66affSColin Finck# default command name. 717*c2c66affSColin Finck 718*c2c66affSColin FinckMAKEINDEX_CMD_NAME = makeindex 719*c2c66affSColin Finck 720*c2c66affSColin Finck# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 721*c2c66affSColin Finck# LaTeX documents. This may be useful for small projects and may help to 722*c2c66affSColin Finck# save some trees in general. 723*c2c66affSColin Finck 724*c2c66affSColin FinckCOMPACT_LATEX = NO 725*c2c66affSColin Finck 726*c2c66affSColin Finck# The PAPER_TYPE tag can be used to set the paper type that is used 727*c2c66affSColin Finck# by the printer. Possible values are: a4, a4wide, letter, legal and 728*c2c66affSColin Finck# executive. If left blank a4wide will be used. 729*c2c66affSColin Finck 730*c2c66affSColin FinckPAPER_TYPE = a4wide 731*c2c66affSColin Finck 732*c2c66affSColin Finck# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 733*c2c66affSColin Finck# packages that should be included in the LaTeX output. 734*c2c66affSColin Finck 735*c2c66affSColin FinckEXTRA_PACKAGES = 736*c2c66affSColin Finck 737*c2c66affSColin Finck# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 738*c2c66affSColin Finck# the generated latex document. The header should contain everything until 739*c2c66affSColin Finck# the first chapter. If it is left blank doxygen will generate a 740*c2c66affSColin Finck# standard header. Notice: only use this tag if you know what you are doing! 741*c2c66affSColin Finck 742*c2c66affSColin FinckLATEX_HEADER = 743*c2c66affSColin Finck 744*c2c66affSColin Finck# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 745*c2c66affSColin Finck# is prepared for conversion to pdf (using ps2pdf). The pdf file will 746*c2c66affSColin Finck# contain links (just like the HTML output) instead of page references 747*c2c66affSColin Finck# This makes the output suitable for online browsing using a pdf viewer. 748*c2c66affSColin Finck 749*c2c66affSColin FinckPDF_HYPERLINKS = NO 750*c2c66affSColin Finck 751*c2c66affSColin Finck# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 752*c2c66affSColin Finck# plain latex in the generated Makefile. Set this option to YES to get a 753*c2c66affSColin Finck# higher quality PDF documentation. 754*c2c66affSColin Finck 755*c2c66affSColin FinckUSE_PDFLATEX = NO 756*c2c66affSColin Finck 757*c2c66affSColin Finck# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 758*c2c66affSColin Finck# command to the generated LaTeX files. This will instruct LaTeX to keep 759*c2c66affSColin Finck# running if errors occur, instead of asking the user for help. 760*c2c66affSColin Finck# This option is also used when generating formulas in HTML. 761*c2c66affSColin Finck 762*c2c66affSColin FinckLATEX_BATCHMODE = NO 763*c2c66affSColin Finck 764*c2c66affSColin Finck# If LATEX_HIDE_INDICES is set to YES then doxygen will not 765*c2c66affSColin Finck# include the index chapters (such as File Index, Compound Index, etc.) 766*c2c66affSColin Finck# in the output. 767*c2c66affSColin Finck 768*c2c66affSColin FinckLATEX_HIDE_INDICES = NO 769*c2c66affSColin Finck 770*c2c66affSColin Finck#--------------------------------------------------------------------------- 771*c2c66affSColin Finck# configuration options related to the RTF output 772*c2c66affSColin Finck#--------------------------------------------------------------------------- 773*c2c66affSColin Finck 774*c2c66affSColin Finck# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 775*c2c66affSColin Finck# The RTF output is optimized for Word 97 and may not look very pretty with 776*c2c66affSColin Finck# other RTF readers or editors. 777*c2c66affSColin Finck 778*c2c66affSColin FinckGENERATE_RTF = NO 779*c2c66affSColin Finck 780*c2c66affSColin Finck# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 781*c2c66affSColin Finck# If a relative path is entered the value of OUTPUT_DIRECTORY will be 782*c2c66affSColin Finck# put in front of it. If left blank `rtf' will be used as the default path. 783*c2c66affSColin Finck 784*c2c66affSColin FinckRTF_OUTPUT = rtf 785*c2c66affSColin Finck 786*c2c66affSColin Finck# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 787*c2c66affSColin Finck# RTF documents. This may be useful for small projects and may help to 788*c2c66affSColin Finck# save some trees in general. 789*c2c66affSColin Finck 790*c2c66affSColin FinckCOMPACT_RTF = YES 791*c2c66affSColin Finck 792*c2c66affSColin Finck# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 793*c2c66affSColin Finck# will contain hyperlink fields. The RTF file will 794*c2c66affSColin Finck# contain links (just like the HTML output) instead of page references. 795*c2c66affSColin Finck# This makes the output suitable for online browsing using WORD or other 796*c2c66affSColin Finck# programs which support those fields. 797*c2c66affSColin Finck# Note: wordpad (write) and others do not support links. 798*c2c66affSColin Finck 799*c2c66affSColin FinckRTF_HYPERLINKS = YES 800*c2c66affSColin Finck 801*c2c66affSColin Finck# Load stylesheet definitions from file. Syntax is similar to doxygen's 802*c2c66affSColin Finck# config file, i.e. a series of assignments. You only have to provide 803*c2c66affSColin Finck# replacements, missing definitions are set to their default value. 804*c2c66affSColin Finck 805*c2c66affSColin FinckRTF_STYLESHEET_FILE = 806*c2c66affSColin Finck 807*c2c66affSColin Finck# Set optional variables used in the generation of an rtf document. 808*c2c66affSColin Finck# Syntax is similar to doxygen's config file. 809*c2c66affSColin Finck 810*c2c66affSColin FinckRTF_EXTENSIONS_FILE = 811*c2c66affSColin Finck 812*c2c66affSColin Finck#--------------------------------------------------------------------------- 813*c2c66affSColin Finck# configuration options related to the man page output 814*c2c66affSColin Finck#--------------------------------------------------------------------------- 815*c2c66affSColin Finck 816*c2c66affSColin Finck# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 817*c2c66affSColin Finck# generate man pages 818*c2c66affSColin Finck 819*c2c66affSColin FinckGENERATE_MAN = NO 820*c2c66affSColin Finck 821*c2c66affSColin Finck# The MAN_OUTPUT tag is used to specify where the man pages will be put. 822*c2c66affSColin Finck# If a relative path is entered the value of OUTPUT_DIRECTORY will be 823*c2c66affSColin Finck# put in front of it. If left blank `man' will be used as the default path. 824*c2c66affSColin Finck 825*c2c66affSColin FinckMAN_OUTPUT = man 826*c2c66affSColin Finck 827*c2c66affSColin Finck# The MAN_EXTENSION tag determines the extension that is added to 828*c2c66affSColin Finck# the generated man pages (default is the subroutine's section .3) 829*c2c66affSColin Finck 830*c2c66affSColin FinckMAN_EXTENSION = .3 831*c2c66affSColin Finck 832*c2c66affSColin Finck# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 833*c2c66affSColin Finck# then it will generate one additional man file for each entity 834*c2c66affSColin Finck# documented in the real man page(s). These additional files 835*c2c66affSColin Finck# only source the real man page, but without them the man command 836*c2c66affSColin Finck# would be unable to find the correct page. The default is NO. 837*c2c66affSColin Finck 838*c2c66affSColin FinckMAN_LINKS = NO 839*c2c66affSColin Finck 840*c2c66affSColin Finck#--------------------------------------------------------------------------- 841*c2c66affSColin Finck# configuration options related to the XML output 842*c2c66affSColin Finck#--------------------------------------------------------------------------- 843*c2c66affSColin Finck 844*c2c66affSColin Finck# If the GENERATE_XML tag is set to YES Doxygen will 845*c2c66affSColin Finck# generate an XML file that captures the structure of 846*c2c66affSColin Finck# the code including all documentation. 847*c2c66affSColin Finck 848*c2c66affSColin FinckGENERATE_XML = NO 849*c2c66affSColin Finck 850*c2c66affSColin Finck# The XML_OUTPUT tag is used to specify where the XML pages will be put. 851*c2c66affSColin Finck# If a relative path is entered the value of OUTPUT_DIRECTORY will be 852*c2c66affSColin Finck# put in front of it. If left blank `xml' will be used as the default path. 853*c2c66affSColin Finck 854*c2c66affSColin FinckXML_OUTPUT = xml 855*c2c66affSColin Finck 856*c2c66affSColin Finck# The XML_SCHEMA tag can be used to specify an XML schema, 857*c2c66affSColin Finck# which can be used by a validating XML parser to check the 858*c2c66affSColin Finck# syntax of the XML files. 859*c2c66affSColin Finck 860*c2c66affSColin FinckXML_SCHEMA = 861*c2c66affSColin Finck 862*c2c66affSColin Finck# The XML_DTD tag can be used to specify an XML DTD, 863*c2c66affSColin Finck# which can be used by a validating XML parser to check the 864*c2c66affSColin Finck# syntax of the XML files. 865*c2c66affSColin Finck 866*c2c66affSColin FinckXML_DTD = 867*c2c66affSColin Finck 868*c2c66affSColin Finck# If the XML_PROGRAMLISTING tag is set to YES Doxygen will 869*c2c66affSColin Finck# dump the program listings (including syntax highlighting 870*c2c66affSColin Finck# and cross-referencing information) to the XML output. Note that 871*c2c66affSColin Finck# enabling this will significantly increase the size of the XML output. 872*c2c66affSColin Finck 873*c2c66affSColin FinckXML_PROGRAMLISTING = YES 874*c2c66affSColin Finck 875*c2c66affSColin Finck#--------------------------------------------------------------------------- 876*c2c66affSColin Finck# configuration options for the AutoGen Definitions output 877*c2c66affSColin Finck#--------------------------------------------------------------------------- 878*c2c66affSColin Finck 879*c2c66affSColin Finck# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 880*c2c66affSColin Finck# generate an AutoGen Definitions (see autogen.sf.net) file 881*c2c66affSColin Finck# that captures the structure of the code including all 882*c2c66affSColin Finck# documentation. Note that this feature is still experimental 883*c2c66affSColin Finck# and incomplete at the moment. 884*c2c66affSColin Finck 885*c2c66affSColin FinckGENERATE_AUTOGEN_DEF = NO 886*c2c66affSColin Finck 887*c2c66affSColin Finck#--------------------------------------------------------------------------- 888*c2c66affSColin Finck# configuration options related to the Perl module output 889*c2c66affSColin Finck#--------------------------------------------------------------------------- 890*c2c66affSColin Finck 891*c2c66affSColin Finck# If the GENERATE_PERLMOD tag is set to YES Doxygen will 892*c2c66affSColin Finck# generate a Perl module file that captures the structure of 893*c2c66affSColin Finck# the code including all documentation. Note that this 894*c2c66affSColin Finck# feature is still experimental and incomplete at the 895*c2c66affSColin Finck# moment. 896*c2c66affSColin Finck 897*c2c66affSColin FinckGENERATE_PERLMOD = NO 898*c2c66affSColin Finck 899*c2c66affSColin Finck# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 900*c2c66affSColin Finck# the necessary Makefile rules, Perl scripts and LaTeX code to be able 901*c2c66affSColin Finck# to generate PDF and DVI output from the Perl module output. 902*c2c66affSColin Finck 903*c2c66affSColin FinckPERLMOD_LATEX = NO 904*c2c66affSColin Finck 905*c2c66affSColin Finck# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 906*c2c66affSColin Finck# nicely formatted so it can be parsed by a human reader. This is useful 907*c2c66affSColin Finck# if you want to understand what is going on. On the other hand, if this 908*c2c66affSColin Finck# tag is set to NO the size of the Perl module output will be much smaller 909*c2c66affSColin Finck# and Perl will parse it just the same. 910*c2c66affSColin Finck 911*c2c66affSColin FinckPERLMOD_PRETTY = YES 912*c2c66affSColin Finck 913*c2c66affSColin Finck# The names of the make variables in the generated doxyrules.make file 914*c2c66affSColin Finck# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 915*c2c66affSColin Finck# This is useful so different doxyrules.make files included by the same 916*c2c66affSColin Finck# Makefile don't overwrite each other's variables. 917*c2c66affSColin Finck 918*c2c66affSColin FinckPERLMOD_MAKEVAR_PREFIX = 919*c2c66affSColin Finck 920*c2c66affSColin Finck#--------------------------------------------------------------------------- 921*c2c66affSColin Finck# Configuration options related to the preprocessor 922*c2c66affSColin Finck#--------------------------------------------------------------------------- 923*c2c66affSColin Finck 924*c2c66affSColin Finck# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 925*c2c66affSColin Finck# evaluate all C-preprocessor directives found in the sources and include 926*c2c66affSColin Finck# files. 927*c2c66affSColin Finck 928*c2c66affSColin FinckENABLE_PREPROCESSING = YES 929*c2c66affSColin Finck 930*c2c66affSColin Finck# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 931*c2c66affSColin Finck# names in the source code. If set to NO (the default) only conditional 932*c2c66affSColin Finck# compilation will be performed. Macro expansion can be done in a controlled 933*c2c66affSColin Finck# way by setting EXPAND_ONLY_PREDEF to YES. 934*c2c66affSColin Finck 935*c2c66affSColin FinckMACRO_EXPANSION = NO 936*c2c66affSColin Finck 937*c2c66affSColin Finck# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 938*c2c66affSColin Finck# then the macro expansion is limited to the macros specified with the 939*c2c66affSColin Finck# PREDEFINED and EXPAND_AS_PREDEFINED tags. 940*c2c66affSColin Finck 941*c2c66affSColin FinckEXPAND_ONLY_PREDEF = NO 942*c2c66affSColin Finck 943*c2c66affSColin Finck# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 944*c2c66affSColin Finck# in the INCLUDE_PATH (see below) will be search if a #include is found. 945*c2c66affSColin Finck 946*c2c66affSColin FinckSEARCH_INCLUDES = YES 947*c2c66affSColin Finck 948*c2c66affSColin Finck# The INCLUDE_PATH tag can be used to specify one or more directories that 949*c2c66affSColin Finck# contain include files that are not input files but should be processed by 950*c2c66affSColin Finck# the preprocessor. 951*c2c66affSColin Finck 952*c2c66affSColin FinckINCLUDE_PATH = 953*c2c66affSColin Finck 954*c2c66affSColin Finck# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 955*c2c66affSColin Finck# patterns (like *.h and *.hpp) to filter out the header-files in the 956*c2c66affSColin Finck# directories. If left blank, the patterns specified with FILE_PATTERNS will 957*c2c66affSColin Finck# be used. 958*c2c66affSColin Finck 959*c2c66affSColin FinckINCLUDE_FILE_PATTERNS = 960*c2c66affSColin Finck 961*c2c66affSColin Finck# The PREDEFINED tag can be used to specify one or more macro names that 962*c2c66affSColin Finck# are defined before the preprocessor is started (similar to the -D option of 963*c2c66affSColin Finck# gcc). The argument of the tag is a list of macros of the form: name 964*c2c66affSColin Finck# or name=definition (no spaces). If the definition and the = are 965*c2c66affSColin Finck# omitted =1 is assumed. To prevent a macro definition from being 966*c2c66affSColin Finck# undefined via #undef or recursively expanded use the := operator 967*c2c66affSColin Finck# instead of the = operator. 968*c2c66affSColin Finck 969*c2c66affSColin FinckPREDEFINED = __cplusplus 970*c2c66affSColin Finck 971*c2c66affSColin Finck# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 972*c2c66affSColin Finck# this tag can be used to specify a list of macro names that should be expanded. 973*c2c66affSColin Finck# The macro definition that is found in the sources will be used. 974*c2c66affSColin Finck# Use the PREDEFINED tag if you want to use a different macro definition. 975*c2c66affSColin Finck 976*c2c66affSColin FinckEXPAND_AS_DEFINED = 977*c2c66affSColin Finck 978*c2c66affSColin Finck# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 979*c2c66affSColin Finck# doxygen's preprocessor will remove all function-like macros that are alone 980*c2c66affSColin Finck# on a line, have an all uppercase name, and do not end with a semicolon. Such 981*c2c66affSColin Finck# function macros are typically used for boiler-plate code, and will confuse the 982*c2c66affSColin Finck# parser if not removed. 983*c2c66affSColin Finck 984*c2c66affSColin FinckSKIP_FUNCTION_MACROS = YES 985*c2c66affSColin Finck 986*c2c66affSColin Finck#--------------------------------------------------------------------------- 987*c2c66affSColin Finck# Configuration::additions related to external references 988*c2c66affSColin Finck#--------------------------------------------------------------------------- 989*c2c66affSColin Finck 990*c2c66affSColin Finck# The TAGFILES option can be used to specify one or more tagfiles. 991*c2c66affSColin Finck# Optionally an initial location of the external documentation 992*c2c66affSColin Finck# can be added for each tagfile. The format of a tag file without 993*c2c66affSColin Finck# this location is as follows: 994*c2c66affSColin Finck# TAGFILES = file1 file2 ... 995*c2c66affSColin Finck# Adding location for the tag files is done as follows: 996*c2c66affSColin Finck# TAGFILES = file1=loc1 "file2 = loc2" ... 997*c2c66affSColin Finck# where "loc1" and "loc2" can be relative or absolute paths or 998*c2c66affSColin Finck# URLs. If a location is present for each tag, the installdox tool 999*c2c66affSColin Finck# does not have to be run to correct the links. 1000*c2c66affSColin Finck# Note that each tag file must have a unique name 1001*c2c66affSColin Finck# (where the name does NOT include the path) 1002*c2c66affSColin Finck# If a tag file is not located in the directory in which doxygen 1003*c2c66affSColin Finck# is run, you must also specify the path to the tagfile here. 1004*c2c66affSColin Finck 1005*c2c66affSColin FinckTAGFILES = 1006*c2c66affSColin Finck 1007*c2c66affSColin Finck# When a file name is specified after GENERATE_TAGFILE, doxygen will create 1008*c2c66affSColin Finck# a tag file that is based on the input files it reads. 1009*c2c66affSColin Finck 1010*c2c66affSColin FinckGENERATE_TAGFILE = 1011*c2c66affSColin Finck 1012*c2c66affSColin Finck# If the ALLEXTERNALS tag is set to YES all external classes will be listed 1013*c2c66affSColin Finck# in the class index. If set to NO only the inherited external classes 1014*c2c66affSColin Finck# will be listed. 1015*c2c66affSColin Finck 1016*c2c66affSColin FinckALLEXTERNALS = NO 1017*c2c66affSColin Finck 1018*c2c66affSColin Finck# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 1019*c2c66affSColin Finck# in the modules index. If set to NO, only the current project's groups will 1020*c2c66affSColin Finck# be listed. 1021*c2c66affSColin Finck 1022*c2c66affSColin FinckEXTERNAL_GROUPS = YES 1023*c2c66affSColin Finck 1024*c2c66affSColin Finck# The PERL_PATH should be the absolute path and name of the perl script 1025*c2c66affSColin Finck# interpreter (i.e. the result of `which perl'). 1026*c2c66affSColin Finck 1027*c2c66affSColin FinckPERL_PATH = /usr/bin/perl 1028*c2c66affSColin Finck 1029*c2c66affSColin Finck#--------------------------------------------------------------------------- 1030*c2c66affSColin Finck# Configuration options related to the dot tool 1031*c2c66affSColin Finck#--------------------------------------------------------------------------- 1032*c2c66affSColin Finck 1033*c2c66affSColin Finck# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 1034*c2c66affSColin Finck# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base or 1035*c2c66affSColin Finck# super classes. Setting the tag to NO turns the diagrams off. Note that this 1036*c2c66affSColin Finck# option is superseded by the HAVE_DOT option below. This is only a fallback. It is 1037*c2c66affSColin Finck# recommended to install and use dot, since it yields more powerful graphs. 1038*c2c66affSColin Finck 1039*c2c66affSColin FinckCLASS_DIAGRAMS = YES 1040*c2c66affSColin Finck 1041*c2c66affSColin Finck# If set to YES, the inheritance and collaboration graphs will hide 1042*c2c66affSColin Finck# inheritance and usage relations if the target is undocumented 1043*c2c66affSColin Finck# or is not a class. 1044*c2c66affSColin Finck 1045*c2c66affSColin FinckHIDE_UNDOC_RELATIONS = NO 1046*c2c66affSColin Finck 1047*c2c66affSColin Finck# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 1048*c2c66affSColin Finck# available from the path. This tool is part of Graphviz, a graph visualization 1049*c2c66affSColin Finck# toolkit from AT&T and Lucent Bell Labs. The other options in this section 1050*c2c66affSColin Finck# have no effect if this option is set to NO (the default) 1051*c2c66affSColin Finck 1052*c2c66affSColin FinckHAVE_DOT = YES 1053*c2c66affSColin Finck 1054*c2c66affSColin Finck# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 1055*c2c66affSColin Finck# will generate a graph for each documented class showing the direct and 1056*c2c66affSColin Finck# indirect inheritance relations. Setting this tag to YES will force the 1057*c2c66affSColin Finck# the CLASS_DIAGRAMS tag to NO. 1058*c2c66affSColin Finck 1059*c2c66affSColin FinckCLASS_GRAPH = YES 1060*c2c66affSColin Finck 1061*c2c66affSColin Finck# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 1062*c2c66affSColin Finck# will generate a graph for each documented class showing the direct and 1063*c2c66affSColin Finck# indirect implementation dependencies (inheritance, containment, and 1064*c2c66affSColin Finck# class references variables) of the class with other documented classes. 1065*c2c66affSColin Finck 1066*c2c66affSColin FinckCOLLABORATION_GRAPH = YES 1067*c2c66affSColin Finck 1068*c2c66affSColin Finck# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 1069*c2c66affSColin Finck# collaboration diagrams in a style similar to the OMG's Unified Modeling 1070*c2c66affSColin Finck# Language. 1071*c2c66affSColin Finck 1072*c2c66affSColin FinckUML_LOOK = NO 1073*c2c66affSColin Finck 1074*c2c66affSColin Finck# If set to YES, the inheritance and collaboration graphs will show the 1075*c2c66affSColin Finck# relations between templates and their instances. 1076*c2c66affSColin Finck 1077*c2c66affSColin FinckTEMPLATE_RELATIONS = NO 1078*c2c66affSColin Finck 1079*c2c66affSColin Finck# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 1080*c2c66affSColin Finck# tags are set to YES then doxygen will generate a graph for each documented 1081*c2c66affSColin Finck# file showing the direct and indirect include dependencies of the file with 1082*c2c66affSColin Finck# other documented files. 1083*c2c66affSColin Finck 1084*c2c66affSColin FinckINCLUDE_GRAPH = YES 1085*c2c66affSColin Finck 1086*c2c66affSColin Finck# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 1087*c2c66affSColin Finck# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 1088*c2c66affSColin Finck# documented header file showing the documented files that directly or 1089*c2c66affSColin Finck# indirectly include this file. 1090*c2c66affSColin Finck 1091*c2c66affSColin FinckINCLUDED_BY_GRAPH = YES 1092*c2c66affSColin Finck 1093*c2c66affSColin Finck# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will 1094*c2c66affSColin Finck# generate a call dependency graph for every global function or class method. 1095*c2c66affSColin Finck# Note that enabling this option will significantly increase the time of a run. 1096*c2c66affSColin Finck# So in most cases it will be better to enable call graphs for selected 1097*c2c66affSColin Finck# functions only using the \callgraph command. 1098*c2c66affSColin Finck 1099*c2c66affSColin FinckCALL_GRAPH = YES 1100*c2c66affSColin Finck 1101*c2c66affSColin Finck# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 1102*c2c66affSColin Finck# will graphical hierarchy of all classes instead of a textual one. 1103*c2c66affSColin Finck 1104*c2c66affSColin FinckGRAPHICAL_HIERARCHY = YES 1105*c2c66affSColin Finck 1106*c2c66affSColin Finck# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 1107*c2c66affSColin Finck# generated by dot. Possible values are png, jpg, or gif 1108*c2c66affSColin Finck# If left blank png will be used. 1109*c2c66affSColin Finck 1110*c2c66affSColin FinckDOT_IMAGE_FORMAT = png 1111*c2c66affSColin Finck 1112*c2c66affSColin Finck# The tag DOT_PATH can be used to specify the path where the dot tool can be 1113*c2c66affSColin Finck# found. If left blank, it is assumed the dot tool can be found on the path. 1114*c2c66affSColin Finck 1115*c2c66affSColin FinckDOT_PATH = 1116*c2c66affSColin Finck 1117*c2c66affSColin Finck# The DOTFILE_DIRS tag can be used to specify one or more directories that 1118*c2c66affSColin Finck# contain dot files that are included in the documentation (see the 1119*c2c66affSColin Finck# \dotfile command). 1120*c2c66affSColin Finck 1121*c2c66affSColin FinckDOTFILE_DIRS = 1122*c2c66affSColin Finck 1123*c2c66affSColin Finck# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 1124*c2c66affSColin Finck# (in pixels) of the graphs generated by dot. If a graph becomes larger than 1125*c2c66affSColin Finck# this value, doxygen will try to truncate the graph, so that it fits within 1126*c2c66affSColin Finck# the specified constraint. Beware that most browsers cannot cope with very 1127*c2c66affSColin Finck# large images. 1128*c2c66affSColin Finck 1129*c2c66affSColin FinckMAX_DOT_GRAPH_WIDTH = 1024 1130*c2c66affSColin Finck 1131*c2c66affSColin Finck# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 1132*c2c66affSColin Finck# (in pixels) of the graphs generated by dot. If a graph becomes larger than 1133*c2c66affSColin Finck# this value, doxygen will try to truncate the graph, so that it fits within 1134*c2c66affSColin Finck# the specified constraint. Beware that most browsers cannot cope with very 1135*c2c66affSColin Finck# large images. 1136*c2c66affSColin Finck 1137*c2c66affSColin FinckMAX_DOT_GRAPH_HEIGHT = 1024 1138*c2c66affSColin Finck 1139*c2c66affSColin Finck# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1140*c2c66affSColin Finck# graphs generated by dot. A depth value of 3 means that only nodes reachable 1141*c2c66affSColin Finck# from the root by following a path via at most 3 edges will be shown. Nodes that 1142*c2c66affSColin Finck# lay further from the root node will be omitted. Note that setting this option to 1143*c2c66affSColin Finck# 1 or 2 may greatly reduce the computation time needed for large code bases. Also 1144*c2c66affSColin Finck# note that a graph may be further truncated if the graph's image dimensions are 1145*c2c66affSColin Finck# not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH and MAX_DOT_GRAPH_HEIGHT). 1146*c2c66affSColin Finck# If 0 is used for the depth value (the default), the graph is not depth-constrained. 1147*c2c66affSColin Finck 1148*c2c66affSColin FinckMAX_DOT_GRAPH_DEPTH = 0 1149*c2c66affSColin Finck 1150*c2c66affSColin Finck# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 1151*c2c66affSColin Finck# generate a legend page explaining the meaning of the various boxes and 1152*c2c66affSColin Finck# arrows in the dot generated graphs. 1153*c2c66affSColin Finck 1154*c2c66affSColin FinckGENERATE_LEGEND = YES 1155*c2c66affSColin Finck 1156*c2c66affSColin Finck# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 1157*c2c66affSColin Finck# remove the intermediate dot files that are used to generate 1158*c2c66affSColin Finck# the various graphs. 1159*c2c66affSColin Finck 1160*c2c66affSColin FinckDOT_CLEANUP = YES 1161*c2c66affSColin Finck 1162*c2c66affSColin Finck#--------------------------------------------------------------------------- 1163*c2c66affSColin Finck# Configuration::additions related to the search engine 1164*c2c66affSColin Finck#--------------------------------------------------------------------------- 1165*c2c66affSColin Finck 1166*c2c66affSColin Finck# The SEARCHENGINE tag specifies whether or not a search engine should be 1167*c2c66affSColin Finck# used. If set to NO the values of all tags below this one will be ignored. 1168*c2c66affSColin Finck 1169*c2c66affSColin FinckSEARCHENGINE = YES 1170