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