terom@52: # Doxyfile 1.5.6 terom@52: terom@52: # This file describes the settings to be used by the documentation system terom@52: # doxygen (www.doxygen.org) for a project terom@52: # terom@52: # All text after a hash (#) is considered a comment and will be ignored terom@52: # The format is: terom@52: # TAG = value [value, ...] terom@52: # For lists items can also be appended using: terom@52: # TAG += value [value, ...] terom@52: # Values that contain spaces should be placed between quotes (" ") terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # Project related configuration options terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # This tag specifies the encoding used for all characters in the config file terom@52: # that follow. The default is UTF-8 which is also the encoding used for all terom@52: # text before the first occurrence of this tag. Doxygen uses libiconv (or the terom@52: # iconv built into libc) for the transcoding. See terom@52: # http://www.gnu.org/software/libiconv for the list of possible encodings. terom@52: terom@52: DOXYFILE_ENCODING = UTF-8 terom@52: terom@52: # The PROJECT_NAME tag is a single word (or a sequence of words surrounded terom@52: # by quotes) that should identify the project. terom@52: terom@52: PROJECT_NAME = evsql terom@52: terom@52: # The PROJECT_NUMBER tag can be used to enter a project or revision number. terom@52: # This could be handy for archiving the generated documentation or terom@52: # if some version control system is used. terom@52: terom@52: PROJECT_NUMBER = terom@52: terom@52: # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) terom@52: # base path where the generated documentation will be put. terom@52: # If a relative path is entered, it will be relative to the location terom@52: # where doxygen was started. If left blank the current directory will be used. terom@52: terom@52: OUTPUT_DIRECTORY = doc terom@52: terom@52: # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create terom@52: # 4096 sub-directories (in 2 levels) under the output directory of each output terom@52: # format and will distribute the generated files over these directories. terom@52: # Enabling this option can be useful when feeding doxygen a huge amount of terom@52: # source files, where putting all generated files in the same directory would terom@52: # otherwise cause performance problems for the file system. terom@52: terom@52: CREATE_SUBDIRS = NO terom@52: terom@52: # The OUTPUT_LANGUAGE tag is used to specify the language in which all terom@52: # documentation generated by doxygen is written. Doxygen will use this terom@52: # information to generate all constant output in the proper language. terom@52: # The default language is English, other supported languages are: terom@52: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, terom@52: # Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, terom@52: # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), terom@52: # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, terom@52: # Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, terom@52: # and Ukrainian. terom@52: terom@52: OUTPUT_LANGUAGE = English terom@52: terom@52: # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will terom@52: # include brief member descriptions after the members that are listed in terom@52: # the file and class documentation (similar to JavaDoc). terom@52: # Set to NO to disable this. terom@52: terom@52: BRIEF_MEMBER_DESC = YES terom@52: terom@52: # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend terom@52: # the brief description of a member or function before the detailed description. terom@52: # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the terom@52: # brief descriptions will be completely suppressed. terom@52: terom@52: REPEAT_BRIEF = YES terom@52: terom@52: # This tag implements a quasi-intelligent brief description abbreviator terom@52: # that is used to form the text in various listings. Each string terom@52: # in this list, if found as the leading text of the brief description, will be terom@52: # stripped from the text and the result after processing the whole list, is terom@52: # used as the annotated text. Otherwise, the brief description is used as-is. terom@52: # If left blank, the following values are used ("$name" is automatically terom@52: # replaced with the name of the entity): "The $name class" "The $name widget" terom@52: # "The $name file" "is" "provides" "specifies" "contains" terom@52: # "represents" "a" "an" "the" terom@52: terom@52: ABBREVIATE_BRIEF = terom@52: terom@52: # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then terom@52: # Doxygen will generate a detailed section even if there is only a brief terom@52: # description. terom@52: terom@52: ALWAYS_DETAILED_SEC = NO terom@52: terom@52: # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all terom@52: # inherited members of a class in the documentation of that class as if those terom@52: # members were ordinary class members. Constructors, destructors and assignment terom@52: # operators of the base classes will not be shown. terom@52: terom@52: INLINE_INHERITED_MEMB = NO terom@52: terom@52: # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full terom@52: # path before files name in the file list and in the header files. If set terom@52: # to NO the shortest path that makes the file name unique will be used. terom@52: terom@52: FULL_PATH_NAMES = YES terom@52: terom@52: # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag terom@52: # can be used to strip a user-defined part of the path. Stripping is terom@52: # only done if one of the specified strings matches the left-hand part of terom@52: # the path. The tag can be used to show relative paths in the file list. terom@52: # If left blank the directory from which doxygen is run is used as the terom@52: # path to strip. terom@52: terom@52: STRIP_FROM_PATH = terom@52: terom@52: # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of terom@52: # the path mentioned in the documentation of a class, which tells terom@52: # the reader which header file to include in order to use a class. terom@52: # If left blank only the name of the header file containing the class terom@52: # definition is used. Otherwise one should specify the include paths that terom@52: # are normally passed to the compiler using the -I flag. terom@52: terom@52: STRIP_FROM_INC_PATH = terom@52: terom@52: # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter terom@52: # (but less readable) file names. This can be useful is your file systems terom@52: # doesn't support long names like on DOS, Mac, or CD-ROM. terom@52: terom@52: SHORT_NAMES = NO terom@52: terom@52: # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen terom@52: # will interpret the first line (until the first dot) of a JavaDoc-style terom@52: # comment as the brief description. If set to NO, the JavaDoc terom@52: # comments will behave just like regular Qt-style comments terom@52: # (thus requiring an explicit @brief command for a brief description.) terom@52: terom@52: JAVADOC_AUTOBRIEF = YES terom@52: terom@52: # If the QT_AUTOBRIEF tag is set to YES then Doxygen will terom@52: # interpret the first line (until the first dot) of a Qt-style terom@52: # comment as the brief description. If set to NO, the comments terom@52: # will behave just like regular Qt-style comments (thus requiring terom@52: # an explicit \brief command for a brief description.) terom@52: terom@52: QT_AUTOBRIEF = NO terom@52: terom@52: # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen terom@52: # treat a multi-line C++ special comment block (i.e. a block of //! or /// terom@52: # comments) as a brief description. This used to be the default behaviour. terom@52: # The new default is to treat a multi-line C++ comment block as a detailed terom@52: # description. Set this tag to YES if you prefer the old behaviour instead. terom@52: terom@52: MULTILINE_CPP_IS_BRIEF = NO terom@52: terom@52: # If the DETAILS_AT_TOP tag is set to YES then Doxygen terom@52: # will output the detailed description near the top, like JavaDoc. terom@52: # If set to NO, the detailed description appears after the member terom@52: # documentation. terom@52: terom@52: DETAILS_AT_TOP = NO terom@52: terom@52: # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented terom@52: # member inherits the documentation from any documented member that it terom@52: # re-implements. terom@52: terom@52: INHERIT_DOCS = YES terom@52: terom@52: # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce terom@52: # a new page for each member. If set to NO, the documentation of a member will terom@52: # be part of the file/class/namespace that contains it. terom@52: terom@52: SEPARATE_MEMBER_PAGES = NO terom@52: terom@52: # The TAB_SIZE tag can be used to set the number of spaces in a tab. terom@52: # Doxygen uses this value to replace tabs by spaces in code fragments. terom@52: terom@52: TAB_SIZE = 4 terom@52: terom@52: # This tag can be used to specify a number of aliases that acts terom@52: # as commands in the documentation. An alias has the form "name=value". terom@52: # For example adding "sideeffect=\par Side Effects:\n" will allow you to terom@52: # put the command \sideeffect (or @sideeffect) in the documentation, which terom@52: # will result in a user-defined paragraph with heading "Side Effects:". terom@52: # You can put \n's in the value part of an alias to insert newlines. terom@52: terom@52: ALIASES = terom@52: terom@52: # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C terom@52: # sources only. Doxygen will then generate output that is more tailored for C. terom@52: # For instance, some of the names that are used will be different. The list terom@52: # of all members will be omitted, etc. terom@52: terom@52: OPTIMIZE_OUTPUT_FOR_C = YES terom@52: terom@52: # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java terom@52: # sources only. Doxygen will then generate output that is more tailored for terom@52: # Java. For instance, namespaces will be presented as packages, qualified terom@52: # scopes will look different, etc. terom@52: terom@52: OPTIMIZE_OUTPUT_JAVA = NO terom@52: terom@52: # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran terom@52: # sources only. Doxygen will then generate output that is more tailored for terom@52: # Fortran. terom@52: terom@52: OPTIMIZE_FOR_FORTRAN = NO terom@52: terom@52: # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL terom@52: # sources. Doxygen will then generate output that is tailored for terom@52: # VHDL. terom@52: terom@52: OPTIMIZE_OUTPUT_VHDL = NO terom@52: terom@52: # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want terom@52: # to include (a tag file for) the STL sources as input, then you should terom@52: # set this tag to YES in order to let doxygen match functions declarations and terom@52: # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. terom@52: # func(std::string) {}). This also make the inheritance and collaboration terom@52: # diagrams that involve STL classes more complete and accurate. terom@52: terom@52: BUILTIN_STL_SUPPORT = NO terom@52: terom@52: # If you use Microsoft's C++/CLI language, you should set this option to YES to terom@52: # enable parsing support. terom@52: terom@52: CPP_CLI_SUPPORT = NO terom@52: terom@52: # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. terom@52: # Doxygen will parse them like normal C++ but will assume all classes use public terom@52: # instead of private inheritance when no explicit protection keyword is present. terom@52: terom@52: SIP_SUPPORT = NO terom@52: terom@52: # For Microsoft's IDL there are propget and propput attributes to indicate getter terom@52: # and setter methods for a property. Setting this option to YES (the default) terom@52: # will make doxygen to replace the get and set methods by a property in the terom@52: # documentation. This will only work if the methods are indeed getting or terom@52: # setting a simple type. If this is not the case, or you want to show the terom@52: # methods anyway, you should set this option to NO. terom@52: terom@52: IDL_PROPERTY_SUPPORT = YES terom@52: terom@52: # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC terom@52: # tag is set to YES, then doxygen will reuse the documentation of the first terom@52: # member in the group (if any) for the other members of the group. By default terom@52: # all members of a group must be documented explicitly. terom@52: terom@52: DISTRIBUTE_GROUP_DOC = NO terom@52: terom@52: # Set the SUBGROUPING tag to YES (the default) to allow class member groups of terom@52: # the same type (for instance a group of public functions) to be put as a terom@52: # subgroup of that type (e.g. under the Public Functions section). Set it to terom@52: # NO to prevent subgrouping. Alternatively, this can be done per class using terom@52: # the \nosubgrouping command. terom@52: terom@52: SUBGROUPING = YES terom@52: terom@52: # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum terom@52: # is documented as struct, union, or enum with the name of the typedef. So terom@52: # typedef struct TypeS {} TypeT, will appear in the documentation as a struct terom@52: # with name TypeT. When disabled the typedef will appear as a member of a file, terom@52: # namespace, or class. And the struct will be named TypeS. This can typically terom@52: # be useful for C code in case the coding convention dictates that all compound terom@52: # types are typedef'ed and only the typedef is referenced, never the tag name. terom@52: terom@52: TYPEDEF_HIDES_STRUCT = NO terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # Build related configuration options terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in terom@52: # documentation are documented, even if no documentation was available. terom@52: # Private class members and static file members will be hidden unless terom@52: # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES terom@52: terom@52: EXTRACT_ALL = NO terom@52: terom@52: # If the EXTRACT_PRIVATE tag is set to YES all private members of a class terom@52: # will be included in the documentation. terom@52: terom@52: EXTRACT_PRIVATE = NO terom@52: terom@52: # If the EXTRACT_STATIC tag is set to YES all static members of a file terom@52: # will be included in the documentation. terom@52: terom@52: EXTRACT_STATIC = NO terom@52: terom@52: # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) terom@52: # defined locally in source files will be included in the documentation. terom@52: # If set to NO only classes defined in header files are included. terom@52: terom@52: EXTRACT_LOCAL_CLASSES = YES terom@52: terom@52: # This flag is only useful for Objective-C code. When set to YES local terom@52: # methods, which are defined in the implementation section but not in terom@52: # the interface are included in the documentation. terom@52: # If set to NO (the default) only methods in the interface are included. terom@52: terom@52: EXTRACT_LOCAL_METHODS = NO terom@52: terom@52: # If this flag is set to YES, the members of anonymous namespaces will be terom@52: # extracted and appear in the documentation as a namespace called terom@52: # 'anonymous_namespace{file}', where file will be replaced with the base terom@52: # name of the file that contains the anonymous namespace. By default terom@52: # anonymous namespace are hidden. terom@52: terom@52: EXTRACT_ANON_NSPACES = NO terom@52: terom@52: # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all terom@52: # undocumented members of documented classes, files or namespaces. terom@52: # If set to NO (the default) these members will be included in the terom@52: # various overviews, but no documentation section is generated. terom@52: # This option has no effect if EXTRACT_ALL is enabled. terom@52: terom@52: HIDE_UNDOC_MEMBERS = NO terom@52: terom@52: # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all terom@52: # undocumented classes that are normally visible in the class hierarchy. terom@52: # If set to NO (the default) these classes will be included in the various terom@52: # overviews. This option has no effect if EXTRACT_ALL is enabled. terom@52: terom@52: HIDE_UNDOC_CLASSES = NO terom@52: terom@52: # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all terom@52: # friend (class|struct|union) declarations. terom@52: # If set to NO (the default) these declarations will be included in the terom@52: # documentation. terom@52: terom@52: HIDE_FRIEND_COMPOUNDS = NO terom@52: terom@52: # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any terom@52: # documentation blocks found inside the body of a function. terom@52: # If set to NO (the default) these blocks will be appended to the terom@52: # function's detailed documentation block. terom@52: terom@52: HIDE_IN_BODY_DOCS = NO terom@52: terom@52: # The INTERNAL_DOCS tag determines if documentation terom@52: # that is typed after a \internal command is included. If the tag is set terom@52: # to NO (the default) then the documentation will be excluded. terom@52: # Set it to YES to include the internal documentation. terom@52: terom@52: INTERNAL_DOCS = NO terom@52: terom@52: # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate terom@52: # file names in lower-case letters. If set to YES upper-case letters are also terom@52: # allowed. This is useful if you have classes or files whose names only differ terom@52: # in case and if your file system supports case sensitive file names. Windows terom@52: # and Mac users are advised to set this option to NO. terom@52: terom@52: CASE_SENSE_NAMES = YES terom@52: terom@52: # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen terom@52: # will show members with their full class and namespace scopes in the terom@52: # documentation. If set to YES the scope will be hidden. terom@52: terom@52: HIDE_SCOPE_NAMES = NO terom@52: terom@52: # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen terom@52: # will put a list of the files that are included by a file in the documentation terom@52: # of that file. terom@52: terom@52: SHOW_INCLUDE_FILES = YES terom@52: terom@52: # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] terom@52: # is inserted in the documentation for inline members. terom@52: terom@52: INLINE_INFO = YES terom@52: terom@52: # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen terom@52: # will sort the (detailed) documentation of file and class members terom@52: # alphabetically by member name. If set to NO the members will appear in terom@52: # declaration order. terom@52: terom@52: SORT_MEMBER_DOCS = YES terom@52: terom@52: # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the terom@52: # brief documentation of file, namespace and class members alphabetically terom@52: # by member name. If set to NO (the default) the members will appear in terom@52: # declaration order. terom@52: terom@52: SORT_BRIEF_DOCS = NO terom@52: terom@52: # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the terom@52: # hierarchy of group names into alphabetical order. If set to NO (the default) terom@52: # the group names will appear in their defined order. terom@52: terom@52: SORT_GROUP_NAMES = NO terom@52: terom@52: # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be terom@52: # sorted by fully-qualified names, including namespaces. If set to terom@52: # NO (the default), the class list will be sorted only by class name, terom@52: # not including the namespace part. terom@52: # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. terom@52: # Note: This option applies only to the class list, not to the terom@52: # alphabetical list. terom@52: terom@52: SORT_BY_SCOPE_NAME = NO terom@52: terom@52: # The GENERATE_TODOLIST tag can be used to enable (YES) or terom@52: # disable (NO) the todo list. This list is created by putting \todo terom@52: # commands in the documentation. terom@52: terom@52: GENERATE_TODOLIST = YES terom@52: terom@52: # The GENERATE_TESTLIST tag can be used to enable (YES) or terom@52: # disable (NO) the test list. This list is created by putting \test terom@52: # commands in the documentation. terom@52: terom@52: GENERATE_TESTLIST = YES terom@52: terom@52: # The GENERATE_BUGLIST tag can be used to enable (YES) or terom@52: # disable (NO) the bug list. This list is created by putting \bug terom@52: # commands in the documentation. terom@52: terom@52: GENERATE_BUGLIST = YES terom@52: terom@52: # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or terom@52: # disable (NO) the deprecated list. This list is created by putting terom@52: # \deprecated commands in the documentation. terom@52: terom@52: GENERATE_DEPRECATEDLIST= YES terom@52: terom@52: # The ENABLED_SECTIONS tag can be used to enable conditional terom@52: # documentation sections, marked by \if sectionname ... \endif. terom@52: terom@52: ENABLED_SECTIONS = terom@52: terom@52: # The MAX_INITIALIZER_LINES tag determines the maximum number of lines terom@52: # the initial value of a variable or define consists of for it to appear in terom@52: # the documentation. If the initializer consists of more lines than specified terom@52: # here it will be hidden. Use a value of 0 to hide initializers completely. terom@52: # The appearance of the initializer of individual variables and defines in the terom@52: # documentation can be controlled using \showinitializer or \hideinitializer terom@52: # command in the documentation regardless of this setting. terom@52: terom@52: MAX_INITIALIZER_LINES = 30 terom@52: terom@52: # Set the SHOW_USED_FILES tag to NO to disable the list of files generated terom@52: # at the bottom of the documentation of classes and structs. If set to YES the terom@52: # list will mention the files that were used to generate the documentation. terom@52: terom@52: SHOW_USED_FILES = YES terom@52: terom@52: # If the sources in your project are distributed over multiple directories terom@52: # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy terom@52: # in the documentation. The default is NO. terom@52: terom@52: SHOW_DIRECTORIES = NO terom@52: terom@52: # Set the SHOW_FILES tag to NO to disable the generation of the Files page. terom@52: # This will remove the Files entry from the Quick Index and from the terom@52: # Folder Tree View (if specified). The default is YES. terom@52: terom@52: SHOW_FILES = YES terom@52: terom@52: # Set the SHOW_NAMESPACES tag to NO to disable the generation of the terom@52: # Namespaces page. This will remove the Namespaces entry from the Quick Index terom@52: # and from the Folder Tree View (if specified). The default is YES. terom@52: terom@52: SHOW_NAMESPACES = YES terom@52: terom@52: # The FILE_VERSION_FILTER tag can be used to specify a program or script that terom@52: # doxygen should invoke to get the current version for each file (typically from terom@52: # the version control system). Doxygen will invoke the program by executing (via terom@52: # popen()) the command , where is the value of terom@52: # the FILE_VERSION_FILTER tag, and is the name of an input file terom@52: # provided by doxygen. Whatever the program writes to standard output terom@52: # is used as the file version. See the manual for examples. terom@52: terom@52: FILE_VERSION_FILTER = terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # configuration options related to warning and progress messages terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # The QUIET tag can be used to turn on/off the messages that are generated terom@52: # by doxygen. Possible values are YES and NO. If left blank NO is used. terom@52: terom@52: QUIET = YES terom@52: terom@52: # The WARNINGS tag can be used to turn on/off the warning messages that are terom@52: # generated by doxygen. Possible values are YES and NO. If left blank terom@52: # NO is used. terom@52: terom@52: WARNINGS = YES terom@52: terom@52: # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings terom@52: # for undocumented members. If EXTRACT_ALL is set to YES then this flag will terom@52: # automatically be disabled. terom@52: terom@52: WARN_IF_UNDOCUMENTED = YES terom@52: terom@52: # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for terom@52: # potential errors in the documentation, such as not documenting some terom@52: # parameters in a documented function, or documenting parameters that terom@52: # don't exist or using markup commands wrongly. terom@52: terom@52: WARN_IF_DOC_ERROR = YES terom@52: terom@52: # This WARN_NO_PARAMDOC option can be abled to get warnings for terom@52: # functions that are documented, but have no documentation for their parameters terom@52: # or return value. If set to NO (the default) doxygen will only warn about terom@52: # wrong or incomplete parameter documentation, but not about the absence of terom@52: # documentation. terom@52: terom@52: WARN_NO_PARAMDOC = NO terom@52: terom@52: # The WARN_FORMAT tag determines the format of the warning messages that terom@52: # doxygen can produce. The string should contain the $file, $line, and $text terom@52: # tags, which will be replaced by the file and line number from which the terom@52: # warning originated and the warning text. Optionally the format may contain terom@52: # $version, which will be replaced by the version of the file (if it could terom@52: # be obtained via FILE_VERSION_FILTER) terom@52: terom@52: WARN_FORMAT = "$file:$line: $text" terom@52: terom@52: # The WARN_LOGFILE tag can be used to specify a file to which warning terom@52: # and error messages should be written. If left blank the output is written terom@52: # to stderr. terom@52: terom@52: WARN_LOGFILE = terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # configuration options related to the input files terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # The INPUT tag can be used to specify the files and/or directories that contain terom@52: # documented source files. You may enter file names like "myfile.cpp" or terom@52: # directories like "/usr/src/myproject". Separate the files or directories terom@52: # with spaces. terom@52: terom@52: INPUT = src terom@52: terom@52: # This tag can be used to specify the character encoding of the source files terom@52: # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is terom@52: # also the default input encoding. Doxygen uses libiconv (or the iconv built terom@52: # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for terom@52: # the list of possible encodings. terom@52: terom@52: INPUT_ENCODING = UTF-8 terom@52: terom@52: # If the value of the INPUT tag contains directories, you can use the terom@52: # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp terom@52: # and *.h) to filter out the source-files in the directories. If left terom@52: # blank the following patterns are tested: terom@52: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx terom@52: # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 terom@52: terom@52: FILE_PATTERNS = *.h *.c terom@52: terom@52: # The RECURSIVE tag can be used to turn specify whether or not subdirectories terom@52: # should be searched for input files as well. Possible values are YES and NO. terom@52: # If left blank NO is used. terom@52: terom@52: RECURSIVE = YES terom@52: terom@52: # The EXCLUDE tag can be used to specify files and/or directories that should terom@52: # excluded from the INPUT source files. This way you can easily exclude a terom@52: # subdirectory from a directory tree whose root is specified with the INPUT tag. terom@52: terom@52: EXCLUDE = terom@52: terom@52: # The EXCLUDE_SYMLINKS tag can be used select whether or not files or terom@52: # directories that are symbolic links (a Unix filesystem feature) are excluded terom@52: # from the input. terom@52: terom@52: EXCLUDE_SYMLINKS = NO terom@52: terom@52: # If the value of the INPUT tag contains directories, you can use the terom@52: # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude terom@52: # certain files from those directories. Note that the wildcards are matched terom@52: # against the file with absolute path, so to exclude all test directories terom@52: # for example use the pattern */test/* terom@52: terom@52: EXCLUDE_PATTERNS = terom@52: terom@52: # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names terom@52: # (namespaces, classes, functions, etc.) that should be excluded from the terom@52: # output. The symbol name can be a fully qualified name, a word, or if the terom@52: # wildcard * is used, a substring. Examples: ANamespace, AClass, terom@52: # AClass::ANamespace, ANamespace::*Test terom@52: terom@52: EXCLUDE_SYMBOLS = terom@52: terom@52: # The EXAMPLE_PATH tag can be used to specify one or more files or terom@52: # directories that contain example code fragments that are included (see terom@52: # the \include command). terom@52: terom@52: EXAMPLE_PATH = terom@52: terom@52: # If the value of the EXAMPLE_PATH tag contains directories, you can use the terom@52: # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp terom@52: # and *.h) to filter out the source-files in the directories. If left terom@52: # blank all files are included. terom@52: terom@52: EXAMPLE_PATTERNS = terom@52: terom@52: # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be terom@52: # searched for input files to be used with the \include or \dontinclude terom@52: # commands irrespective of the value of the RECURSIVE tag. terom@52: # Possible values are YES and NO. If left blank NO is used. terom@52: terom@52: EXAMPLE_RECURSIVE = NO terom@52: terom@52: # The IMAGE_PATH tag can be used to specify one or more files or terom@52: # directories that contain image that are included in the documentation (see terom@52: # the \image command). terom@52: terom@52: IMAGE_PATH = terom@52: terom@52: # The INPUT_FILTER tag can be used to specify a program that doxygen should terom@52: # invoke to filter for each input file. Doxygen will invoke the filter program terom@52: # by executing (via popen()) the command , where terom@52: # is the value of the INPUT_FILTER tag, and is the name of an terom@52: # input file. Doxygen will then use the output that the filter program writes terom@52: # to standard output. If FILTER_PATTERNS is specified, this tag will be terom@52: # ignored. terom@52: terom@52: INPUT_FILTER = terom@52: terom@52: # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern terom@52: # basis. Doxygen will compare the file name with each pattern and apply the terom@52: # filter if there is a match. The filters are a list of the form: terom@52: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further terom@52: # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER terom@52: # is applied to all files. terom@52: terom@52: FILTER_PATTERNS = terom@52: terom@52: # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using terom@52: # INPUT_FILTER) will be used to filter the input files when producing source terom@52: # files to browse (i.e. when SOURCE_BROWSER is set to YES). terom@52: terom@52: FILTER_SOURCE_FILES = NO terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # configuration options related to source browsing terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # If the SOURCE_BROWSER tag is set to YES then a list of source files will terom@52: # be generated. Documented entities will be cross-referenced with these sources. terom@52: # Note: To get rid of all source code in the generated output, make sure also terom@52: # VERBATIM_HEADERS is set to NO. terom@52: terom@52: SOURCE_BROWSER = NO terom@52: terom@52: # Setting the INLINE_SOURCES tag to YES will include the body terom@52: # of functions and classes directly in the documentation. terom@52: terom@52: INLINE_SOURCES = NO terom@52: terom@52: # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct terom@52: # doxygen to hide any special comment blocks from generated source code terom@52: # fragments. Normal C and C++ comments will always remain visible. terom@52: terom@52: STRIP_CODE_COMMENTS = YES terom@52: terom@52: # If the REFERENCED_BY_RELATION tag is set to YES terom@52: # then for each documented function all documented terom@52: # functions referencing it will be listed. terom@52: terom@52: REFERENCED_BY_RELATION = NO terom@52: terom@52: # If the REFERENCES_RELATION tag is set to YES terom@52: # then for each documented function all documented entities terom@52: # called/used by that function will be listed. terom@52: terom@52: REFERENCES_RELATION = NO terom@52: terom@52: # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) terom@52: # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from terom@52: # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will terom@52: # link to the source code. Otherwise they will link to the documentstion. terom@52: terom@52: REFERENCES_LINK_SOURCE = YES terom@52: terom@52: # If the USE_HTAGS tag is set to YES then the references to source code terom@52: # will point to the HTML generated by the htags(1) tool instead of doxygen terom@52: # built-in source browser. The htags tool is part of GNU's global source terom@52: # tagging system (see http://www.gnu.org/software/global/global.html). You terom@52: # will need version 4.8.6 or higher. terom@52: terom@52: USE_HTAGS = NO terom@52: terom@52: # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen terom@52: # will generate a verbatim copy of the header file for each class for terom@52: # which an include is specified. Set to NO to disable this. terom@52: terom@52: VERBATIM_HEADERS = YES terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # configuration options related to the alphabetical class index terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index terom@52: # of all compounds will be generated. Enable this if the project terom@52: # contains a lot of classes, structs, unions or interfaces. terom@52: terom@52: ALPHABETICAL_INDEX = NO terom@52: terom@52: # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then terom@52: # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns terom@52: # in which this list will be split (can be a number in the range [1..20]) terom@52: terom@52: COLS_IN_ALPHA_INDEX = 5 terom@52: terom@52: # In case all classes in a project start with a common prefix, all terom@52: # classes will be put under the same header in the alphabetical index. terom@52: # The IGNORE_PREFIX tag can be used to specify one or more prefixes that terom@52: # should be ignored while generating the index headers. terom@52: terom@52: IGNORE_PREFIX = terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # configuration options related to the HTML output terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # If the GENERATE_HTML tag is set to YES (the default) Doxygen will terom@52: # generate HTML output. terom@52: terom@52: GENERATE_HTML = YES terom@52: terom@52: # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. terom@52: # If a relative path is entered the value of OUTPUT_DIRECTORY will be terom@52: # put in front of it. If left blank `html' will be used as the default path. terom@52: terom@52: HTML_OUTPUT = html terom@52: terom@52: # The HTML_FILE_EXTENSION tag can be used to specify the file extension for terom@52: # each generated HTML page (for example: .htm,.php,.asp). If it is left blank terom@52: # doxygen will generate files with .html extension. terom@52: terom@52: HTML_FILE_EXTENSION = .html terom@52: terom@52: # The HTML_HEADER tag can be used to specify a personal HTML header for terom@52: # each generated HTML page. If it is left blank doxygen will generate a terom@52: # standard header. terom@52: terom@52: HTML_HEADER = terom@52: terom@52: # The HTML_FOOTER tag can be used to specify a personal HTML footer for terom@52: # each generated HTML page. If it is left blank doxygen will generate a terom@52: # standard footer. terom@52: terom@52: HTML_FOOTER = terom@52: terom@52: # The HTML_STYLESHEET tag can be used to specify a user-defined cascading terom@52: # style sheet that is used by each HTML page. It can be used to terom@52: # fine-tune the look of the HTML output. If the tag is left blank doxygen terom@52: # will generate a default style sheet. Note that doxygen will try to copy terom@52: # the style sheet file to the HTML output directory, so don't put your own terom@52: # stylesheet in the HTML output directory as well, or it will be erased! terom@52: terom@52: HTML_STYLESHEET = terom@52: terom@52: # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, terom@52: # files or namespaces will be aligned in HTML using tables. If set to terom@52: # NO a bullet list will be used. terom@52: terom@52: HTML_ALIGN_MEMBERS = YES terom@52: terom@52: # If the GENERATE_HTMLHELP tag is set to YES, additional index files terom@52: # will be generated that can be used as input for tools like the terom@52: # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) terom@52: # of the generated HTML documentation. terom@52: terom@52: GENERATE_HTMLHELP = NO terom@52: terom@52: # If the GENERATE_DOCSET tag is set to YES, additional index files terom@52: # will be generated that can be used as input for Apple's Xcode 3 terom@52: # integrated development environment, introduced with OSX 10.5 (Leopard). terom@52: # To create a documentation set, doxygen will generate a Makefile in the terom@52: # HTML output directory. Running make will produce the docset in that terom@52: # directory and running "make install" will install the docset in terom@52: # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find terom@52: # it at startup. terom@52: terom@52: GENERATE_DOCSET = NO terom@52: terom@52: # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the terom@52: # feed. A documentation feed provides an umbrella under which multiple terom@52: # documentation sets from a single provider (such as a company or product suite) terom@52: # can be grouped. terom@52: terom@52: DOCSET_FEEDNAME = "Doxygen generated docs" terom@52: terom@52: # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that terom@52: # should uniquely identify the documentation set bundle. This should be a terom@52: # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen terom@52: # will append .docset to the name. terom@52: terom@52: DOCSET_BUNDLE_ID = org.doxygen.Project terom@52: terom@52: # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML terom@52: # documentation will contain sections that can be hidden and shown after the terom@52: # page has loaded. For this to work a browser that supports terom@52: # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox terom@52: # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). terom@52: terom@52: HTML_DYNAMIC_SECTIONS = NO terom@52: terom@52: # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can terom@52: # be used to specify the file name of the resulting .chm file. You terom@52: # can add a path in front of the file if the result should not be terom@52: # written to the html output directory. terom@52: terom@52: CHM_FILE = terom@52: terom@52: # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can terom@52: # be used to specify the location (absolute path including file name) of terom@52: # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run terom@52: # the HTML help compiler on the generated index.hhp. terom@52: terom@52: HHC_LOCATION = terom@52: terom@52: # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag terom@52: # controls if a separate .chi index file is generated (YES) or that terom@52: # it should be included in the master .chm file (NO). terom@52: terom@52: GENERATE_CHI = NO terom@52: terom@52: # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING terom@52: # is used to encode HtmlHelp index (hhk), content (hhc) and project file terom@52: # content. terom@52: terom@52: CHM_INDEX_ENCODING = terom@52: terom@52: # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag terom@52: # controls whether a binary table of contents is generated (YES) or a terom@52: # normal table of contents (NO) in the .chm file. terom@52: terom@52: BINARY_TOC = NO terom@52: terom@52: # The TOC_EXPAND flag can be set to YES to add extra items for group members terom@52: # to the contents of the HTML help documentation and to the tree view. terom@52: terom@52: TOC_EXPAND = NO terom@52: terom@52: # The DISABLE_INDEX tag can be used to turn on/off the condensed index at terom@52: # top of each HTML page. The value NO (the default) enables the index and terom@52: # the value YES disables it. terom@52: terom@52: DISABLE_INDEX = NO terom@52: terom@52: # This tag can be used to set the number of enum values (range [1..20]) terom@52: # that doxygen will group on one line in the generated HTML documentation. terom@52: terom@52: ENUM_VALUES_PER_LINE = 4 terom@52: terom@52: # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index terom@52: # structure should be generated to display hierarchical information. terom@52: # If the tag value is set to FRAME, a side panel will be generated terom@52: # containing a tree-like index structure (just like the one that terom@52: # is generated for HTML Help). For this to work a browser that supports terom@52: # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, terom@52: # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are terom@52: # probably better off using the HTML help feature. Other possible values terom@52: # for this tag are: HIERARCHIES, which will generate the Groups, Directories, terom@52: # and Class Hiererachy pages using a tree view instead of an ordered list; terom@52: # ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which terom@52: # disables this behavior completely. For backwards compatibility with previous terom@52: # releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE terom@52: # respectively. terom@52: terom@52: GENERATE_TREEVIEW = NONE terom@52: terom@52: # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be terom@52: # used to set the initial width (in pixels) of the frame in which the tree terom@52: # is shown. terom@52: terom@52: TREEVIEW_WIDTH = 250 terom@52: terom@52: # Use this tag to change the font size of Latex formulas included terom@52: # as images in the HTML documentation. The default is 10. Note that terom@52: # when you change the font size after a successful doxygen run you need terom@52: # to manually remove any form_*.png images from the HTML output directory terom@52: # to force them to be regenerated. terom@52: terom@52: FORMULA_FONTSIZE = 10 terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # configuration options related to the LaTeX output terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will terom@52: # generate Latex output. terom@52: terom@52: GENERATE_LATEX = NO terom@52: terom@52: # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. terom@52: # If a relative path is entered the value of OUTPUT_DIRECTORY will be terom@52: # put in front of it. If left blank `latex' will be used as the default path. terom@52: terom@52: LATEX_OUTPUT = latex terom@52: terom@52: # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be terom@52: # invoked. If left blank `latex' will be used as the default command name. terom@52: terom@52: LATEX_CMD_NAME = latex terom@52: terom@52: # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to terom@52: # generate index for LaTeX. If left blank `makeindex' will be used as the terom@52: # default command name. terom@52: terom@52: MAKEINDEX_CMD_NAME = makeindex terom@52: terom@52: # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact terom@52: # LaTeX documents. This may be useful for small projects and may help to terom@52: # save some trees in general. terom@52: terom@52: COMPACT_LATEX = NO terom@52: terom@52: # The PAPER_TYPE tag can be used to set the paper type that is used terom@52: # by the printer. Possible values are: a4, a4wide, letter, legal and terom@52: # executive. If left blank a4wide will be used. terom@52: terom@52: PAPER_TYPE = a4wide terom@52: terom@52: # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX terom@52: # packages that should be included in the LaTeX output. terom@52: terom@52: EXTRA_PACKAGES = terom@52: terom@52: # The LATEX_HEADER tag can be used to specify a personal LaTeX header for terom@52: # the generated latex document. The header should contain everything until terom@52: # the first chapter. If it is left blank doxygen will generate a terom@52: # standard header. Notice: only use this tag if you know what you are doing! terom@52: terom@52: LATEX_HEADER = terom@52: terom@52: # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated terom@52: # is prepared for conversion to pdf (using ps2pdf). The pdf file will terom@52: # contain links (just like the HTML output) instead of page references terom@52: # This makes the output suitable for online browsing using a pdf viewer. terom@52: terom@52: PDF_HYPERLINKS = YES terom@52: terom@52: # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of terom@52: # plain latex in the generated Makefile. Set this option to YES to get a terom@52: # higher quality PDF documentation. terom@52: terom@52: USE_PDFLATEX = YES terom@52: terom@52: # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. terom@52: # command to the generated LaTeX files. This will instruct LaTeX to keep terom@52: # running if errors occur, instead of asking the user for help. terom@52: # This option is also used when generating formulas in HTML. terom@52: terom@52: LATEX_BATCHMODE = NO terom@52: terom@52: # If LATEX_HIDE_INDICES is set to YES then doxygen will not terom@52: # include the index chapters (such as File Index, Compound Index, etc.) terom@52: # in the output. terom@52: terom@52: LATEX_HIDE_INDICES = NO terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # configuration options related to the RTF output terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output terom@52: # The RTF output is optimized for Word 97 and may not look very pretty with terom@52: # other RTF readers or editors. terom@52: terom@52: GENERATE_RTF = NO terom@52: terom@52: # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. terom@52: # If a relative path is entered the value of OUTPUT_DIRECTORY will be terom@52: # put in front of it. If left blank `rtf' will be used as the default path. terom@52: terom@52: RTF_OUTPUT = rtf terom@52: terom@52: # If the COMPACT_RTF tag is set to YES Doxygen generates more compact terom@52: # RTF documents. This may be useful for small projects and may help to terom@52: # save some trees in general. terom@52: terom@52: COMPACT_RTF = NO terom@52: terom@52: # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated terom@52: # will contain hyperlink fields. The RTF file will terom@52: # contain links (just like the HTML output) instead of page references. terom@52: # This makes the output suitable for online browsing using WORD or other terom@52: # programs which support those fields. terom@52: # Note: wordpad (write) and others do not support links. terom@52: terom@52: RTF_HYPERLINKS = NO terom@52: terom@52: # Load stylesheet definitions from file. Syntax is similar to doxygen's terom@52: # config file, i.e. a series of assignments. You only have to provide terom@52: # replacements, missing definitions are set to their default value. terom@52: terom@52: RTF_STYLESHEET_FILE = terom@52: terom@52: # Set optional variables used in the generation of an rtf document. terom@52: # Syntax is similar to doxygen's config file. terom@52: terom@52: RTF_EXTENSIONS_FILE = terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # configuration options related to the man page output terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # If the GENERATE_MAN tag is set to YES (the default) Doxygen will terom@52: # generate man pages terom@52: terom@52: GENERATE_MAN = NO terom@52: terom@52: # The MAN_OUTPUT tag is used to specify where the man pages will be put. terom@52: # If a relative path is entered the value of OUTPUT_DIRECTORY will be terom@52: # put in front of it. If left blank `man' will be used as the default path. terom@52: terom@52: MAN_OUTPUT = doc/man terom@52: terom@52: # The MAN_EXTENSION tag determines the extension that is added to terom@52: # the generated man pages (default is the subroutine's section .3) terom@52: terom@52: MAN_EXTENSION = .3 terom@52: terom@52: # If the MAN_LINKS tag is set to YES and Doxygen generates man output, terom@52: # then it will generate one additional man file for each entity terom@52: # documented in the real man page(s). These additional files terom@52: # only source the real man page, but without them the man command terom@52: # would be unable to find the correct page. The default is NO. terom@52: terom@52: MAN_LINKS = NO terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # configuration options related to the XML output terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # If the GENERATE_XML tag is set to YES Doxygen will terom@52: # generate an XML file that captures the structure of terom@52: # the code including all documentation. terom@52: terom@52: GENERATE_XML = NO terom@52: terom@52: # The XML_OUTPUT tag is used to specify where the XML pages will be put. terom@52: # If a relative path is entered the value of OUTPUT_DIRECTORY will be terom@52: # put in front of it. If left blank `xml' will be used as the default path. terom@52: terom@52: XML_OUTPUT = xml terom@52: terom@52: # The XML_SCHEMA tag can be used to specify an XML schema, terom@52: # which can be used by a validating XML parser to check the terom@52: # syntax of the XML files. terom@52: terom@52: XML_SCHEMA = terom@52: terom@52: # The XML_DTD tag can be used to specify an XML DTD, terom@52: # which can be used by a validating XML parser to check the terom@52: # syntax of the XML files. terom@52: terom@52: XML_DTD = terom@52: terom@52: # If the XML_PROGRAMLISTING tag is set to YES Doxygen will terom@52: # dump the program listings (including syntax highlighting terom@52: # and cross-referencing information) to the XML output. Note that terom@52: # enabling this will significantly increase the size of the XML output. terom@52: terom@52: XML_PROGRAMLISTING = YES terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # configuration options for the AutoGen Definitions output terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will terom@52: # generate an AutoGen Definitions (see autogen.sf.net) file terom@52: # that captures the structure of the code including all terom@52: # documentation. Note that this feature is still experimental terom@52: # and incomplete at the moment. terom@52: terom@52: GENERATE_AUTOGEN_DEF = NO terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # configuration options related to the Perl module output terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # If the GENERATE_PERLMOD tag is set to YES Doxygen will terom@52: # generate a Perl module file that captures the structure of terom@52: # the code including all documentation. Note that this terom@52: # feature is still experimental and incomplete at the terom@52: # moment. terom@52: terom@52: GENERATE_PERLMOD = NO terom@52: terom@52: # If the PERLMOD_LATEX tag is set to YES Doxygen will generate terom@52: # the necessary Makefile rules, Perl scripts and LaTeX code to be able terom@52: # to generate PDF and DVI output from the Perl module output. terom@52: terom@52: PERLMOD_LATEX = NO terom@52: terom@52: # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be terom@52: # nicely formatted so it can be parsed by a human reader. This is useful terom@52: # if you want to understand what is going on. On the other hand, if this terom@52: # tag is set to NO the size of the Perl module output will be much smaller terom@52: # and Perl will parse it just the same. terom@52: terom@52: PERLMOD_PRETTY = YES terom@52: terom@52: # The names of the make variables in the generated doxyrules.make file terom@52: # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. terom@52: # This is useful so different doxyrules.make files included by the same terom@52: # Makefile don't overwrite each other's variables. terom@52: terom@52: PERLMOD_MAKEVAR_PREFIX = terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # Configuration options related to the preprocessor terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will terom@52: # evaluate all C-preprocessor directives found in the sources and include terom@52: # files. terom@52: terom@52: ENABLE_PREPROCESSING = YES terom@52: terom@52: # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro terom@52: # names in the source code. If set to NO (the default) only conditional terom@52: # compilation will be performed. Macro expansion can be done in a controlled terom@52: # way by setting EXPAND_ONLY_PREDEF to YES. terom@52: terom@52: MACRO_EXPANSION = NO terom@52: terom@52: # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES terom@52: # then the macro expansion is limited to the macros specified with the terom@52: # PREDEFINED and EXPAND_AS_DEFINED tags. terom@52: terom@52: EXPAND_ONLY_PREDEF = NO terom@52: terom@52: # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files terom@52: # in the INCLUDE_PATH (see below) will be search if a #include is found. terom@52: terom@52: SEARCH_INCLUDES = YES terom@52: terom@52: # The INCLUDE_PATH tag can be used to specify one or more directories that terom@52: # contain include files that are not input files but should be processed by terom@52: # the preprocessor. terom@52: terom@52: INCLUDE_PATH = terom@52: terom@52: # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard terom@52: # patterns (like *.h and *.hpp) to filter out the header-files in the terom@52: # directories. If left blank, the patterns specified with FILE_PATTERNS will terom@52: # be used. terom@52: terom@52: INCLUDE_FILE_PATTERNS = terom@52: terom@52: # The PREDEFINED tag can be used to specify one or more macro names that terom@52: # are defined before the preprocessor is started (similar to the -D option of terom@52: # gcc). The argument of the tag is a list of macros of the form: name terom@52: # or name=definition (no spaces). If the definition and the = are terom@52: # omitted =1 is assumed. To prevent a macro definition from being terom@52: # undefined via #undef or recursively expanded use the := operator terom@52: # instead of the = operator. terom@52: terom@52: PREDEFINED = terom@52: terom@52: # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then terom@52: # this tag can be used to specify a list of macro names that should be expanded. terom@52: # The macro definition that is found in the sources will be used. terom@52: # Use the PREDEFINED tag if you want to use a different macro definition. terom@52: terom@52: EXPAND_AS_DEFINED = terom@52: terom@52: # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then terom@52: # doxygen's preprocessor will remove all function-like macros that are alone terom@52: # on a line, have an all uppercase name, and do not end with a semicolon. Such terom@52: # function macros are typically used for boiler-plate code, and will confuse terom@52: # the parser if not removed. terom@52: terom@52: SKIP_FUNCTION_MACROS = YES terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # Configuration::additions related to external references terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # The TAGFILES option can be used to specify one or more tagfiles. terom@52: # Optionally an initial location of the external documentation terom@52: # can be added for each tagfile. The format of a tag file without terom@52: # this location is as follows: terom@52: # TAGFILES = file1 file2 ... terom@52: # Adding location for the tag files is done as follows: terom@52: # TAGFILES = file1=loc1 "file2 = loc2" ... terom@52: # where "loc1" and "loc2" can be relative or absolute paths or terom@52: # URLs. If a location is present for each tag, the installdox tool terom@52: # does not have to be run to correct the links. terom@52: # Note that each tag file must have a unique name terom@52: # (where the name does NOT include the path) terom@52: # If a tag file is not located in the directory in which doxygen terom@52: # is run, you must also specify the path to the tagfile here. terom@52: terom@52: TAGFILES = terom@52: terom@52: # When a file name is specified after GENERATE_TAGFILE, doxygen will create terom@52: # a tag file that is based on the input files it reads. terom@52: terom@52: GENERATE_TAGFILE = terom@52: terom@52: # If the ALLEXTERNALS tag is set to YES all external classes will be listed terom@52: # in the class index. If set to NO only the inherited external classes terom@52: # will be listed. terom@52: terom@52: ALLEXTERNALS = NO terom@52: terom@52: # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed terom@52: # in the modules index. If set to NO, only the current project's groups will terom@52: # be listed. terom@52: terom@52: EXTERNAL_GROUPS = YES terom@52: terom@52: # The PERL_PATH should be the absolute path and name of the perl script terom@52: # interpreter (i.e. the result of `which perl'). terom@52: terom@52: PERL_PATH = /usr/bin/perl terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # Configuration options related to the dot tool terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will terom@52: # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base terom@52: # or super classes. Setting the tag to NO turns the diagrams off. Note that terom@52: # this option is superseded by the HAVE_DOT option below. This is only a terom@52: # fallback. It is recommended to install and use dot, since it yields more terom@52: # powerful graphs. terom@52: terom@52: CLASS_DIAGRAMS = YES terom@52: terom@52: # You can define message sequence charts within doxygen comments using the \msc terom@52: # command. Doxygen will then run the mscgen tool (see terom@52: # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the terom@52: # documentation. The MSCGEN_PATH tag allows you to specify the directory where terom@52: # the mscgen tool resides. If left empty the tool is assumed to be found in the terom@52: # default search path. terom@52: terom@52: MSCGEN_PATH = terom@52: terom@52: # If set to YES, the inheritance and collaboration graphs will hide terom@52: # inheritance and usage relations if the target is undocumented terom@52: # or is not a class. terom@52: terom@52: HIDE_UNDOC_RELATIONS = YES terom@52: terom@52: # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is terom@52: # available from the path. This tool is part of Graphviz, a graph visualization terom@52: # toolkit from AT&T and Lucent Bell Labs. The other options in this section terom@52: # have no effect if this option is set to NO (the default) terom@52: terom@52: HAVE_DOT = YES terom@52: terom@52: # By default doxygen will write a font called FreeSans.ttf to the output terom@52: # directory and reference it in all dot files that doxygen generates. This terom@52: # font does not include all possible unicode characters however, so when you need terom@52: # these (or just want a differently looking font) you can specify the font name terom@52: # using DOT_FONTNAME. You need need to make sure dot is able to find the font, terom@52: # which can be done by putting it in a standard location or by setting the terom@52: # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory terom@52: # containing the font. terom@52: terom@52: DOT_FONTNAME = FreeSans terom@52: terom@52: # By default doxygen will tell dot to use the output directory to look for the terom@52: # FreeSans.ttf font (which doxygen will put there itself). If you specify a terom@52: # different font using DOT_FONTNAME you can set the path where dot terom@52: # can find it using this tag. terom@52: terom@52: DOT_FONTPATH = terom@52: terom@52: # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen terom@52: # will generate a graph for each documented class showing the direct and terom@52: # indirect inheritance relations. Setting this tag to YES will force the terom@52: # the CLASS_DIAGRAMS tag to NO. terom@52: terom@52: CLASS_GRAPH = YES terom@52: terom@52: # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen terom@52: # will generate a graph for each documented class showing the direct and terom@52: # indirect implementation dependencies (inheritance, containment, and terom@52: # class references variables) of the class with other documented classes. terom@52: terom@52: COLLABORATION_GRAPH = YES terom@52: terom@52: # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen terom@52: # will generate a graph for groups, showing the direct groups dependencies terom@52: terom@52: GROUP_GRAPHS = YES terom@52: terom@52: # If the UML_LOOK tag is set to YES doxygen will generate inheritance and terom@52: # collaboration diagrams in a style similar to the OMG's Unified Modeling terom@52: # Language. terom@52: terom@52: UML_LOOK = NO terom@52: terom@52: # If set to YES, the inheritance and collaboration graphs will show the terom@52: # relations between templates and their instances. terom@52: terom@52: TEMPLATE_RELATIONS = NO terom@52: terom@52: # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT terom@52: # tags are set to YES then doxygen will generate a graph for each documented terom@52: # file showing the direct and indirect include dependencies of the file with terom@52: # other documented files. terom@52: terom@53: INCLUDE_GRAPH = NO terom@52: terom@52: # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and terom@52: # HAVE_DOT tags are set to YES then doxygen will generate a graph for each terom@52: # documented header file showing the documented files that directly or terom@52: # indirectly include this file. terom@52: terom@53: INCLUDED_BY_GRAPH = NO terom@52: terom@52: # If the CALL_GRAPH and HAVE_DOT options are set to YES then terom@52: # doxygen will generate a call dependency graph for every global function terom@52: # or class method. Note that enabling this option will significantly increase terom@52: # the time of a run. So in most cases it will be better to enable call graphs terom@52: # for selected functions only using the \callgraph command. terom@52: terom@52: CALL_GRAPH = NO terom@52: terom@52: # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then terom@52: # doxygen will generate a caller dependency graph for every global function terom@52: # or class method. Note that enabling this option will significantly increase terom@52: # the time of a run. So in most cases it will be better to enable caller terom@52: # graphs for selected functions only using the \callergraph command. terom@52: terom@52: CALLER_GRAPH = NO terom@52: terom@52: # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen terom@52: # will graphical hierarchy of all classes instead of a textual one. terom@52: terom@52: GRAPHICAL_HIERARCHY = YES terom@52: terom@52: # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES terom@52: # then doxygen will show the dependencies a directory has on other directories terom@52: # in a graphical way. The dependency relations are determined by the #include terom@52: # relations between the files in the directories. terom@52: terom@52: DIRECTORY_GRAPH = YES terom@52: terom@52: # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images terom@52: # generated by dot. Possible values are png, jpg, or gif terom@52: # If left blank png will be used. terom@52: terom@52: DOT_IMAGE_FORMAT = png terom@52: terom@52: # The tag DOT_PATH can be used to specify the path where the dot tool can be terom@52: # found. If left blank, it is assumed the dot tool can be found in the path. terom@52: terom@52: DOT_PATH = terom@52: terom@52: # The DOTFILE_DIRS tag can be used to specify one or more directories that terom@52: # contain dot files that are included in the documentation (see the terom@52: # \dotfile command). terom@52: terom@52: DOTFILE_DIRS = terom@52: terom@52: # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of terom@52: # nodes that will be shown in the graph. If the number of nodes in a graph terom@52: # becomes larger than this value, doxygen will truncate the graph, which is terom@52: # visualized by representing a node as a red box. Note that doxygen if the terom@52: # number of direct children of the root node in a graph is already larger than terom@52: # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note terom@52: # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. terom@52: terom@52: DOT_GRAPH_MAX_NODES = 50 terom@52: terom@52: # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the terom@52: # graphs generated by dot. A depth value of 3 means that only nodes reachable terom@52: # from the root by following a path via at most 3 edges will be shown. Nodes terom@52: # that lay further from the root node will be omitted. Note that setting this terom@52: # option to 1 or 2 may greatly reduce the computation time needed for large terom@52: # code bases. Also note that the size of a graph can be further restricted by terom@52: # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. terom@52: terom@52: MAX_DOT_GRAPH_DEPTH = 0 terom@52: terom@52: # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent terom@52: # background. This is enabled by default, which results in a transparent terom@52: # background. Warning: Depending on the platform used, enabling this option terom@52: # may lead to badly anti-aliased labels on the edges of a graph (i.e. they terom@52: # become hard to read). terom@52: terom@52: DOT_TRANSPARENT = YES terom@52: terom@52: # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output terom@52: # files in one run (i.e. multiple -o and -T options on the command line). This terom@52: # makes dot run faster, but since only newer versions of dot (>1.8.10) terom@52: # support this, this feature is disabled by default. terom@52: terom@52: DOT_MULTI_TARGETS = NO terom@52: terom@52: # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will terom@52: # generate a legend page explaining the meaning of the various boxes and terom@52: # arrows in the dot generated graphs. terom@52: terom@52: GENERATE_LEGEND = YES terom@52: terom@52: # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will terom@52: # remove the intermediate dot files that are used to generate terom@52: # the various graphs. terom@52: terom@52: DOT_CLEANUP = YES terom@52: terom@52: #--------------------------------------------------------------------------- terom@52: # Configuration::additions related to the search engine terom@52: #--------------------------------------------------------------------------- terom@52: terom@52: # The SEARCHENGINE tag specifies whether or not a search engine should be terom@52: # used. If set to NO the values of all tags below this one will be ignored. terom@52: terom@52: SEARCHENGINE = NO