IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 21031


Ignore:
Timestamp:
Dec 17, 2008, 1:24:40 PM (17 years ago)
Author:
giebink
Message:

Doxygen update

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/nebclient/Doxyfile.in

    r5640 r21031  
    1 # Doxyfile 1.4.2
     1# Doxyfile 1.5.4
    22
    33# This file describes the settings to be used by the documentation system
     
    1515#---------------------------------------------------------------------------
    1616
     17# This tag specifies the encoding used for all characters in the config file that
     18# follow. The default is UTF-8 which is also the encoding used for all text before
     19# the first occurrence of this tag. Doxygen uses libiconv (or the iconv built into
     20# libc) for the transcoding. See http://www.gnu.org/software/libiconv for the list of
     21# possible encodings.
     22
     23DOXYFILE_ENCODING      = UTF-8
     24
    1725# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
    1826# by quotes) that should identify the project.
    1927
    20 PROJECT_NAME           = @PACKAGE_NAME@
     28PROJECT_NAME           = nebclient
    2129
    2230# The PROJECT_NUMBER tag can be used to enter a project or revision number.
     
    2432# if some version control system is used.
    2533
    26 PROJECT_NUMBER         = @PACKAGE_VERSION@
     34PROJECT_NUMBER         = 0.08
    2735
    2836# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
     
    3139# where doxygen was started. If left blank the current directory will be used.
    3240
    33 # @top_builddir@ doesn't work for some reason
    34 OUTPUT_DIRECTORY       = @builddir@/docs
     41OUTPUT_DIRECTORY       = ./docs
    3542
    3643# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
     
    4754# information to generate all constant output in the proper language.
    4855# The default language is English, other supported languages are:
    49 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish,
    50 # Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese,
    51 # Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian,
    52 # Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish,
    53 # Swedish, and Ukrainian.
     56# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
     57# Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian,
     58# Italian, Japanese, Japanese-en (Japanese with English messages), Korean,
     59# Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian,
     60# Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.
    5461
    5562OUTPUT_LANGUAGE        = English
    56 
    57 # This tag can be used to specify the encoding used in the generated output.
    58 # The encoding is not always determined by the language that is chosen,
    59 # but also whether or not the output is meant for Windows or non-Windows users.
    60 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
    61 # forces the Windows encoding (this is the default for the Windows binary),
    62 # whereas setting the tag to NO uses a Unix-style encoding (the default for
    63 # all platforms other than Windows).
    64 
    65 USE_WINDOWS_ENCODING   = NO
    6663
    6764# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
     
    137134# will interpret the first line (until the first dot) of a JavaDoc-style
    138135# comment as the brief description. If set to NO, the JavaDoc
    139 # comments will behave just like the Qt-style comments (thus requiring an
    140 # explicit @brief command for a brief description.
     136# comments will behave just like regular Qt-style comments
     137# (thus requiring an explicit @brief command for a brief description.)
    141138
    142139JAVADOC_AUTOBRIEF      = NO
     140
     141# If the QT_AUTOBRIEF tag is set to YES then Doxygen will
     142# interpret the first line (until the first dot) of a Qt-style
     143# comment as the brief description. If set to NO, the comments
     144# will behave just like regular Qt-style comments (thus requiring
     145# an explicit \brief command for a brief description.)
     146
     147QT_AUTOBRIEF           = NO
    143148
    144149# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
     
    162167
    163168INHERIT_DOCS           = YES
    164 
    165 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
    166 # tag is set to YES, then doxygen will reuse the documentation of the first
    167 # member in the group (if any) for the other members of the group. By default
    168 # all members of a group must be documented explicitly.
    169 
    170 DISTRIBUTE_GROUP_DOC   = NO
    171169
    172170# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
     
    197195OPTIMIZE_OUTPUT_FOR_C  = NO
    198196
    199 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources
    200 # only. Doxygen will then generate output that is more tailored for Java.
     197# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
     198# sources only. Doxygen will then generate output that is more tailored for Java.
    201199# For instance, namespaces will be presented as packages, qualified scopes
    202200# will look different, etc.
    203201
    204202OPTIMIZE_OUTPUT_JAVA   = NO
     203
     204# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to
     205# include (a tag file for) the STL sources as input, then you should
     206# set this tag to YES in order to let doxygen match functions declarations and
     207# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
     208# func(std::string) {}). This also make the inheritance and collaboration
     209# diagrams that involve STL classes more complete and accurate.
     210
     211BUILTIN_STL_SUPPORT    = NO
     212
     213# If you use Microsoft's C++/CLI language, you should set this option to YES to
     214# enable parsing support.
     215
     216CPP_CLI_SUPPORT        = NO
     217
     218# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
     219# Doxygen will parse them like normal C++ but will assume all classes use public
     220# instead of private inheritance when no explicit protection keyword is present.
     221
     222SIP_SUPPORT            = NO
     223
     224# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
     225# tag is set to YES, then doxygen will reuse the documentation of the first
     226# member in the group (if any) for the other members of the group. By default
     227# all members of a group must be documented explicitly.
     228
     229DISTRIBUTE_GROUP_DOC   = NO
    205230
    206231# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
     
    212237SUBGROUPING            = YES
    213238
     239# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct (or union) is
     240# documented as struct with the name of the typedef. So
     241# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
     242# with name TypeT. When disabled the typedef will appear as a member of a file,
     243# namespace, or class. And the struct will be named TypeS. This can typically
     244# be useful for C code where the coding convention is that all structs are
     245# typedef'ed and only the typedef is referenced never the struct's name.
     246
     247TYPEDEF_HIDES_STRUCT   = NO
     248
    214249#---------------------------------------------------------------------------
    215250# Build related configuration options
     
    245280
    246281EXTRACT_LOCAL_METHODS  = NO
     282
     283# If this flag is set to YES, the members of anonymous namespaces will be extracted
     284# and appear in the documentation as a namespace called 'anonymous_namespace{file}',
     285# where file will be replaced with the base name of the file that contains the anonymous
     286# namespace. By default anonymous namespace are hidden.
     287
     288EXTRACT_ANON_NSPACES   = NO
    247289
    248290# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
     
    378420# If the sources in your project are distributed over multiple directories
    379421# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
    380 # in the documentation.
     422# in the documentation. The default is NO.
    381423
    382424SHOW_DIRECTORIES       = YES
     
    387429# popen()) the command <command> <input-file>, where <command> is the value of
    388430# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
    389 # provided by doxygen. Whatever the progam writes to standard output
     431# provided by doxygen. Whatever the program writes to standard output
    390432# is used as the file version. See the manual for examples.
    391433
     
    435477# be obtained via FILE_VERSION_FILTER)
    436478
    437 WARN_FORMAT            = "$file:$line: $text"
     479WARN_FORMAT            = "$file:$line: $text "
    438480
    439481# The WARN_LOGFILE tag can be used to specify a file to which warning
     
    452494# with spaces.
    453495
    454 INPUT                  = @top_srcdir@/src
     496INPUT                  = ./src
     497
     498# This tag can be used to specify the character encoding of the source files that
     499# doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default
     500# input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding.
     501# See http://www.gnu.org/software/libiconv for the list of possible encodings.
     502
     503INPUT_ENCODING         = UTF-8
    455504
    456505# If the value of the INPUT tag contains directories, you can use the
     
    459508# blank the following patterns are tested:
    460509# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
    461 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
     510# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
    462511
    463512FILE_PATTERNS          = *.h
     
    483532# If the value of the INPUT tag contains directories, you can use the
    484533# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
    485 # certain files from those directories.
     534# certain files from those directories. Note that the wildcards are matched
     535# against the file with absolute path, so to exclude all test directories
     536# for example use the pattern */test/*
    486537
    487538EXCLUDE_PATTERNS       =
     539
     540# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
     541# (namespaces, classes, functions, etc.) that should be excluded from the output.
     542# The symbol name can be a fully qualified name, a word, or if the wildcard * is used,
     543# a substring. Examples: ANamespace, AClass, AClass::ANamespace, ANamespace::*Test
     544
     545EXCLUDE_SYMBOLS        =
    488546
    489547# The EXAMPLE_PATH tag can be used to specify one or more files or
     
    545603# be generated. Documented entities will be cross-referenced with these sources.
    546604# Note: To get rid of all source code in the generated output, make sure also
    547 # VERBATIM_HEADERS is set to NO.
     605# VERBATIM_HEADERS is set to NO. If you have enabled CALL_GRAPH or CALLER_GRAPH
     606# then you must also enable this option. If you don't then doxygen will produce
     607# a warning and turn it on anyway
    548608
    549609SOURCE_BROWSER         = NO
     
    571631
    572632REFERENCES_RELATION    = YES
     633
     634# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
     635# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
     636# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
     637# link to the source code.  Otherwise they will link to the documentstion.
     638
     639REFERENCES_LINK_SOURCE = YES
     640
     641# If the USE_HTAGS tag is set to YES then the references to source code
     642# will point to the HTML generated by the htags(1) tool instead of doxygen
     643# built-in source browser. The htags tool is part of GNU's global source
     644# tagging system (see http://www.gnu.org/software/global/global.html). You
     645# will need version 4.8.6 or higher.
     646
     647USE_HTAGS              = NO
    573648
    574649# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
     
    656731GENERATE_HTMLHELP      = NO
    657732
     733# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
     734# documentation will contain sections that can be hidden and shown after the
     735# page has loaded. For this to work a browser that supports
     736# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
     737# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
     738
     739HTML_DYNAMIC_SECTIONS  = NO
     740
    658741# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
    659742# be used to specify the file name of the resulting .chm file. You
     
    9581041# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
    9591042# then the macro expansion is limited to the macros specified with the
    960 # PREDEFINED and EXPAND_AS_PREDEFINED tags.
     1043# PREDEFINED and EXPAND_AS_DEFINED tags.
    9611044
    9621045EXPAND_ONLY_PREDEF     = NO
     
    10461129# interpreter (i.e. the result of `which perl').
    10471130
    1048 PERL_PATH              = @PERL@
     1131PERL_PATH              = /usr/bin/perl
    10491132
    10501133#---------------------------------------------------------------------------
     
    10611144CLASS_DIAGRAMS         = YES
    10621145
     1146# You can define message sequence charts within doxygen comments using the \msc
     1147# command. Doxygen will then run the mscgen tool (see http://www.mcternan.me.uk/mscgen/) to
     1148# produce the chart and insert it in the documentation. The MSCGEN_PATH tag allows you to
     1149# specify the directory where the mscgen tool resides. If left empty the tool is assumed to
     1150# be found in the default search path.
     1151
     1152MSCGEN_PATH            =
     1153
    10631154# If set to YES, the inheritance and collaboration graphs will hide
    10641155# inheritance and usage relations if the target is undocumented
     
    11181209INCLUDED_BY_GRAPH      = YES
    11191210
    1120 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
     1211# If the CALL_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will
    11211212# generate a call dependency graph for every global function or class method.
    11221213# Note that enabling this option will significantly increase the time of a run.
     
    11261217CALL_GRAPH             = NO
    11271218
     1219# If the CALLER_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will
     1220# generate a caller dependency graph for every global function or class method.
     1221# Note that enabling this option will significantly increase the time of a run.
     1222# So in most cases it will be better to enable caller graphs for selected
     1223# functions only using the \callergraph command.
     1224
     1225CALLER_GRAPH           = NO
     1226
    11281227# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
    11291228# will graphical hierarchy of all classes instead of a textual one.
     
    11551254DOTFILE_DIRS           =
    11561255
    1157 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width
    1158 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
    1159 # this value, doxygen will try to truncate the graph, so that it fits within
    1160 # the specified constraint. Beware that most browsers cannot cope with very
    1161 # large images.
    1162 
    1163 MAX_DOT_GRAPH_WIDTH    = 1024
    1164 
    1165 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height
    1166 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
    1167 # this value, doxygen will try to truncate the graph, so that it fits within
    1168 # the specified constraint. Beware that most browsers cannot cope with very
    1169 # large images.
    1170 
    1171 MAX_DOT_GRAPH_HEIGHT   = 1024
     1256# The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
     1257# nodes that will be shown in the graph. If the number of nodes in a graph
     1258# becomes larger than this value, doxygen will truncate the graph, which is
     1259# visualized by representing a node as a red box. Note that doxygen if the number
     1260# of direct children of the root node in a graph is already larger than
     1261# MAX_DOT_GRAPH_NOTES then the graph will not be shown at all. Also note
     1262# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
     1263
     1264DOT_GRAPH_MAX_NODES    = 50
    11721265
    11731266# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
     
    11761269# that lay further from the root node will be omitted. Note that setting this
    11771270# option to 1 or 2 may greatly reduce the computation time needed for large
    1178 # code bases. Also note that a graph may be further truncated if the graph's
    1179 # image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH
    1180 # and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default),
    1181 # the graph is not depth-constrained.
     1271# code bases. Also note that the size of a graph can be further restricted by
     1272# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
    11821273
    11831274MAX_DOT_GRAPH_DEPTH    = 0
  • trunk/psLib/Doxyfile.in

    r8964 r21031  
    1 # Doxyfile 1.3.4
     1# Doxyfile 1.5.4
    22
    33# This file describes the settings to be used by the documentation system
     
    1515#---------------------------------------------------------------------------
    1616
    17 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
     17# This tag specifies the encoding used for all characters in the config file that
     18# follow. The default is UTF-8 which is also the encoding used for all text before
     19# the first occurrence of this tag. Doxygen uses libiconv (or the iconv built into
     20# libc) for the transcoding. See http://www.gnu.org/software/libiconv for the list of
     21# possible encodings.
     22
     23DOXYFILE_ENCODING      = UTF-8
     24
     25# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
    1826# by quotes) that should identify the project.
    1927
    20 PROJECT_NAME           = @PACKAGE_NAME@
    21 
    22 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
    23 # This could be handy for archiving the generated documentation or
     28PROJECT_NAME           = pslib
     29
     30# The PROJECT_NUMBER tag can be used to enter a project or revision number. 
     31# This could be handy for archiving the generated documentation or 
    2432# if some version control system is used.
    2533
    26 PROJECT_NUMBER         = @VERSION@
    27 
    28 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
    29 # base path where the generated documentation will be put.
    30 # If a relative path is entered, it will be relative to the location
     34PROJECT_NUMBER         = 1.1.1
     35
     36# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
     37# base path where the generated documentation will be put. 
     38# If a relative path is entered, it will be relative to the location 
    3139# where doxygen was started. If left blank the current directory will be used.
    3240
    33 # @top_builddir@ doesn't work for some reason
    34 OUTPUT_DIRECTORY       = @builddir@/docs
    35 
    36 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
    37 # documentation generated by doxygen is written. Doxygen will use this
    38 # information to generate all constant output in the proper language.
    39 # The default language is English, other supported languages are:
    40 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch,
    41 # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en
    42 # (Japanese with English messages), Korean, Norwegian, Polish, Portuguese,
    43 # Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.
     41OUTPUT_DIRECTORY       = ./docs
     42
     43# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
     44# 4096 sub-directories (in 2 levels) under the output directory of each output
     45# format and will distribute the generated files over these directories.
     46# Enabling this option can be useful when feeding doxygen a huge amount of
     47# source files, where putting all generated files in the same directory would
     48# otherwise cause performance problems for the file system.
     49
     50CREATE_SUBDIRS         = NO
     51
     52# The OUTPUT_LANGUAGE tag is used to specify the language in which all
     53# documentation generated by doxygen is written. Doxygen will use this
     54# information to generate all constant output in the proper language.
     55# The default language is English, other supported languages are:
     56# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
     57# Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian,
     58# Italian, Japanese, Japanese-en (Japanese with English messages), Korean,
     59# Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian,
     60# Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.
    4461
    4562OUTPUT_LANGUAGE        = English
    4663
    47 # This tag can be used to specify the encoding used in the generated output.
    48 # The encoding is not always determined by the language that is chosen,
    49 # but also whether or not the output is meant for Windows or non-Windows users.
    50 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
    51 # forces the Windows encoding (this is the default for the Windows binary),
    52 # whereas setting the tag to NO uses a Unix-style encoding (the default for
    53 # all platforms other than Windows).
    54 
    55 USE_WINDOWS_ENCODING   = NO
    56 
    57 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
    58 # include brief member descriptions after the members that are listed in
    59 # the file and class documentation (similar to JavaDoc).
     64# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
     65# include brief member descriptions after the members that are listed in
     66# the file and class documentation (similar to JavaDoc).
    6067# Set to NO to disable this.
    6168
    6269BRIEF_MEMBER_DESC      = YES
    6370
    64 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
    65 # the brief description of a member or function before the detailed description.
    66 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
     71# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 
     72# the brief description of a member or function before the detailed description. 
     73# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 
    6774# brief descriptions will be completely suppressed.
    6875
    6976REPEAT_BRIEF           = YES
    7077
    71 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
    72 # Doxygen will generate a detailed section even if there is only a brief
     78# This tag implements a quasi-intelligent brief description abbreviator
     79# that is used to form the text in various listings. Each string
     80# in this list, if found as the leading text of the brief description, will be
     81# stripped from the text and the result after processing the whole list, is
     82# used as the annotated text. Otherwise, the brief description is used as-is.
     83# If left blank, the following values are used ("$name" is automatically
     84# replaced with the name of the entity): "The $name class" "The $name widget"
     85# "The $name file" "is" "provides" "specifies" "contains"
     86# "represents" "a" "an" "the"
     87
     88ABBREVIATE_BRIEF       =
     89
     90# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
     91# Doxygen will generate a detailed section even if there is only a brief
    7392# description.
    7493
    7594ALWAYS_DETAILED_SEC    = YES
    7695
    77 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited
    78 # members of a class in the documentation of that class as if those members were
    79 # ordinary class members. Constructors, destructors and assignment operators of
    80 # the base classes will not be shown.
     96# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
     97# inherited members of a class in the documentation of that class as if those
     98# members were ordinary class members. Constructors, destructors and assignment
     99# operators of the base classes will not be shown.
    81100
    82101INLINE_INHERITED_MEMB  = NO
    83102
    84 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
    85 # path before files name in the file list and in the header files. If set
     103# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 
     104# path before files name in the file list and in the header files. If set 
    86105# to NO the shortest path that makes the file name unique will be used.
    87106
    88107FULL_PATH_NAMES        = NO
    89108
    90 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
    91 # can be used to strip a user-defined part of the path. Stripping is
    92 # only done if one of the specified strings matches the left-hand part of
    93 # the path. It is allowed to use relative paths in the argument list.
    94 
    95 STRIP_FROM_PATH        =
    96 
    97 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
    98 # (but less readable) file names. This can be useful is your file systems
     109# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
     110# can be used to strip a user-defined part of the path. Stripping is
     111# only done if one of the specified strings matches the left-hand part of
     112# the path. The tag can be used to show relative paths in the file list.
     113# If left blank the directory from which doxygen is run is used as the
     114# path to strip.
     115
     116STRIP_FROM_PATH        =
     117
     118# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
     119# the path mentioned in the documentation of a class, which tells
     120# the reader which header file to include in order to use a class.
     121# If left blank only the name of the header file containing the class
     122# definition is used. Otherwise one should specify the include paths that
     123# are normally passed to the compiler using the -I flag.
     124
     125STRIP_FROM_INC_PATH    =
     126
     127# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
     128# (but less readable) file names. This can be useful is your file systems
    99129# doesn't support long names like on DOS, Mac, or CD-ROM.
    100130
    101131SHORT_NAMES            = NO
    102132
    103 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
    104 # will interpret the first line (until the first dot) of a JavaDoc-style
    105 # comment as the brief description. If set to NO, the JavaDoc
    106 # comments will behave just like the Qt-style comments (thus requiring an
    107 # explict @brief command for a brief description.
     133# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 
     134# will interpret the first line (until the first dot) of a JavaDoc-style 
     135# comment as the brief description. If set to NO, the JavaDoc 
     136# comments will behave just like regular Qt-style comments
     137# (thus requiring an explicit @brief command for a brief description.)
    108138
    109139JAVADOC_AUTOBRIEF      = YES
    110140
    111 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
    112 # treat a multi-line C++ special comment block (i.e. a block of //! or ///
    113 # comments) as a brief description. This used to be the default behaviour.
    114 # The new default is to treat a multi-line C++ comment block as a detailed
     141# If the QT_AUTOBRIEF tag is set to YES then Doxygen will
     142# interpret the first line (until the first dot) of a Qt-style
     143# comment as the brief description. If set to NO, the comments
     144# will behave just like regular Qt-style comments (thus requiring
     145# an explicit \brief command for a brief description.)
     146
     147QT_AUTOBRIEF           = NO
     148
     149# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
     150# treat a multi-line C++ special comment block (i.e. a block of //! or ///
     151# comments) as a brief description. This used to be the default behaviour.
     152# The new default is to treat a multi-line C++ comment block as a detailed
    115153# description. Set this tag to YES if you prefer the old behaviour instead.
    116154
    117155MULTILINE_CPP_IS_BRIEF = NO
    118156
    119 # If the DETAILS_AT_TOP tag is set to YES then Doxygen
     157# If the DETAILS_AT_TOP tag is set to YES then Doxygen 
    120158# will output the detailed description near the top, like JavaDoc.
    121 # If set to NO, the detailed description appears after the member
     159# If set to NO, the detailed description appears after the member 
    122160# documentation.
    123161
    124162DETAILS_AT_TOP         = YES
    125163
    126 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
    127 # member inherits the documentation from any documented member that it
    128 # reimplements.
     164# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 
     165# member inherits the documentation from any documented member that it 
     166# re-implements.
    129167
    130168INHERIT_DOCS           = YES
    131169
    132 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
    133 # tag is set to YES, then doxygen will reuse the documentation of the first
    134 # member in the group (if any) for the other members of the group. By default
     170# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
     171# a new page for each member. If set to NO, the documentation of a member will
     172# be part of the file/class/namespace that contains it.
     173
     174SEPARATE_MEMBER_PAGES  = NO
     175
     176# The TAB_SIZE tag can be used to set the number of spaces in a tab.
     177# Doxygen uses this value to replace tabs by spaces in code fragments.
     178
     179TAB_SIZE               = 4
     180
     181# This tag can be used to specify a number of aliases that acts
     182# as commands in the documentation. An alias has the form "name=value".
     183# For example adding "sideeffect=\par Side Effects:\n" will allow you to
     184# put the command \sideeffect (or @sideeffect) in the documentation, which
     185# will result in a user-defined paragraph with heading "Side Effects:".
     186# You can put \n's in the value part of an alias to insert newlines.
     187
     188ALIASES                =
     189
     190# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
     191# sources only. Doxygen will then generate output that is more tailored for C.
     192# For instance, some of the names that are used will be different. The list
     193# of all members will be omitted, etc.
     194
     195OPTIMIZE_OUTPUT_FOR_C  = YES
     196
     197# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
     198# sources only. Doxygen will then generate output that is more tailored for Java.
     199# For instance, namespaces will be presented as packages, qualified scopes
     200# will look different, etc.
     201
     202OPTIMIZE_OUTPUT_JAVA   = NO
     203
     204# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to
     205# include (a tag file for) the STL sources as input, then you should
     206# set this tag to YES in order to let doxygen match functions declarations and
     207# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
     208# func(std::string) {}). This also make the inheritance and collaboration
     209# diagrams that involve STL classes more complete and accurate.
     210
     211BUILTIN_STL_SUPPORT    = NO
     212
     213# If you use Microsoft's C++/CLI language, you should set this option to YES to
     214# enable parsing support.
     215
     216CPP_CLI_SUPPORT        = NO
     217
     218# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
     219# Doxygen will parse them like normal C++ but will assume all classes use public
     220# instead of private inheritance when no explicit protection keyword is present.
     221
     222SIP_SUPPORT            = NO
     223
     224# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
     225# tag is set to YES, then doxygen will reuse the documentation of the first
     226# member in the group (if any) for the other members of the group. By default
    135227# all members of a group must be documented explicitly.
    136228
    137229DISTRIBUTE_GROUP_DOC   = NO
    138230
    139 # The TAB_SIZE tag can be used to set the number of spaces in a tab.
    140 # Doxygen uses this value to replace tabs by spaces in code fragments.
    141 
    142 TAB_SIZE               = 4
    143 
    144 # This tag can be used to specify a number of aliases that acts
    145 # as commands in the documentation. An alias has the form "name=value".
    146 # For example adding "sideeffect=\par Side Effects:\n" will allow you to
    147 # put the command \sideeffect (or @sideeffect) in the documentation, which
    148 # will result in a user-defined paragraph with heading "Side Effects:".
    149 # You can put \n's in the value part of an alias to insert newlines.
    150 
    151 ALIASES                =
    152 
    153 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
    154 # only. Doxygen will then generate output that is more tailored for C.
    155 # For instance, some of the names that are used will be different. The list
    156 # of all members will be omitted, etc.
    157 
    158 OPTIMIZE_OUTPUT_FOR_C  = YES
    159 
    160 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources
    161 # only. Doxygen will then generate output that is more tailored for Java.
    162 # For instance, namespaces will be presented as packages, qualified scopes
    163 # will look different, etc.
    164 
    165 OPTIMIZE_OUTPUT_JAVA   = NO
    166 
    167 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
    168 # the same type (for instance a group of public functions) to be put as a
    169 # subgroup of that type (e.g. under the Public Functions section). Set it to
    170 # NO to prevent subgrouping. Alternatively, this can be done per class using
     231# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
     232# the same type (for instance a group of public functions) to be put as a
     233# subgroup of that type (e.g. under the Public Functions section). Set it to
     234# NO to prevent subgrouping. Alternatively, this can be done per class using
    171235# the \nosubgrouping command.
    172236
    173237SUBGROUPING            = NO
    174238
     239# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct (or union) is
     240# documented as struct with the name of the typedef. So
     241# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
     242# with name TypeT. When disabled the typedef will appear as a member of a file,
     243# namespace, or class. And the struct will be named TypeS. This can typically
     244# be useful for C code where the coding convention is that all structs are
     245# typedef'ed and only the typedef is referenced never the struct's name.
     246
     247TYPEDEF_HIDES_STRUCT   = NO
     248
    175249#---------------------------------------------------------------------------
    176250# Build related configuration options
    177251#---------------------------------------------------------------------------
    178252
    179 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
    180 # documentation are documented, even if no documentation was available.
    181 # Private class members and static file members will be hidden unless
     253# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 
     254# documentation are documented, even if no documentation was available. 
     255# Private class members and static file members will be hidden unless 
    182256# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
    183257
    184258EXTRACT_ALL            = YES
    185259
    186 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
     260# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 
    187261# will be included in the documentation.
    188262
    189263EXTRACT_PRIVATE        = NO
    190264
    191 # If the EXTRACT_STATIC tag is set to YES all static members of a file
     265# If the EXTRACT_STATIC tag is set to YES all static members of a file 
    192266# will be included in the documentation.
    193267
    194268EXTRACT_STATIC         = NO
    195269
    196 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
    197 # defined locally in source files will be included in the documentation.
     270# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 
     271# defined locally in source files will be included in the documentation. 
    198272# If set to NO only classes defined in header files are included.
    199273
    200274EXTRACT_LOCAL_CLASSES  = NO
    201275
    202 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
    203 # undocumented members of documented classes, files or namespaces.
    204 # If set to NO (the default) these members will be included in the
    205 # various overviews, but no documentation section is generated.
     276# This flag is only useful for Objective-C code. When set to YES local
     277# methods, which are defined in the implementation section but not in
     278# the interface are included in the documentation.
     279# If set to NO (the default) only methods in the interface are included.
     280
     281EXTRACT_LOCAL_METHODS  = NO
     282
     283# If this flag is set to YES, the members of anonymous namespaces will be extracted
     284# and appear in the documentation as a namespace called 'anonymous_namespace{file}',
     285# where file will be replaced with the base name of the file that contains the anonymous
     286# namespace. By default anonymous namespace are hidden.
     287
     288EXTRACT_ANON_NSPACES   = NO
     289
     290# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
     291# undocumented members of documented classes, files or namespaces.
     292# If set to NO (the default) these members will be included in the
     293# various overviews, but no documentation section is generated.
    206294# This option has no effect if EXTRACT_ALL is enabled.
    207295
    208296HIDE_UNDOC_MEMBERS     = NO
    209297
    210 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
    211 # undocumented classes that are normally visible in the class hierarchy.
    212 # If set to NO (the default) these classes will be included in the various
     298# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 
     299# undocumented classes that are normally visible in the class hierarchy. 
     300# If set to NO (the default) these classes will be included in the various 
    213301# overviews. This option has no effect if EXTRACT_ALL is enabled.
    214302
    215303HIDE_UNDOC_CLASSES     = NO
    216304
    217 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
    218 # friend (class|struct|union) declarations.
    219 # If set to NO (the default) these declarations will be included in the
     305# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 
     306# friend (class|struct|union) declarations. 
     307# If set to NO (the default) these declarations will be included in the 
    220308# documentation.
    221309
    222310HIDE_FRIEND_COMPOUNDS  = NO
    223311
    224 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
    225 # documentation blocks found inside the body of a function.
    226 # If set to NO (the default) these blocks will be appended to the
     312# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 
     313# documentation blocks found inside the body of a function. 
     314# If set to NO (the default) these blocks will be appended to the 
    227315# function's detailed documentation block.
    228316
    229317HIDE_IN_BODY_DOCS      = NO
    230318
    231 # The INTERNAL_DOCS tag determines if documentation
    232 # that is typed after a \internal command is included. If the tag is set
    233 # to NO (the default) then the documentation will be excluded.
     319# The INTERNAL_DOCS tag determines if documentation 
     320# that is typed after a \internal command is included. If the tag is set 
     321# to NO (the default) then the documentation will be excluded. 
    234322# Set it to YES to include the internal documentation.
    235323
    236324INTERNAL_DOCS          = NO
    237325
    238 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
    239 # file names in lower-case letters. If set to YES upper-case letters are also
    240 # allowed. This is useful if you have classes or files whose names only differ
    241 # in case and if your file system supports case sensitive file names. Windows
    242 # users are advised to set this option to NO.
     326# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 
     327# file names in lower-case letters. If set to YES upper-case letters are also 
     328# allowed. This is useful if you have classes or files whose names only differ 
     329# in case and if your file system supports case sensitive file names. Windows 
     330# and Mac users are advised to set this option to NO.
    243331
    244332CASE_SENSE_NAMES       = YES
    245333
    246 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
    247 # will show members with their full class and namespace scopes in the
     334# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 
     335# will show members with their full class and namespace scopes in the 
    248336# documentation. If set to YES the scope will be hidden.
    249337
    250338HIDE_SCOPE_NAMES       = NO
    251339
    252 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
    253 # will put a list of the files that are included by a file in the documentation
     340# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 
     341# will put a list of the files that are included by a file in the documentation 
    254342# of that file.
    255343
    256344SHOW_INCLUDE_FILES     = YES
    257345
    258 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
     346# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 
    259347# is inserted in the documentation for inline members.
    260348
    261349INLINE_INFO            = YES
    262350
    263 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
    264 # will sort the (detailed) documentation of file and class members
    265 # alphabetically by member name. If set to NO the members will appear in
     351# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 
     352# will sort the (detailed) documentation of file and class members 
     353# alphabetically by member name. If set to NO the members will appear in 
    266354# declaration order.
    267355
    268356SORT_MEMBER_DOCS       = YES
    269357
    270 # The GENERATE_TODOLIST tag can be used to enable (YES) or
    271 # disable (NO) the todo list. This list is created by putting \todo
     358# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
     359# brief documentation of file, namespace and class members alphabetically
     360# by member name. If set to NO (the default) the members will appear in
     361# declaration order.
     362
     363SORT_BRIEF_DOCS        = NO
     364
     365# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
     366# sorted by fully-qualified names, including namespaces. If set to
     367# NO (the default), the class list will be sorted only by class name,
     368# not including the namespace part.
     369# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
     370# Note: This option applies only to the class list, not to the
     371# alphabetical list.
     372
     373SORT_BY_SCOPE_NAME     = NO
     374
     375# The GENERATE_TODOLIST tag can be used to enable (YES) or
     376# disable (NO) the todo list. This list is created by putting \todo
    272377# commands in the documentation.
    273378
    274379GENERATE_TODOLIST      = YES
    275380
    276 # The GENERATE_TESTLIST tag can be used to enable (YES) or
    277 # disable (NO) the test list. This list is created by putting \test
     381# The GENERATE_TESTLIST tag can be used to enable (YES) or 
     382# disable (NO) the test list. This list is created by putting \test 
    278383# commands in the documentation.
    279384
    280385GENERATE_TESTLIST      = YES
    281386
    282 # The GENERATE_BUGLIST tag can be used to enable (YES) or
    283 # disable (NO) the bug list. This list is created by putting \bug
     387# The GENERATE_BUGLIST tag can be used to enable (YES) or 
     388# disable (NO) the bug list. This list is created by putting \bug 
    284389# commands in the documentation.
    285390
    286391GENERATE_BUGLIST       = YES
    287392
    288 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
    289 # disable (NO) the deprecated list. This list is created by putting
     393# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 
     394# disable (NO) the deprecated list. This list is created by putting 
    290395# \deprecated commands in the documentation.
    291396
    292397GENERATE_DEPRECATEDLIST= YES
    293398
    294 # The ENABLED_SECTIONS tag can be used to enable conditional
     399# The ENABLED_SECTIONS tag can be used to enable conditional 
    295400# documentation sections, marked by \if sectionname ... \endif.
    296401
    297 ENABLED_SECTIONS       =
    298 
    299 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines
    300 # the initial value of a variable or define consists of for it to appear in
    301 # the documentation. If the initializer consists of more lines than specified
    302 # here it will be hidden. Use a value of 0 to hide initializers completely.
    303 # The appearance of the initializer of individual variables and defines in the
    304 # documentation can be controlled using \showinitializer or \hideinitializer
     402ENABLED_SECTIONS       = 
     403
     404# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 
     405# the initial value of a variable or define consists of for it to appear in 
     406# the documentation. If the initializer consists of more lines than specified 
     407# here it will be hidden. Use a value of 0 to hide initializers completely. 
     408# The appearance of the initializer of individual variables and defines in the 
     409# documentation can be controlled using \showinitializer or \hideinitializer 
    305410# command in the documentation regardless of this setting.
    306411
    307412MAX_INITIALIZER_LINES  = 30
    308413
    309 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated
    310 # at the bottom of the documentation of classes and structs. If set to YES the
     414# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 
     415# at the bottom of the documentation of classes and structs. If set to YES the 
    311416# list will mention the files that were used to generate the documentation.
    312417
    313418SHOW_USED_FILES        = YES
    314419
     420# If the sources in your project are distributed over multiple directories
     421# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
     422# in the documentation. The default is NO.
     423
     424SHOW_DIRECTORIES       = NO
     425
     426# The FILE_VERSION_FILTER tag can be used to specify a program or script that
     427# doxygen should invoke to get the current version for each file (typically from the
     428# version control system). Doxygen will invoke the program by executing (via
     429# popen()) the command <command> <input-file>, where <command> is the value of
     430# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
     431# provided by doxygen. Whatever the program writes to standard output
     432# is used as the file version. See the manual for examples.
     433
     434FILE_VERSION_FILTER    =
     435
    315436#---------------------------------------------------------------------------
    316437# configuration options related to warning and progress messages
    317438#---------------------------------------------------------------------------
    318439
    319 # The QUIET tag can be used to turn on/off the messages that are generated
     440# The QUIET tag can be used to turn on/off the messages that are generated 
    320441# by doxygen. Possible values are YES and NO. If left blank NO is used.
    321442
    322443QUIET                  = NO
    323444
    324 # The WARNINGS tag can be used to turn on/off the warning messages that are
    325 # generated by doxygen. Possible values are YES and NO. If left blank
     445# The WARNINGS tag can be used to turn on/off the warning messages that are 
     446# generated by doxygen. Possible values are YES and NO. If left blank 
    326447# NO is used.
    327448
    328449WARNINGS               = YES
    329450
    330 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
    331 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will
     451# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 
     452# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 
    332453# automatically be disabled.
    333454
    334455WARN_IF_UNDOCUMENTED   = YES
    335456
    336 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
    337 # potential errors in the documentation, such as not documenting some
    338 # parameters in a documented function, or documenting parameters that
     457# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 
     458# potential errors in the documentation, such as not documenting some 
     459# parameters in a documented function, or documenting parameters that 
    339460# don't exist or using markup commands wrongly.
    340461
    341462WARN_IF_DOC_ERROR      = YES
    342463
    343 # The WARN_FORMAT tag determines the format of the warning messages that
    344 # doxygen can produce. The string should contain the $file, $line, and $text
    345 # tags, which will be replaced by the file and line number from which the
    346 # warning originated and the warning text.
    347 
    348 WARN_FORMAT            = "$file:$line: $text"
    349 
    350 # The WARN_LOGFILE tag can be used to specify a file to which warning
    351 # and error messages should be written. If left blank the output is written
     464# This WARN_NO_PARAMDOC option can be abled to get warnings for
     465# functions that are documented, but have no documentation for their parameters
     466# or return value. If set to NO (the default) doxygen will only warn about
     467# wrong or incomplete parameter documentation, but not about the absence of
     468# documentation.
     469
     470WARN_NO_PARAMDOC       = NO
     471
     472# The WARN_FORMAT tag determines the format of the warning messages that
     473# doxygen can produce. The string should contain the $file, $line, and $text
     474# tags, which will be replaced by the file and line number from which the
     475# warning originated and the warning text. Optionally the format may contain
     476# $version, which will be replaced by the version of the file (if it could
     477# be obtained via FILE_VERSION_FILTER)
     478
     479WARN_FORMAT            = "$file:$line: $text "
     480
     481# The WARN_LOGFILE tag can be used to specify a file to which warning
     482# and error messages should be written. If left blank the output is written
    352483# to stderr.
    353484
     
    358489#---------------------------------------------------------------------------
    359490
    360 # The INPUT tag can be used to specify the files and/or directories that contain
    361 # documented source files. You may enter file names like "myfile.cpp" or
    362 # directories like "/usr/src/myproject". Separate the files or directories
     491# The INPUT tag can be used to specify the files and/or directories that contain 
     492# documented source files. You may enter file names like "myfile.cpp" or 
     493# directories like "/usr/src/myproject". Separate the files or directories 
    363494# with spaces.
    364495
    365 INPUT                  = @top_srcdir@/src
    366 
    367 # If the value of the INPUT tag contains directories, you can use the
    368 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
    369 # and *.h) to filter out the source-files in the directories. If left
    370 # blank the following patterns are tested:
    371 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp
    372 # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc
    373 
    374 FILE_PATTERNS          = *.h *.dox
    375 
    376 # The RECURSIVE tag can be used to turn specify whether or not subdirectories
    377 # should be searched for input files as well. Possible values are YES and NO.
     496INPUT                  = ./src
     497
     498# This tag can be used to specify the character encoding of the source files that
     499# doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default
     500# input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding.
     501# See http://www.gnu.org/software/libiconv for the list of possible encodings.
     502
     503INPUT_ENCODING         = UTF-8
     504
     505# If the value of the INPUT tag contains directories, you can use the
     506# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
     507# and *.h) to filter out the source-files in the directories. If left
     508# blank the following patterns are tested:
     509# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
     510# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
     511
     512FILE_PATTERNS          = *.h \
     513                         *.dox
     514
     515# The RECURSIVE tag can be used to turn specify whether or not subdirectories
     516# should be searched for input files as well. Possible values are YES and NO.
    378517# If left blank NO is used.
    379518
    380519RECURSIVE              = YES
    381520
    382 # The EXCLUDE tag can be used to specify files and/or directories that should
    383 # excluded from the INPUT source files. This way you can easily exclude a
     521# The EXCLUDE tag can be used to specify files and/or directories that should 
     522# excluded from the INPUT source files. This way you can easily exclude a 
    384523# subdirectory from a directory tree whose root is specified with the INPUT tag.
    385524
    386 EXCLUDE                =
    387 
    388 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories
    389 # that are symbolic links (a Unix filesystem feature) are excluded from the input.
     525EXCLUDE                =
     526
     527# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
     528# directories that are symbolic links (a Unix filesystem feature) are excluded
     529# from the input.
    390530
    391531EXCLUDE_SYMLINKS       = NO
    392532
    393 # If the value of the INPUT tag contains directories, you can use the
    394 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
    395 # certain files from those directories.
     533# If the value of the INPUT tag contains directories, you can use the
     534# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
     535# certain files from those directories. Note that the wildcards are matched
     536# against the file with absolute path, so to exclude all test directories
     537# for example use the pattern */test/*
    396538
    397539EXCLUDE_PATTERNS       = *_wrap.c
    398540
    399 # The EXAMPLE_PATH tag can be used to specify one or more files or
    400 # directories that contain example code fragments that are included (see
     541# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
     542# (namespaces, classes, functions, etc.) that should be excluded from the output.
     543# The symbol name can be a fully qualified name, a word, or if the wildcard * is used,
     544# a substring. Examples: ANamespace, AClass, AClass::ANamespace, ANamespace::*Test
     545
     546EXCLUDE_SYMBOLS        =
     547
     548# The EXAMPLE_PATH tag can be used to specify one or more files or
     549# directories that contain example code fragments that are included (see
    401550# the \include command).
    402551
    403 EXAMPLE_PATH           =
    404 
    405 # If the value of the EXAMPLE_PATH tag contains directories, you can use the
    406 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
    407 # and *.h) to filter out the source-files in the directories. If left
     552EXAMPLE_PATH           = 
     553
     554# If the value of the EXAMPLE_PATH tag contains directories, you can use the 
     555# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
     556# and *.h) to filter out the source-files in the directories. If left 
    408557# blank all files are included.
    409558
    410 EXAMPLE_PATTERNS       =
    411 
    412 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
    413 # searched for input files to be used with the \include or \dontinclude
    414 # commands irrespective of the value of the RECURSIVE tag.
     559EXAMPLE_PATTERNS       = 
     560
     561# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 
     562# searched for input files to be used with the \include or \dontinclude 
     563# commands irrespective of the value of the RECURSIVE tag. 
    415564# Possible values are YES and NO. If left blank NO is used.
    416565
    417566EXAMPLE_RECURSIVE      = NO
    418567
    419 # The IMAGE_PATH tag can be used to specify one or more files or
    420 # directories that contain image that are included in the documentation (see
     568# The IMAGE_PATH tag can be used to specify one or more files or 
     569# directories that contain image that are included in the documentation (see 
    421570# the \image command).
    422571
    423 IMAGE_PATH             =
    424 
    425 # The INPUT_FILTER tag can be used to specify a program that doxygen should
    426 # invoke to filter for each input file. Doxygen will invoke the filter program
    427 # by executing (via popen()) the command <filter> <input-file>, where <filter>
    428 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an
    429 # input file. Doxygen will then use the output that the filter program writes
    430 # to standard output.
    431 
    432 INPUT_FILTER           =
    433 
    434 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
    435 # INPUT_FILTER) will be used to filter the input files when producing source
     572IMAGE_PATH             =
     573
     574# The INPUT_FILTER tag can be used to specify a program that doxygen should
     575# invoke to filter for each input file. Doxygen will invoke the filter program
     576# by executing (via popen()) the command <filter> <input-file>, where <filter>
     577# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
     578# input file. Doxygen will then use the output that the filter program writes
     579# to standard output.  If FILTER_PATTERNS is specified, this tag will be
     580# ignored.
     581
     582INPUT_FILTER           =
     583
     584# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
     585# basis.  Doxygen will compare the file name with each pattern and apply the
     586# filter if there is a match.  The filters are a list of the form:
     587# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
     588# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
     589# is applied to all files.
     590
     591FILTER_PATTERNS        =
     592
     593# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
     594# INPUT_FILTER) will be used to filter the input files when producing source
    436595# files to browse (i.e. when SOURCE_BROWSER is set to YES).
    437596
     
    442601#---------------------------------------------------------------------------
    443602
    444 # If the SOURCE_BROWSER tag is set to YES then a list of source files will
    445 # be generated. Documented entities will be cross-referenced with these sources.
     603# If the SOURCE_BROWSER tag is set to YES then a list of source files will
     604# be generated. Documented entities will be cross-referenced with these sources.
     605# Note: To get rid of all source code in the generated output, make sure also
     606# VERBATIM_HEADERS is set to NO. If you have enabled CALL_GRAPH or CALLER_GRAPH
     607# then you must also enable this option. If you don't then doxygen will produce
     608# a warning and turn it on anyway
    446609
    447610SOURCE_BROWSER         = YES
    448611
    449 # Setting the INLINE_SOURCES tag to YES will include the body
     612# Setting the INLINE_SOURCES tag to YES will include the body 
    450613# of functions and classes directly in the documentation.
    451614
    452615INLINE_SOURCES         = NO
    453616
    454 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
    455 # doxygen to hide any special comment blocks from generated source code
     617# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 
     618# doxygen to hide any special comment blocks from generated source code 
    456619# fragments. Normal C and C++ comments will always remain visible.
    457620
    458621STRIP_CODE_COMMENTS    = NO
    459622
    460 # If the REFERENCED_BY_RELATION tag is set to YES (the default)
    461 # then for each documented function all documented
     623# If the REFERENCED_BY_RELATION tag is set to YES (the default) 
     624# then for each documented function all documented 
    462625# functions referencing it will be listed.
    463626
    464627REFERENCED_BY_RELATION = YES
    465628
    466 # If the REFERENCES_RELATION tag is set to YES (the default)
    467 # then for each documented function all documented entities
     629# If the REFERENCES_RELATION tag is set to YES (the default) 
     630# then for each documented function all documented entities 
    468631# called/used by that function will be listed.
    469632
    470633REFERENCES_RELATION    = YES
    471634
    472 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
    473 # will generate a verbatim copy of the header file for each class for
     635# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
     636# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
     637# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
     638# link to the source code.  Otherwise they will link to the documentstion.
     639
     640REFERENCES_LINK_SOURCE = YES
     641
     642# If the USE_HTAGS tag is set to YES then the references to source code
     643# will point to the HTML generated by the htags(1) tool instead of doxygen
     644# built-in source browser. The htags tool is part of GNU's global source
     645# tagging system (see http://www.gnu.org/software/global/global.html). You
     646# will need version 4.8.6 or higher.
     647
     648USE_HTAGS              = NO
     649
     650# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
     651# will generate a verbatim copy of the header file for each class for
    474652# which an include is specified. Set to NO to disable this.
    475653
     
    480658#---------------------------------------------------------------------------
    481659
    482 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
    483 # of all compounds will be generated. Enable this if the project
     660# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 
     661# of all compounds will be generated. Enable this if the project 
    484662# contains a lot of classes, structs, unions or interfaces.
    485663
    486664ALPHABETICAL_INDEX     = YES
    487665
    488 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
    489 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
     666# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 
     667# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 
    490668# in which this list will be split (can be a number in the range [1..20])
    491669
    492670COLS_IN_ALPHA_INDEX    = 5
    493671
    494 # In case all classes in a project start with a common prefix, all
    495 # classes will be put under the same header in the alphabetical index.
    496 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that
     672# In case all classes in a project start with a common prefix, all 
     673# classes will be put under the same header in the alphabetical index. 
     674# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 
    497675# should be ignored while generating the index headers.
    498676
    499 IGNORE_PREFIX          =
     677IGNORE_PREFIX          = 
    500678
    501679#---------------------------------------------------------------------------
     
    503681#---------------------------------------------------------------------------
    504682
    505 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
     683# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 
    506684# generate HTML output.
    507685
    508686GENERATE_HTML          = YES
    509687
    510 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
    511 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
     688# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 
     689# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
    512690# put in front of it. If left blank `html' will be used as the default path.
    513691
    514692HTML_OUTPUT            = html
    515693
    516 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for
    517 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank
     694# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 
     695# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 
    518696# doxygen will generate files with .html extension.
    519697
    520698HTML_FILE_EXTENSION    = .html
    521699
    522 # The HTML_HEADER tag can be used to specify a personal HTML header for
    523 # each generated HTML page. If it is left blank doxygen will generate a
     700# The HTML_HEADER tag can be used to specify a personal HTML header for 
     701# each generated HTML page. If it is left blank doxygen will generate a 
    524702# standard header.
    525703
    526 HTML_HEADER            =
    527 
    528 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
    529 # each generated HTML page. If it is left blank doxygen will generate a
     704HTML_HEADER            = 
     705
     706# The HTML_FOOTER tag can be used to specify a personal HTML footer for 
     707# each generated HTML page. If it is left blank doxygen will generate a 
    530708# standard footer.
    531709
    532 HTML_FOOTER            =
    533 
    534 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading
    535 # style sheet that is used by each HTML page. It can be used to
    536 # fine-tune the look of the HTML output. If the tag is left blank doxygen
    537 # will generate a default style sheet
    538 
    539 HTML_STYLESHEET        =
    540 
    541 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
    542 # files or namespaces will be aligned in HTML using tables. If set to
     710HTML_FOOTER            =
     711
     712# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
     713# style sheet that is used by each HTML page. It can be used to
     714# fine-tune the look of the HTML output. If the tag is left blank doxygen
     715# will generate a default style sheet. Note that doxygen will try to copy
     716# the style sheet file to the HTML output directory, so don't put your own
     717# stylesheet in the HTML output directory as well, or it will be erased!
     718
     719HTML_STYLESHEET        =
     720
     721# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
     722# files or namespaces will be aligned in HTML using tables. If set to
    543723# NO a bullet list will be used.
    544724
    545725HTML_ALIGN_MEMBERS     = YES
    546726
    547 # If the GENERATE_HTMLHELP tag is set to YES, additional index files
    548 # will be generated that can be used as input for tools like the
    549 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
     727# If the GENERATE_HTMLHELP tag is set to YES, additional index files 
     728# will be generated that can be used as input for tools like the 
     729# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 
    550730# of the generated HTML documentation.
    551731
    552732GENERATE_HTMLHELP      = NO
    553733
    554 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
    555 # be used to specify the file name of the resulting .chm file. You
    556 # can add a path in front of the file if the result should not be
    557 # written to the html output dir.
    558 
    559 CHM_FILE               =
    560 
    561 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
    562 # be used to specify the location (absolute path including file name) of
    563 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
     734# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
     735# documentation will contain sections that can be hidden and shown after the
     736# page has loaded. For this to work a browser that supports
     737# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
     738# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
     739
     740HTML_DYNAMIC_SECTIONS  = NO
     741
     742# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
     743# be used to specify the file name of the resulting .chm file. You
     744# can add a path in front of the file if the result should not be
     745# written to the html output directory.
     746
     747CHM_FILE               =
     748
     749# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
     750# be used to specify the location (absolute path including file name) of
     751# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
    564752# the HTML help compiler on the generated index.hhp.
    565753
    566 HHC_LOCATION           =
    567 
    568 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
    569 # controls if a separate .chi index file is generated (YES) or that
     754HHC_LOCATION           = 
     755
     756# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 
     757# controls if a separate .chi index file is generated (YES) or that 
    570758# it should be included in the master .chm file (NO).
    571759
    572760GENERATE_CHI           = NO
    573761
    574 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
    575 # controls whether a binary table of contents is generated (YES) or a
     762# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 
     763# controls whether a binary table of contents is generated (YES) or a 
    576764# normal table of contents (NO) in the .chm file.
    577765
    578766BINARY_TOC             = NO
    579767
    580 # The TOC_EXPAND flag can be set to YES to add extra items for group members
     768# The TOC_EXPAND flag can be set to YES to add extra items for group members 
    581769# to the contents of the HTML help documentation and to the tree view.
    582770
    583771TOC_EXPAND             = YES
    584772
    585 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at
    586 # top of each HTML page. The value NO (the default) enables the index and
     773# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 
     774# top of each HTML page. The value NO (the default) enables the index and 
    587775# the value YES disables it.
    588776
    589777DISABLE_INDEX          = NO
    590778
    591 # This tag can be used to set the number of enum values (range [1..20])
     779# This tag can be used to set the number of enum values (range [1..20]) 
    592780# that doxygen will group on one line in the generated HTML documentation.
    593781
     
    595783
    596784# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
    597 # generated containing a tree-like index structure (just like the one that
    598 # is generated for HTML Help). For this to work a browser that supports
    599 # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,
    600 # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
     785# generated containing a tree-like index structure (just like the one that 
     786# is generated for HTML Help). For this to work a browser that supports 
     787# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 
     788# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 
    601789# probably better off using the HTML help feature.
    602790
    603791GENERATE_TREEVIEW      = NO
    604792
    605 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
    606 # used to set the initial width (in pixels) of the frame in which the tree
     793# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 
     794# used to set the initial width (in pixels) of the frame in which the tree 
    607795# is shown.
    608796
     
    613801#---------------------------------------------------------------------------
    614802
    615 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
     803# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 
    616804# generate Latex output.
    617805
    618806GENERATE_LATEX         = NO
    619807
    620 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
    621 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
     808# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 
     809# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
    622810# put in front of it. If left blank `latex' will be used as the default path.
    623811
    624812LATEX_OUTPUT           = latex
    625813
    626 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
     814# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 
    627815# invoked. If left blank `latex' will be used as the default command name.
    628816
    629817LATEX_CMD_NAME         = latex
    630818
    631 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
    632 # generate index for LaTeX. If left blank `makeindex' will be used as the
     819# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 
     820# generate index for LaTeX. If left blank `makeindex' will be used as the 
    633821# default command name.
    634822
    635823MAKEINDEX_CMD_NAME     = makeindex
    636824
    637 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
    638 # LaTeX documents. This may be useful for small projects and may help to
     825# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 
     826# LaTeX documents. This may be useful for small projects and may help to 
    639827# save some trees in general.
    640828
    641829COMPACT_LATEX          = YES
    642830
    643 # The PAPER_TYPE tag can be used to set the paper type that is used
    644 # by the printer. Possible values are: a4, a4wide, letter, legal and
     831# The PAPER_TYPE tag can be used to set the paper type that is used 
     832# by the printer. Possible values are: a4, a4wide, letter, legal and 
    645833# executive. If left blank a4wide will be used.
    646834
    647835PAPER_TYPE             = letter
    648836
    649 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
     837# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 
    650838# packages that should be included in the LaTeX output.
    651839
    652840EXTRA_PACKAGES         = times
    653841
    654 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
    655 # the generated latex document. The header should contain everything until
    656 # the first chapter. If it is left blank doxygen will generate a
     842# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 
     843# the generated latex document. The header should contain everything until 
     844# the first chapter. If it is left blank doxygen will generate a 
    657845# standard header. Notice: only use this tag if you know what you are doing!
    658846
    659 LATEX_HEADER           =
    660 
    661 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
    662 # is prepared for conversion to pdf (using ps2pdf). The pdf file will
    663 # contain links (just like the HTML output) instead of page references
     847LATEX_HEADER           = 
     848
     849# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 
     850# is prepared for conversion to pdf (using ps2pdf). The pdf file will 
     851# contain links (just like the HTML output) instead of page references 
    664852# This makes the output suitable for online browsing using a pdf viewer.
    665853
    666854PDF_HYPERLINKS         = YES
    667855
    668 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
    669 # plain latex in the generated Makefile. Set this option to YES to get a
     856# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 
     857# plain latex in the generated Makefile. Set this option to YES to get a 
    670858# higher quality PDF documentation.
    671859
    672860USE_PDFLATEX           = YES
    673861
    674 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
    675 # command to the generated LaTeX files. This will instruct LaTeX to keep
    676 # running if errors occur, instead of asking the user for help.
     862# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 
     863# command to the generated LaTeX files. This will instruct LaTeX to keep 
     864# running if errors occur, instead of asking the user for help. 
    677865# This option is also used when generating formulas in HTML.
    678866
    679867LATEX_BATCHMODE        = NO
    680868
    681 # If LATEX_HIDE_INDICES is set to YES then doxygen will not
    682 # include the index chapters (such as File Index, Compound Index, etc.)
     869# If LATEX_HIDE_INDICES is set to YES then doxygen will not 
     870# include the index chapters (such as File Index, Compound Index, etc.) 
    683871# in the output.
    684872
     
    689877#---------------------------------------------------------------------------
    690878
    691 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
    692 # The RTF output is optimised for Word 97 and may not look very pretty with
     879# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 
     880# The RTF output is optimized for Word 97 and may not look very pretty with
    693881# other RTF readers or editors.
    694882
    695883GENERATE_RTF           = NO
    696884
    697 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
    698 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
     885# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 
     886# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
    699887# put in front of it. If left blank `rtf' will be used as the default path.
    700888
    701889RTF_OUTPUT             = rtf
    702890
    703 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact
    704 # RTF documents. This may be useful for small projects and may help to
     891# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 
     892# RTF documents. This may be useful for small projects and may help to 
    705893# save some trees in general.
    706894
    707895COMPACT_RTF            = NO
    708896
    709 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
    710 # will contain hyperlink fields. The RTF file will
    711 # contain links (just like the HTML output) instead of page references.
    712 # This makes the output suitable for online browsing using WORD or other
    713 # programs which support those fields.
     897# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 
     898# will contain hyperlink fields. The RTF file will 
     899# contain links (just like the HTML output) instead of page references. 
     900# This makes the output suitable for online browsing using WORD or other 
     901# programs which support those fields. 
    714902# Note: wordpad (write) and others do not support links.
    715903
    716904RTF_HYPERLINKS         = NO
    717905
    718 # Load stylesheet definitions from file. Syntax is similar to doxygen's
    719 # config file, i.e. a series of assigments. You only have to provide
     906# Load stylesheet definitions from file. Syntax is similar to doxygen's 
     907# config file, i.e. a series of assignments. You only have to provide
    720908# replacements, missing definitions are set to their default value.
    721909
    722 RTF_STYLESHEET_FILE    =
    723 
    724 # Set optional variables used in the generation of an rtf document.
     910RTF_STYLESHEET_FILE    = 
     911
     912# Set optional variables used in the generation of an rtf document. 
    725913# Syntax is similar to doxygen's config file.
    726914
    727 RTF_EXTENSIONS_FILE    =
     915RTF_EXTENSIONS_FILE    = 
    728916
    729917#---------------------------------------------------------------------------
     
    731919#---------------------------------------------------------------------------
    732920
    733 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
     921# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 
    734922# generate man pages
    735923
    736924GENERATE_MAN           = YES
    737925
    738 # The MAN_OUTPUT tag is used to specify where the man pages will be put.
    739 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
     926# The MAN_OUTPUT tag is used to specify where the man pages will be put. 
     927# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
    740928# put in front of it. If left blank `man' will be used as the default path.
    741929
    742930MAN_OUTPUT             = man
    743931
    744 # The MAN_EXTENSION tag determines the extension that is added to
     932# The MAN_EXTENSION tag determines the extension that is added to 
    745933# the generated man pages (default is the subroutine's section .3)
    746934
    747935MAN_EXTENSION          = .3
    748936
    749 # If the MAN_LINKS tag is set to YES and Doxygen generates man output,
    750 # then it will generate one additional man file for each entity
    751 # documented in the real man page(s). These additional files
    752 # only source the real man page, but without them the man command
     937# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 
     938# then it will generate one additional man file for each entity 
     939# documented in the real man page(s). These additional files 
     940# only source the real man page, but without them the man command 
    753941# would be unable to find the correct page. The default is NO.
    754942
     
    759947#---------------------------------------------------------------------------
    760948
    761 # If the GENERATE_XML tag is set to YES Doxygen will
    762 # generate an XML file that captures the structure of
    763 # the code including all documentation. Note that this
    764 # feature is still experimental and incomplete at the
     949# If the GENERATE_XML tag is set to YES Doxygen will
     950# generate an XML file that captures the structure of
     951# the code including all documentation.
     952
     953GENERATE_XML           = NO
     954
     955# The XML_OUTPUT tag is used to specify where the XML pages will be put.
     956# If a relative path is entered the value of OUTPUT_DIRECTORY will be
     957# put in front of it. If left blank `xml' will be used as the default path.
     958
     959XML_OUTPUT             = xml
     960
     961# The XML_SCHEMA tag can be used to specify an XML schema,
     962# which can be used by a validating XML parser to check the
     963# syntax of the XML files.
     964
     965XML_SCHEMA             =
     966
     967# The XML_DTD tag can be used to specify an XML DTD,
     968# which can be used by a validating XML parser to check the
     969# syntax of the XML files.
     970
     971XML_DTD                =
     972
     973# If the XML_PROGRAMLISTING tag is set to YES Doxygen will
     974# dump the program listings (including syntax highlighting
     975# and cross-referencing information) to the XML output. Note that
     976# enabling this will significantly increase the size of the XML output.
     977
     978XML_PROGRAMLISTING     = YES
     979
     980#---------------------------------------------------------------------------
     981# configuration options for the AutoGen Definitions output
     982#---------------------------------------------------------------------------
     983
     984# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
     985# generate an AutoGen Definitions (see autogen.sf.net) file
     986# that captures the structure of the code including all
     987# documentation. Note that this feature is still experimental
     988# and incomplete at the moment.
     989
     990GENERATE_AUTOGEN_DEF   = NO
     991
     992#---------------------------------------------------------------------------
     993# configuration options related to the Perl module output
     994#---------------------------------------------------------------------------
     995
     996# If the GENERATE_PERLMOD tag is set to YES Doxygen will
     997# generate a Perl module file that captures the structure of
     998# the code including all documentation. Note that this
     999# feature is still experimental and incomplete at the
    7651000# moment.
    7661001
    767 GENERATE_XML           = NO
    768 
    769 # The XML_OUTPUT tag is used to specify where the XML pages will be put.
    770 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
    771 # put in front of it. If left blank `xml' will be used as the default path.
    772 
    773 XML_OUTPUT             = xml
    774 
    775 # The XML_SCHEMA tag can be used to specify an XML schema,
    776 # which can be used by a validating XML parser to check the
    777 # syntax of the XML files.
    778 
    779 XML_SCHEMA             =
    780 
    781 # The XML_DTD tag can be used to specify an XML DTD,
    782 # which can be used by a validating XML parser to check the
    783 # syntax of the XML files.
    784 
    785 XML_DTD                =
    786 
    787 #---------------------------------------------------------------------------
    788 # configuration options for the AutoGen Definitions output
    789 #---------------------------------------------------------------------------
    790 
    791 # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
    792 # generate an AutoGen Definitions (see autogen.sf.net) file
    793 # that captures the structure of the code including all
    794 # documentation. Note that this feature is still experimental
    795 # and incomplete at the moment.
    796 
    797 GENERATE_AUTOGEN_DEF   = NO
    798 
    799 #---------------------------------------------------------------------------
    800 # configuration options related to the Perl module output
    801 #---------------------------------------------------------------------------
    802 
    803 # If the GENERATE_PERLMOD tag is set to YES Doxygen will
    804 # generate a Perl module file that captures the structure of
    805 # the code including all documentation. Note that this
    806 # feature is still experimental and incomplete at the
    807 # moment.
    808 
    8091002GENERATE_PERLMOD       = NO
    8101003
    811 # If the PERLMOD_LATEX tag is set to YES Doxygen will generate
    812 # the necessary Makefile rules, Perl scripts and LaTeX code to be able
     1004# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 
     1005# the necessary Makefile rules, Perl scripts and LaTeX code to be able 
    8131006# to generate PDF and DVI output from the Perl module output.
    8141007
    8151008PERLMOD_LATEX          = NO
    8161009
    817 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
    818 # nicely formatted so it can be parsed by a human reader.  This is useful
    819 # if you want to understand what is going on.  On the other hand, if this
    820 # tag is set to NO the size of the Perl module output will be much smaller
     1010# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 
     1011# nicely formatted so it can be parsed by a human reader.  This is useful 
     1012# if you want to understand what is going on.  On the other hand, if this 
     1013# tag is set to NO the size of the Perl module output will be much smaller 
    8211014# and Perl will parse it just the same.
    8221015
    8231016PERLMOD_PRETTY         = YES
    8241017
    825 # The names of the make variables in the generated doxyrules.make file
    826 # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
    827 # This is useful so different doxyrules.make files included by the same
     1018# The names of the make variables in the generated doxyrules.make file 
     1019# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 
     1020# This is useful so different doxyrules.make files included by the same 
    8281021# Makefile don't overwrite each other's variables.
    8291022
    830 PERLMOD_MAKEVAR_PREFIX =
    831 
    832 #---------------------------------------------------------------------------
    833 # Configuration options related to the preprocessor
    834 #---------------------------------------------------------------------------
    835 
    836 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
    837 # evaluate all C-preprocessor directives found in the sources and include
     1023PERLMOD_MAKEVAR_PREFIX = 
     1024
     1025#---------------------------------------------------------------------------
     1026# Configuration options related to the preprocessor   
     1027#---------------------------------------------------------------------------
     1028
     1029# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 
     1030# evaluate all C-preprocessor directives found in the sources and include 
    8381031# files.
    8391032
    8401033ENABLE_PREPROCESSING   = YES
    8411034
    842 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
    843 # names in the source code. If set to NO (the default) only conditional
    844 # compilation will be performed. Macro expansion can be done in a controlled
     1035# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 
     1036# names in the source code. If set to NO (the default) only conditional 
     1037# compilation will be performed. Macro expansion can be done in a controlled 
    8451038# way by setting EXPAND_ONLY_PREDEF to YES.
    8461039
    8471040MACRO_EXPANSION        = NO
    8481041
    849 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
    850 # then the macro expansion is limited to the macros specified with the
    851 # PREDEFINED and EXPAND_AS_PREDEFINED tags.
     1042# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 
     1043# then the macro expansion is limited to the macros specified with the 
     1044# PREDEFINED and EXPAND_AS_DEFINED tags.
    8521045
    8531046EXPAND_ONLY_PREDEF     = NO
    8541047
    855 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
     1048# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 
    8561049# in the INCLUDE_PATH (see below) will be search if a #include is found.
    8571050
    8581051SEARCH_INCLUDES        = YES
    8591052
    860 # The INCLUDE_PATH tag can be used to specify one or more directories that
    861 # contain include files that are not input files but should be processed by
     1053# The INCLUDE_PATH tag can be used to specify one or more directories that 
     1054# contain include files that are not input files but should be processed by 
    8621055# the preprocessor.
    8631056
    864 INCLUDE_PATH           =
    865 
    866 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
    867 # patterns (like *.h and *.hpp) to filter out the header-files in the
    868 # directories. If left blank, the patterns specified with FILE_PATTERNS will
     1057INCLUDE_PATH           = 
     1058
     1059# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 
     1060# patterns (like *.h and *.hpp) to filter out the header-files in the 
     1061# directories. If left blank, the patterns specified with FILE_PATTERNS will 
    8691062# be used.
    8701063
    871 INCLUDE_FILE_PATTERNS  =
    872 
    873 # The PREDEFINED tag can be used to specify one or more macro names that
    874 # are defined before the preprocessor is started (similar to the -D option of
    875 # gcc). The argument of the tag is a list of macros of the form: name
    876 # or name=definition (no spaces). If the definition and the = are
    877 # omitted =1 is assumed.
     1064INCLUDE_FILE_PATTERNS  =
     1065
     1066# The PREDEFINED tag can be used to specify one or more macro names that
     1067# are defined before the preprocessor is started (similar to the -D option of
     1068# gcc). The argument of the tag is a list of macros of the form: name
     1069# or name=definition (no spaces). If the definition and the = are
     1070# omitted =1 is assumed. To prevent a macro definition from being
     1071# undefined via #undef or recursively expanded use the := operator
     1072# instead of the = operator.
    8781073
    8791074PREDEFINED             = DOXYGEN
    8801075
    881 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
    882 # this tag can be used to specify a list of macro names that should be expanded.
    883 # The macro definition that is found in the sources will be used.
     1076# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 
     1077# this tag can be used to specify a list of macro names that should be expanded. 
     1078# The macro definition that is found in the sources will be used. 
    8841079# Use the PREDEFINED tag if you want to use a different macro definition.
    8851080
    886 EXPAND_AS_DEFINED      =
    887 
    888 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
    889 # doxygen's preprocessor will remove all function-like macros that are alone
    890 # on a line, have an all uppercase name, and do not end with a semicolon. Such
    891 # function macros are typically used for boiler-plate code, and will confuse the
    892 # parser if not removed.
     1081EXPAND_AS_DEFINED      = 
     1082
     1083# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 
     1084# doxygen's preprocessor will remove all function-like macros that are alone 
     1085# on a line, have an all uppercase name, and do not end with a semicolon. Such 
     1086# function macros are typically used for boiler-plate code, and will confuse
     1087# the parser if not removed.
    8931088
    8941089SKIP_FUNCTION_MACROS   = YES
    8951090
    8961091#---------------------------------------------------------------------------
    897 # Configuration::addtions related to external references
    898 #---------------------------------------------------------------------------
    899 
    900 # The TAGFILES option can be used to specify one or more tagfiles.
    901 # Optionally an initial location of the external documentation
    902 # can be added for each tagfile. The format of a tag file without
    903 # this location is as follows:
    904 #   TAGFILES = file1 file2 ...
    905 # Adding location for the tag files is done as follows:
    906 #   TAGFILES = file1=loc1 "file2 = loc2" ...
    907 # where "loc1" and "loc2" can be relative or absolute paths or
    908 # URLs. If a location is present for each tag, the installdox tool
     1092# Configuration::additions related to external references   
     1093#---------------------------------------------------------------------------
     1094
     1095# The TAGFILES option can be used to specify one or more tagfiles. 
     1096# Optionally an initial location of the external documentation 
     1097# can be added for each tagfile. The format of a tag file without 
     1098# this location is as follows: 
     1099#   TAGFILES = file1 file2 ... 
     1100# Adding location for the tag files is done as follows: 
     1101#   TAGFILES = file1=loc1 "file2 = loc2" ... 
     1102# where "loc1" and "loc2" can be relative or absolute paths or 
     1103# URLs. If a location is present for each tag, the installdox tool 
    9091104# does not have to be run to correct the links.
    9101105# Note that each tag file must have a unique name
    9111106# (where the name does NOT include the path)
    912 # If a tag file is not located in the directory in which doxygen
     1107# If a tag file is not located in the directory in which doxygen 
    9131108# is run, you must also specify the path to the tagfile here.
    9141109
    915 TAGFILES               =
    916 
    917 # When a file name is specified after GENERATE_TAGFILE, doxygen will create
     1110TAGFILES               = 
     1111
     1112# When a file name is specified after GENERATE_TAGFILE, doxygen will create 
    9181113# a tag file that is based on the input files it reads.
    9191114
    920 GENERATE_TAGFILE       =
    921 
    922 # If the ALLEXTERNALS tag is set to YES all external classes will be listed
    923 # in the class index. If set to NO only the inherited external classes
     1115GENERATE_TAGFILE       = 
     1116
     1117# If the ALLEXTERNALS tag is set to YES all external classes will be listed 
     1118# in the class index. If set to NO only the inherited external classes 
    9241119# will be listed.
    9251120
    9261121ALLEXTERNALS           = NO
    9271122
    928 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
    929 # in the modules index. If set to NO, only the current project's groups will
     1123# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 
     1124# in the modules index. If set to NO, only the current project's groups will 
    9301125# be listed.
    9311126
    9321127EXTERNAL_GROUPS        = YES
    9331128
    934 # The PERL_PATH should be the absolute path and name of the perl script
     1129# The PERL_PATH should be the absolute path and name of the perl script 
    9351130# interpreter (i.e. the result of `which perl').
    9361131
    937 PERL_PATH              = @PERL@
    938 
    939 #---------------------------------------------------------------------------
    940 # Configuration options related to the dot tool
    941 #---------------------------------------------------------------------------
    942 
    943 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
    944 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base or
    945 # super classes. Setting the tag to NO turns the diagrams off. Note that this
    946 # option is superceded by the HAVE_DOT option below. This is only a fallback. It is
    947 # recommended to install and use dot, since it yields more powerful graphs.
     1132PERL_PATH              = /usr/bin/perl
     1133
     1134#---------------------------------------------------------------------------
     1135# Configuration options related to the dot tool   
     1136#---------------------------------------------------------------------------
     1137
     1138# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
     1139# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
     1140# or super classes. Setting the tag to NO turns the diagrams off. Note that
     1141# this option is superseded by the HAVE_DOT option below. This is only a
     1142# fallback. It is recommended to install and use dot, since it yields more
     1143# powerful graphs.
    9481144
    9491145CLASS_DIAGRAMS         = YES
    9501146
    951 # If set to YES, the inheritance and collaboration graphs will hide
    952 # inheritance and usage relations if the target is undocumented
     1147# You can define message sequence charts within doxygen comments using the \msc
     1148# command. Doxygen will then run the mscgen tool (see http://www.mcternan.me.uk/mscgen/) to
     1149# produce the chart and insert it in the documentation. The MSCGEN_PATH tag allows you to
     1150# specify the directory where the mscgen tool resides. If left empty the tool is assumed to
     1151# be found in the default search path.
     1152
     1153MSCGEN_PATH            =
     1154
     1155# If set to YES, the inheritance and collaboration graphs will hide
     1156# inheritance and usage relations if the target is undocumented
    9531157# or is not a class.
    9541158
    9551159HIDE_UNDOC_RELATIONS   = YES
    9561160
    957 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
    958 # available from the path. This tool is part of Graphviz, a graph visualization
    959 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
     1161# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 
     1162# available from the path. This tool is part of Graphviz, a graph visualization 
     1163# toolkit from AT&T and Lucent Bell Labs. The other options in this section 
    9601164# have no effect if this option is set to NO (the default)
    9611165
    9621166HAVE_DOT               = YES
    9631167
    964 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
    965 # will generate a graph for each documented class showing the direct and
    966 # indirect inheritance relations. Setting this tag to YES will force the
     1168# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 
     1169# will generate a graph for each documented class showing the direct and 
     1170# indirect inheritance relations. Setting this tag to YES will force the 
    9671171# the CLASS_DIAGRAMS tag to NO.
    9681172
    9691173CLASS_GRAPH            = YES
    9701174
    971 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
    972 # will generate a graph for each documented class showing the direct and
    973 # indirect implementation dependencies (inheritance, containment, and
     1175# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 
     1176# will generate a graph for each documented class showing the direct and 
     1177# indirect implementation dependencies (inheritance, containment, and 
    9741178# class references variables) of the class with other documented classes.
    9751179
    9761180COLLABORATION_GRAPH    = YES
    9771181
    978 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
    979 # collaboration diagrams in a style similiar to the OMG's Unified Modeling
     1182# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
     1183# will generate a graph for groups, showing the direct groups dependencies
     1184
     1185GROUP_GRAPHS           = YES
     1186
     1187# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
     1188# collaboration diagrams in a style similar to the OMG's Unified Modeling
    9801189# Language.
    9811190
    9821191UML_LOOK               = YES
    9831192
    984 # If set to YES, the inheritance and collaboration graphs will show the
     1193# If set to YES, the inheritance and collaboration graphs will show the 
    9851194# relations between templates and their instances.
    9861195
    9871196TEMPLATE_RELATIONS     = YES
    9881197
    989 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
    990 # tags are set to YES then doxygen will generate a graph for each documented
    991 # file showing the direct and indirect include dependencies of the file with
     1198# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 
     1199# tags are set to YES then doxygen will generate a graph for each documented 
     1200# file showing the direct and indirect include dependencies of the file with 
    9921201# other documented files.
    9931202
    9941203INCLUDE_GRAPH          = YES
    9951204
    996 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
    997 # HAVE_DOT tags are set to YES then doxygen will generate a graph for each
    998 # documented header file showing the documented files that directly or
     1205# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 
     1206# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 
     1207# documented header file showing the documented files that directly or 
    9991208# indirectly include this file.
    10001209
    10011210INCLUDED_BY_GRAPH      = YES
    10021211
    1003 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
    1004 # generate a call dependency graph for every global function or class method.
    1005 # Note that enabling this option will significantly increase the time of a run.
    1006 # So in most cases it will be better to enable call graphs for selected
     1212# If the CALL_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will
     1213# generate a call dependency graph for every global function or class method. 
     1214# Note that enabling this option will significantly increase the time of a run. 
     1215# So in most cases it will be better to enable call graphs for selected 
    10071216# functions only using the \callgraph command.
    10081217
    10091218CALL_GRAPH             = NO
    10101219
    1011 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
     1220# If the CALLER_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will
     1221# generate a caller dependency graph for every global function or class method.
     1222# Note that enabling this option will significantly increase the time of a run.
     1223# So in most cases it will be better to enable caller graphs for selected
     1224# functions only using the \callergraph command.
     1225
     1226CALLER_GRAPH           = NO
     1227
     1228# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
    10121229# will graphical hierarchy of all classes instead of a textual one.
    10131230
    10141231GRAPHICAL_HIERARCHY    = YES
    10151232
    1016 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
     1233# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
     1234# then doxygen will show the dependencies a directory has on other directories
     1235# in a graphical way. The dependency relations are determined by the #include
     1236# relations between the files in the directories.
     1237
     1238DIRECTORY_GRAPH        = YES
     1239
     1240# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
    10171241# generated by dot. Possible values are png, jpg, or gif
    10181242# If left blank png will be used.
     
    10201244DOT_IMAGE_FORMAT       = png
    10211245
    1022 # The tag DOT_PATH can be used to specify the path where the dot tool can be
    1023 # found. If left blank, it is assumed the dot tool can be found on the path.
    1024 
    1025 DOT_PATH               =
    1026 
    1027 # The DOTFILE_DIRS tag can be used to specify one or more directories that
    1028 # contain dot files that are included in the documentation (see the
     1246# The tag DOT_PATH can be used to specify the path where the dot tool can be 
     1247# found. If left blank, it is assumed the dot tool can be found in the path.
     1248
     1249DOT_PATH               = 
     1250
     1251# The DOTFILE_DIRS tag can be used to specify one or more directories that 
     1252# contain dot files that are included in the documentation (see the 
    10291253# \dotfile command).
    10301254
    1031 DOTFILE_DIRS           =
    1032 
    1033 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width
    1034 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
    1035 # this value, doxygen will try to truncate the graph, so that it fits within
    1036 # the specified constraint. Beware that most browsers cannot cope with very
    1037 # large images.
    1038 
    1039 MAX_DOT_GRAPH_WIDTH    = 1024
    1040 
    1041 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height
    1042 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
    1043 # this value, doxygen will try to truncate the graph, so that it fits within
    1044 # the specified constraint. Beware that most browsers cannot cope with very
    1045 # large images.
    1046 
    1047 MAX_DOT_GRAPH_HEIGHT   = 1024
    1048 
    1049 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
    1050 # graphs generated by dot. A depth value of 3 means that only nodes reachable
    1051 # from the root by following a path via at most 3 edges will be shown. Nodes that
    1052 # lay further from the root node will be omitted. Note that setting this option to
    1053 # 1 or 2 may greatly reduce the computation time needed for large code bases. Also
    1054 # note that a graph may be further truncated if the graph's image dimensions are
    1055 # not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH and MAX_DOT_GRAPH_HEIGHT).
    1056 # If 0 is used for the depth value (the default), the graph is not depth-constrained.
     1255DOTFILE_DIRS           =
     1256
     1257# The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
     1258# nodes that will be shown in the graph. If the number of nodes in a graph
     1259# becomes larger than this value, doxygen will truncate the graph, which is
     1260# visualized by representing a node as a red box. Note that doxygen if the number
     1261# of direct children of the root node in a graph is already larger than
     1262# MAX_DOT_GRAPH_NOTES then the graph will not be shown at all. Also note
     1263# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
     1264
     1265DOT_GRAPH_MAX_NODES    = 50
     1266
     1267# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
     1268# graphs generated by dot. A depth value of 3 means that only nodes reachable
     1269# from the root by following a path via at most 3 edges will be shown. Nodes
     1270# that lay further from the root node will be omitted. Note that setting this
     1271# option to 1 or 2 may greatly reduce the computation time needed for large
     1272# code bases. Also note that the size of a graph can be further restricted by
     1273# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
    10571274
    10581275MAX_DOT_GRAPH_DEPTH    = 0
    10591276
    1060 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
    1061 # generate a legend page explaining the meaning of the various boxes and
     1277# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
     1278# background. This is disabled by default, which results in a white background.
     1279# Warning: Depending on the platform used, enabling this option may lead to
     1280# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
     1281# read).
     1282
     1283DOT_TRANSPARENT        = YES
     1284
     1285# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
     1286# files in one run (i.e. multiple -o and -T options on the command line). This
     1287# makes dot run faster, but since only newer versions of dot (>1.8.10)
     1288# support this, this feature is disabled by default.
     1289
     1290DOT_MULTI_TARGETS      = NO
     1291
     1292# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
     1293# generate a legend page explaining the meaning of the various boxes and
    10621294# arrows in the dot generated graphs.
    10631295
    10641296GENERATE_LEGEND        = YES
    10651297
    1066 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
    1067 # remove the intermediate dot files that are used to generate
     1298# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 
     1299# remove the intermediate dot files that are used to generate 
    10681300# the various graphs.
    10691301
     
    10711303
    10721304#---------------------------------------------------------------------------
    1073 # Configuration::addtions related to the search engine
    1074 #---------------------------------------------------------------------------
    1075 
    1076 # The SEARCHENGINE tag specifies whether or not a search engine should be
     1305# Configuration::additions related to the search engine   
     1306#---------------------------------------------------------------------------
     1307
     1308# The SEARCHENGINE tag specifies whether or not a search engine should be 
    10771309# used. If set to NO the values of all tags below this one will be ignored.
    10781310
    10791311SEARCHENGINE           = NO
    1080 
  • trunk/psModules/Doxyfile.in

    r11256 r21031  
    1 # Doxyfile 1.3.4
     1# Doxyfile 1.5.4
    22
    33# This file describes the settings to be used by the documentation system
     
    1515#---------------------------------------------------------------------------
    1616
    17 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
     17# This tag specifies the encoding used for all characters in the config file that
     18# follow. The default is UTF-8 which is also the encoding used for all text before
     19# the first occurrence of this tag. Doxygen uses libiconv (or the iconv built into
     20# libc) for the transcoding. See http://www.gnu.org/software/libiconv for the list of
     21# possible encodings.
     22
     23DOXYFILE_ENCODING      = UTF-8
     24
     25# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
    1826# by quotes) that should identify the project.
    1927
    20 PROJECT_NAME           = "Pan-STARRS Module Library"
    21 
    22 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
    23 # This could be handy for archiving the generated documentation or
     28PROJECT_NAME           = "Pan-STARRS Module Library "
     29
     30# The PROJECT_NUMBER tag can be used to enter a project or revision number. 
     31# This could be handy for archiving the generated documentation or 
    2432# if some version control system is used.
    2533
    26 PROJECT_NUMBER         = @VERSION@
    27 
    28 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
    29 # base path where the generated documentation will be put.
    30 # If a relative path is entered, it will be relative to the location
     34PROJECT_NUMBER         = 1.1.0
     35
     36# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
     37# base path where the generated documentation will be put. 
     38# If a relative path is entered, it will be relative to the location 
    3139# where doxygen was started. If left blank the current directory will be used.
    3240
    33 OUTPUT_DIRECTORY       = @builddir@/docs
    34 
    35 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
    36 # documentation generated by doxygen is written. Doxygen will use this
    37 # information to generate all constant output in the proper language.
    38 # The default language is English, other supported languages are:
    39 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch,
    40 # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en
    41 # (Japanese with English messages), Korean, Norwegian, Polish, Portuguese,
    42 # Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.
     41OUTPUT_DIRECTORY       = ./docs
     42
     43# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
     44# 4096 sub-directories (in 2 levels) under the output directory of each output
     45# format and will distribute the generated files over these directories.
     46# Enabling this option can be useful when feeding doxygen a huge amount of
     47# source files, where putting all generated files in the same directory would
     48# otherwise cause performance problems for the file system.
     49
     50CREATE_SUBDIRS         = NO
     51
     52# The OUTPUT_LANGUAGE tag is used to specify the language in which all
     53# documentation generated by doxygen is written. Doxygen will use this
     54# information to generate all constant output in the proper language.
     55# The default language is English, other supported languages are:
     56# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
     57# Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian,
     58# Italian, Japanese, Japanese-en (Japanese with English messages), Korean,
     59# Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian,
     60# Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.
    4361
    4462OUTPUT_LANGUAGE        = English
    4563
    46 # This tag can be used to specify the encoding used in the generated output.
    47 # The encoding is not always determined by the language that is chosen,
    48 # but also whether or not the output is meant for Windows or non-Windows users.
    49 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
    50 # forces the Windows encoding (this is the default for the Windows binary),
    51 # whereas setting the tag to NO uses a Unix-style encoding (the default for
    52 # all platforms other than Windows).
    53 
    54 USE_WINDOWS_ENCODING   = NO
    55 
    56 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
    57 # include brief member descriptions after the members that are listed in
    58 # the file and class documentation (similar to JavaDoc).
     64# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
     65# include brief member descriptions after the members that are listed in
     66# the file and class documentation (similar to JavaDoc).
    5967# Set to NO to disable this.
    6068
    6169BRIEF_MEMBER_DESC      = YES
    6270
    63 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
    64 # the brief description of a member or function before the detailed description.
    65 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
     71# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 
     72# the brief description of a member or function before the detailed description. 
     73# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 
    6674# brief descriptions will be completely suppressed.
    6775
    6876REPEAT_BRIEF           = YES
    6977
    70 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
    71 # Doxygen will generate a detailed section even if there is only a brief
     78# This tag implements a quasi-intelligent brief description abbreviator
     79# that is used to form the text in various listings. Each string
     80# in this list, if found as the leading text of the brief description, will be
     81# stripped from the text and the result after processing the whole list, is
     82# used as the annotated text. Otherwise, the brief description is used as-is.
     83# If left blank, the following values are used ("$name" is automatically
     84# replaced with the name of the entity): "The $name class" "The $name widget"
     85# "The $name file" "is" "provides" "specifies" "contains"
     86# "represents" "a" "an" "the"
     87
     88ABBREVIATE_BRIEF       =
     89
     90# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
     91# Doxygen will generate a detailed section even if there is only a brief
    7292# description.
    7393
    7494ALWAYS_DETAILED_SEC    = YES
    7595
    76 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited
    77 # members of a class in the documentation of that class as if those members were
    78 # ordinary class members. Constructors, destructors and assignment operators of
    79 # the base classes will not be shown.
     96# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
     97# inherited members of a class in the documentation of that class as if those
     98# members were ordinary class members. Constructors, destructors and assignment
     99# operators of the base classes will not be shown.
    80100
    81101INLINE_INHERITED_MEMB  = NO
    82102
    83 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
    84 # path before files name in the file list and in the header files. If set
     103# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 
     104# path before files name in the file list and in the header files. If set 
    85105# to NO the shortest path that makes the file name unique will be used.
    86106
    87107FULL_PATH_NAMES        = NO
    88108
    89 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
    90 # can be used to strip a user-defined part of the path. Stripping is
    91 # only done if one of the specified strings matches the left-hand part of
    92 # the path. It is allowed to use relative paths in the argument list.
    93 
    94 STRIP_FROM_PATH        =
    95 
    96 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
    97 # (but less readable) file names. This can be useful is your file systems
     109# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
     110# can be used to strip a user-defined part of the path. Stripping is
     111# only done if one of the specified strings matches the left-hand part of
     112# the path. The tag can be used to show relative paths in the file list.
     113# If left blank the directory from which doxygen is run is used as the
     114# path to strip.
     115
     116STRIP_FROM_PATH        =
     117
     118# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
     119# the path mentioned in the documentation of a class, which tells
     120# the reader which header file to include in order to use a class.
     121# If left blank only the name of the header file containing the class
     122# definition is used. Otherwise one should specify the include paths that
     123# are normally passed to the compiler using the -I flag.
     124
     125STRIP_FROM_INC_PATH    =
     126
     127# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
     128# (but less readable) file names. This can be useful is your file systems
    98129# doesn't support long names like on DOS, Mac, or CD-ROM.
    99130
    100131SHORT_NAMES            = NO
    101132
    102 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
    103 # will interpret the first line (until the first dot) of a JavaDoc-style
    104 # comment as the brief description. If set to NO, the JavaDoc
    105 # comments will behave just like the Qt-style comments (thus requiring an
    106 # explict @brief command for a brief description.
     133# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 
     134# will interpret the first line (until the first dot) of a JavaDoc-style 
     135# comment as the brief description. If set to NO, the JavaDoc 
     136# comments will behave just like regular Qt-style comments
     137# (thus requiring an explicit @brief command for a brief description.)
    107138
    108139JAVADOC_AUTOBRIEF      = YES
    109140
    110 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
    111 # treat a multi-line C++ special comment block (i.e. a block of //! or ///
    112 # comments) as a brief description. This used to be the default behaviour.
    113 # The new default is to treat a multi-line C++ comment block as a detailed
     141# If the QT_AUTOBRIEF tag is set to YES then Doxygen will
     142# interpret the first line (until the first dot) of a Qt-style
     143# comment as the brief description. If set to NO, the comments
     144# will behave just like regular Qt-style comments (thus requiring
     145# an explicit \brief command for a brief description.)
     146
     147QT_AUTOBRIEF           = NO
     148
     149# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
     150# treat a multi-line C++ special comment block (i.e. a block of //! or ///
     151# comments) as a brief description. This used to be the default behaviour.
     152# The new default is to treat a multi-line C++ comment block as a detailed
    114153# description. Set this tag to YES if you prefer the old behaviour instead.
    115154
    116155MULTILINE_CPP_IS_BRIEF = NO
    117156
    118 # If the DETAILS_AT_TOP tag is set to YES then Doxygen
     157# If the DETAILS_AT_TOP tag is set to YES then Doxygen 
    119158# will output the detailed description near the top, like JavaDoc.
    120 # If set to NO, the detailed description appears after the member
     159# If set to NO, the detailed description appears after the member 
    121160# documentation.
    122161
    123162DETAILS_AT_TOP         = YES
    124163
    125 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
    126 # member inherits the documentation from any documented member that it
    127 # reimplements.
     164# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 
     165# member inherits the documentation from any documented member that it 
     166# re-implements.
    128167
    129168INHERIT_DOCS           = YES
    130169
    131 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
    132 # tag is set to YES, then doxygen will reuse the documentation of the first
    133 # member in the group (if any) for the other members of the group. By default
     170# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
     171# a new page for each member. If set to NO, the documentation of a member will
     172# be part of the file/class/namespace that contains it.
     173
     174SEPARATE_MEMBER_PAGES  = NO
     175
     176# The TAB_SIZE tag can be used to set the number of spaces in a tab.
     177# Doxygen uses this value to replace tabs by spaces in code fragments.
     178
     179TAB_SIZE               = 4
     180
     181# This tag can be used to specify a number of aliases that acts
     182# as commands in the documentation. An alias has the form "name=value".
     183# For example adding "sideeffect=\par Side Effects:\n" will allow you to
     184# put the command \sideeffect (or @sideeffect) in the documentation, which
     185# will result in a user-defined paragraph with heading "Side Effects:".
     186# You can put \n's in the value part of an alias to insert newlines.
     187
     188ALIASES                =
     189
     190# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
     191# sources only. Doxygen will then generate output that is more tailored for C.
     192# For instance, some of the names that are used will be different. The list
     193# of all members will be omitted, etc.
     194
     195OPTIMIZE_OUTPUT_FOR_C  = YES
     196
     197# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
     198# sources only. Doxygen will then generate output that is more tailored for Java.
     199# For instance, namespaces will be presented as packages, qualified scopes
     200# will look different, etc.
     201
     202OPTIMIZE_OUTPUT_JAVA   = NO
     203
     204# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to
     205# include (a tag file for) the STL sources as input, then you should
     206# set this tag to YES in order to let doxygen match functions declarations and
     207# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
     208# func(std::string) {}). This also make the inheritance and collaboration
     209# diagrams that involve STL classes more complete and accurate.
     210
     211BUILTIN_STL_SUPPORT    = NO
     212
     213# If you use Microsoft's C++/CLI language, you should set this option to YES to
     214# enable parsing support.
     215
     216CPP_CLI_SUPPORT        = NO
     217
     218# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
     219# Doxygen will parse them like normal C++ but will assume all classes use public
     220# instead of private inheritance when no explicit protection keyword is present.
     221
     222SIP_SUPPORT            = NO
     223
     224# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
     225# tag is set to YES, then doxygen will reuse the documentation of the first
     226# member in the group (if any) for the other members of the group. By default
    134227# all members of a group must be documented explicitly.
    135228
    136229DISTRIBUTE_GROUP_DOC   = NO
    137230
    138 # The TAB_SIZE tag can be used to set the number of spaces in a tab.
    139 # Doxygen uses this value to replace tabs by spaces in code fragments.
    140 
    141 TAB_SIZE               = 4
    142 
    143 # This tag can be used to specify a number of aliases that acts
    144 # as commands in the documentation. An alias has the form "name=value".
    145 # For example adding "sideeffect=\par Side Effects:\n" will allow you to
    146 # put the command \sideeffect (or @sideeffect) in the documentation, which
    147 # will result in a user-defined paragraph with heading "Side Effects:".
    148 # You can put \n's in the value part of an alias to insert newlines.
    149 
    150 ALIASES                =
    151 
    152 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
    153 # only. Doxygen will then generate output that is more tailored for C.
    154 # For instance, some of the names that are used will be different. The list
    155 # of all members will be omitted, etc.
    156 
    157 OPTIMIZE_OUTPUT_FOR_C  = YES
    158 
    159 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources
    160 # only. Doxygen will then generate output that is more tailored for Java.
    161 # For instance, namespaces will be presented as packages, qualified scopes
    162 # will look different, etc.
    163 
    164 OPTIMIZE_OUTPUT_JAVA   = NO
    165 
    166 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
    167 # the same type (for instance a group of public functions) to be put as a
    168 # subgroup of that type (e.g. under the Public Functions section). Set it to
    169 # NO to prevent subgrouping. Alternatively, this can be done per class using
     231# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
     232# the same type (for instance a group of public functions) to be put as a
     233# subgroup of that type (e.g. under the Public Functions section). Set it to
     234# NO to prevent subgrouping. Alternatively, this can be done per class using
    170235# the \nosubgrouping command.
    171236
    172237SUBGROUPING            = NO
    173238
     239# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct (or union) is
     240# documented as struct with the name of the typedef. So
     241# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
     242# with name TypeT. When disabled the typedef will appear as a member of a file,
     243# namespace, or class. And the struct will be named TypeS. This can typically
     244# be useful for C code where the coding convention is that all structs are
     245# typedef'ed and only the typedef is referenced never the struct's name.
     246
     247TYPEDEF_HIDES_STRUCT   = NO
     248
    174249#---------------------------------------------------------------------------
    175250# Build related configuration options
    176251#---------------------------------------------------------------------------
    177252
    178 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
    179 # documentation are documented, even if no documentation was available.
    180 # Private class members and static file members will be hidden unless
     253# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 
     254# documentation are documented, even if no documentation was available. 
     255# Private class members and static file members will be hidden unless 
    181256# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
    182257
    183258EXTRACT_ALL            = YES
    184259
    185 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
     260# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 
    186261# will be included in the documentation.
    187262
    188263EXTRACT_PRIVATE        = NO
    189264
    190 # If the EXTRACT_STATIC tag is set to YES all static members of a file
     265# If the EXTRACT_STATIC tag is set to YES all static members of a file 
    191266# will be included in the documentation.
    192267
    193268EXTRACT_STATIC         = NO
    194269
    195 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
    196 # defined locally in source files will be included in the documentation.
     270# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 
     271# defined locally in source files will be included in the documentation. 
    197272# If set to NO only classes defined in header files are included.
    198273
    199274EXTRACT_LOCAL_CLASSES  = NO
    200275
    201 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
    202 # undocumented members of documented classes, files or namespaces.
    203 # If set to NO (the default) these members will be included in the
    204 # various overviews, but no documentation section is generated.
     276# This flag is only useful for Objective-C code. When set to YES local
     277# methods, which are defined in the implementation section but not in
     278# the interface are included in the documentation.
     279# If set to NO (the default) only methods in the interface are included.
     280
     281EXTRACT_LOCAL_METHODS  = NO
     282
     283# If this flag is set to YES, the members of anonymous namespaces will be extracted
     284# and appear in the documentation as a namespace called 'anonymous_namespace{file}',
     285# where file will be replaced with the base name of the file that contains the anonymous
     286# namespace. By default anonymous namespace are hidden.
     287
     288EXTRACT_ANON_NSPACES   = NO
     289
     290# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
     291# undocumented members of documented classes, files or namespaces.
     292# If set to NO (the default) these members will be included in the
     293# various overviews, but no documentation section is generated.
    205294# This option has no effect if EXTRACT_ALL is enabled.
    206295
    207296HIDE_UNDOC_MEMBERS     = NO
    208297
    209 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
    210 # undocumented classes that are normally visible in the class hierarchy.
    211 # If set to NO (the default) these classes will be included in the various
     298# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 
     299# undocumented classes that are normally visible in the class hierarchy. 
     300# If set to NO (the default) these classes will be included in the various 
    212301# overviews. This option has no effect if EXTRACT_ALL is enabled.
    213302
    214303HIDE_UNDOC_CLASSES     = NO
    215304
    216 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
    217 # friend (class|struct|union) declarations.
    218 # If set to NO (the default) these declarations will be included in the
     305# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 
     306# friend (class|struct|union) declarations. 
     307# If set to NO (the default) these declarations will be included in the 
    219308# documentation.
    220309
     
    230319# The INTERNAL_DOCS tag determines if documentation
    231320# that is typed after a \internal command is included. If the tag is set
    232 # to NO (the default) then the documentation will be excluded.
     321# to NO (the default) then the documentation will be excluded. 
    233322# Set it to YES to include the internal documentation.
    234323
     
    239328# allowed. This is useful if you have classes or files whose names only differ
    240329# in case and if your file system supports case sensitive file names. Windows
    241 # users are advised to set this option to NO.
     330# and Mac users are advised to set this option to NO.
    242331
    243332CASE_SENSE_NAMES       = YES
     
    267356SORT_MEMBER_DOCS       = YES
    268357
     358# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
     359# brief documentation of file, namespace and class members alphabetically
     360# by member name. If set to NO (the default) the members will appear in
     361# declaration order.
     362
     363SORT_BRIEF_DOCS        = NO
     364
     365# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
     366# sorted by fully-qualified names, including namespaces. If set to
     367# NO (the default), the class list will be sorted only by class name,
     368# not including the namespace part.
     369# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
     370# Note: This option applies only to the class list, not to the
     371# alphabetical list.
     372
     373SORT_BY_SCOPE_NAME     = NO
     374
    269375# The GENERATE_TODOLIST tag can be used to enable (YES) or
    270376# disable (NO) the todo list. This list is created by putting \todo
     
    294400# documentation sections, marked by \if sectionname ... \endif.
    295401
    296 ENABLED_SECTIONS       =
     402ENABLED_SECTIONS       = 
    297403
    298404# The MAX_INITIALIZER_LINES tag determines the maximum number of lines
    299405# the initial value of a variable or define consists of for it to appear in
    300 # the documentation. If the initializer consists of more lines than specified
     406# the documentation. If the initializer consists of more lines than specified 
    301407# here it will be hidden. Use a value of 0 to hide initializers completely.
    302408# The appearance of the initializer of individual variables and defines in the
     
    312418SHOW_USED_FILES        = YES
    313419
     420# If the sources in your project are distributed over multiple directories
     421# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
     422# in the documentation. The default is NO.
     423
     424SHOW_DIRECTORIES       = NO
     425
     426# The FILE_VERSION_FILTER tag can be used to specify a program or script that
     427# doxygen should invoke to get the current version for each file (typically from the
     428# version control system). Doxygen will invoke the program by executing (via
     429# popen()) the command <command> <input-file>, where <command> is the value of
     430# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
     431# provided by doxygen. Whatever the program writes to standard output
     432# is used as the file version. See the manual for examples.
     433
     434FILE_VERSION_FILTER    =
     435
    314436#---------------------------------------------------------------------------
    315437# configuration options related to warning and progress messages
     
    322444
    323445# The WARNINGS tag can be used to turn on/off the warning messages that are
    324 # generated by doxygen. Possible values are YES and NO. If left blank
     446# generated by doxygen. Possible values are YES and NO. If left blank 
    325447# NO is used.
    326448
     
    340462WARN_IF_DOC_ERROR      = YES
    341463
     464# This WARN_NO_PARAMDOC option can be abled to get warnings for
     465# functions that are documented, but have no documentation for their parameters
     466# or return value. If set to NO (the default) doxygen will only warn about
     467# wrong or incomplete parameter documentation, but not about the absence of
     468# documentation.
     469
     470WARN_NO_PARAMDOC       = NO
     471
    342472# The WARN_FORMAT tag determines the format of the warning messages that
    343473# doxygen can produce. The string should contain the $file, $line, and $text
    344474# tags, which will be replaced by the file and line number from which the
    345 # warning originated and the warning text.
    346 
    347 WARN_FORMAT            = "$file:$line: $text"
     475# warning originated and the warning text. Optionally the format may contain
     476# $version, which will be replaced by the version of the file (if it could
     477# be obtained via FILE_VERSION_FILTER)
     478
     479WARN_FORMAT            = "$file:$line: $text "
    348480
    349481# The WARN_LOGFILE tag can be used to specify a file to which warning
     
    364496INPUT                  = src
    365497
     498# This tag can be used to specify the character encoding of the source files that
     499# doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default
     500# input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding.
     501# See http://www.gnu.org/software/libiconv for the list of possible encodings.
     502
     503INPUT_ENCODING         = UTF-8
     504
    366505# If the value of the INPUT tag contains directories, you can use the
    367 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
    368 # and *.h) to filter out the source-files in the directories. If left
    369 # blank the following patterns are tested:
    370 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp
    371 # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc
    372 
    373 FILE_PATTERNS          = *.h *.dox
    374 
    375 # The RECURSIVE tag can be used to turn specify whether or not subdirectories
    376 # should be searched for input files as well. Possible values are YES and NO.
     506# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
     507# and *.h) to filter out the source-files in the directories. If left
     508# blank the following patterns are tested:
     509# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
     510# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
     511
     512FILE_PATTERNS          = *.h \
     513                         *.dox
     514
     515# The RECURSIVE tag can be used to turn specify whether or not subdirectories
     516# should be searched for input files as well. Possible values are YES and NO.
    377517# If left blank NO is used.
    378518
    379519RECURSIVE              = YES
    380520
    381 # The EXCLUDE tag can be used to specify files and/or directories that should
     521# The EXCLUDE tag can be used to specify files and/or directories that should 
    382522# excluded from the INPUT source files. This way you can easily exclude a
    383523# subdirectory from a directory tree whose root is specified with the INPUT tag.
    384524
    385 EXCLUDE                =
    386 
    387 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories
    388 # that are symbolic links (a Unix filesystem feature) are excluded from the input.
     525EXCLUDE                =
     526
     527# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
     528# directories that are symbolic links (a Unix filesystem feature) are excluded
     529# from the input.
    389530
    390531EXCLUDE_SYMLINKS       = NO
     
    392533# If the value of the INPUT tag contains directories, you can use the
    393534# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
    394 # certain files from those directories.
     535# certain files from those directories. Note that the wildcards are matched
     536# against the file with absolute path, so to exclude all test directories
     537# for example use the pattern */test/*
    395538
    396539EXCLUDE_PATTERNS       = *_wrap.c
    397540
    398 # The EXAMPLE_PATH tag can be used to specify one or more files or
     541# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
     542# (namespaces, classes, functions, etc.) that should be excluded from the output.
     543# The symbol name can be a fully qualified name, a word, or if the wildcard * is used,
     544# a substring. Examples: ANamespace, AClass, AClass::ANamespace, ANamespace::*Test
     545
     546EXCLUDE_SYMBOLS        =
     547
     548# The EXAMPLE_PATH tag can be used to specify one or more files or
    399549# directories that contain example code fragments that are included (see
    400550# the \include command).
    401551
    402 EXAMPLE_PATH           =
     552EXAMPLE_PATH           = 
    403553
    404554# If the value of the EXAMPLE_PATH tag contains directories, you can use the
     
    427577# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
    428578# input file. Doxygen will then use the output that the filter program writes
    429 # to standard output.
     579# to standard output.  If FILTER_PATTERNS is specified, this tag will be
     580# ignored.
    430581
    431582INPUT_FILTER           =
     583
     584# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
     585# basis.  Doxygen will compare the file name with each pattern and apply the
     586# filter if there is a match.  The filters are a list of the form:
     587# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
     588# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
     589# is applied to all files.
     590
     591FILTER_PATTERNS        =
    432592
    433593# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
     
    442602
    443603# If the SOURCE_BROWSER tag is set to YES then a list of source files will
    444 # be generated. Documented entities will be cross-referenced with these sources.
     604# be generated. Documented entities will be cross-referenced with these sources.
     605# Note: To get rid of all source code in the generated output, make sure also
     606# VERBATIM_HEADERS is set to NO. If you have enabled CALL_GRAPH or CALLER_GRAPH
     607# then you must also enable this option. If you don't then doxygen will produce
     608# a warning and turn it on anyway
    445609
    446610SOURCE_BROWSER         = YES
     
    468632
    469633REFERENCES_RELATION    = YES
     634
     635# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
     636# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
     637# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
     638# link to the source code.  Otherwise they will link to the documentstion.
     639
     640REFERENCES_LINK_SOURCE = YES
     641
     642# If the USE_HTAGS tag is set to YES then the references to source code
     643# will point to the HTML generated by the htags(1) tool instead of doxygen
     644# built-in source browser. The htags tool is part of GNU's global source
     645# tagging system (see http://www.gnu.org/software/global/global.html). You
     646# will need version 4.8.6 or higher.
     647
     648USE_HTAGS              = NO
    470649
    471650# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
     
    529708# standard footer.
    530709
    531 HTML_FOOTER            =
     710HTML_FOOTER            = 
    532711
    533712# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
    534713# style sheet that is used by each HTML page. It can be used to
    535714# fine-tune the look of the HTML output. If the tag is left blank doxygen
    536 # will generate a default style sheet
     715# will generate a default style sheet. Note that doxygen will try to copy
     716# the style sheet file to the HTML output directory, so don't put your own
     717# stylesheet in the HTML output directory as well, or it will be erased!
    537718
    538719HTML_STYLESHEET        =
     
    551732GENERATE_HTMLHELP      = NO
    552733
     734# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
     735# documentation will contain sections that can be hidden and shown after the
     736# page has loaded. For this to work a browser that supports
     737# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
     738# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
     739
     740HTML_DYNAMIC_SECTIONS  = NO
     741
    553742# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
    554743# be used to specify the file name of the resulting .chm file. You
    555744# can add a path in front of the file if the result should not be
    556 # written to the html output dir.
     745# written to the html output directory.
    557746
    558747CHM_FILE               =
     
    689878
    690879# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
    691 # The RTF output is optimised for Word 97 and may not look very pretty with
     880# The RTF output is optimized for Word 97 and may not look very pretty with
    692881# other RTF readers or editors.
    693882
     
    701890
    702891# If the COMPACT_RTF tag is set to YES Doxygen generates more compact
    703 # RTF documents. This may be useful for small projects and may help to
     892# RTF documents. This may be useful for small projects and may help to 
    704893# save some trees in general.
    705894
     
    716905
    717906# Load stylesheet definitions from file. Syntax is similar to doxygen's
    718 # config file, i.e. a series of assigments. You only have to provide
     907# config file, i.e. a series of assignments. You only have to provide
    719908# replacements, missing definitions are set to their default value.
    720909
     
    741930MAN_OUTPUT             = man
    742931
    743 # The MAN_EXTENSION tag determines the extension that is added to
     932# The MAN_EXTENSION tag determines the extension that is added to 
    744933# the generated man pages (default is the subroutine's section .3)
    745934
     
    760949# If the GENERATE_XML tag is set to YES Doxygen will
    761950# generate an XML file that captures the structure of
    762 # the code including all documentation. Note that this
    763 # feature is still experimental and incomplete at the
    764 # moment.
     951# the code including all documentation.
    765952
    766953GENERATE_XML           = NO
     
    783970
    784971XML_DTD                =
     972
     973# If the XML_PROGRAMLISTING tag is set to YES Doxygen will
     974# dump the program listings (including syntax highlighting
     975# and cross-referencing information) to the XML output. Note that
     976# enabling this will significantly increase the size of the XML output.
     977
     978XML_PROGRAMLISTING     = YES
    785979
    786980#---------------------------------------------------------------------------
     
    8301024
    8311025#---------------------------------------------------------------------------
    832 # Configuration options related to the preprocessor
    833 #---------------------------------------------------------------------------
    834 
    835 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
    836 # evaluate all C-preprocessor directives found in the sources and include
     1026# Configuration options related to the preprocessor   
     1027#---------------------------------------------------------------------------
     1028
     1029# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 
     1030# evaluate all C-preprocessor directives found in the sources and include 
    8371031# files.
    8381032
     
    8481042# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
    8491043# then the macro expansion is limited to the macros specified with the
    850 # PREDEFINED and EXPAND_AS_PREDEFINED tags.
     1044# PREDEFINED and EXPAND_AS_DEFINED tags.
    8511045
    8521046EXPAND_ONLY_PREDEF     = NO
     
    8611055# the preprocessor.
    8621056
    863 INCLUDE_PATH           =
     1057INCLUDE_PATH           = 
    8641058
    8651059# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
     
    8711065
    8721066# The PREDEFINED tag can be used to specify one or more macro names that
    873 # are defined before the preprocessor is started (similar to the -D option of
    874 # gcc). The argument of the tag is a list of macros of the form: name
    875 # or name=definition (no spaces). If the definition and the = are
    876 # omitted =1 is assumed.
     1067# are defined before the preprocessor is started (similar to the -D option of
     1068# gcc). The argument of the tag is a list of macros of the form: name
     1069# or name=definition (no spaces). If the definition and the = are
     1070# omitted =1 is assumed. To prevent a macro definition from being
     1071# undefined via #undef or recursively expanded use the := operator
     1072# instead of the = operator.
    8771073
    8781074PREDEFINED             = DOXYGEN
    8791075
    880 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
    881 # this tag can be used to specify a list of macro names that should be expanded.
     1076# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 
     1077# this tag can be used to specify a list of macro names that should be expanded. 
    8821078# The macro definition that is found in the sources will be used.
    8831079# Use the PREDEFINED tag if you want to use a different macro definition.
     
    8881084# doxygen's preprocessor will remove all function-like macros that are alone
    8891085# on a line, have an all uppercase name, and do not end with a semicolon. Such
    890 # function macros are typically used for boiler-plate code, and will confuse the
    891 # parser if not removed.
     1086# function macros are typically used for boiler-plate code, and will confuse
     1087# the parser if not removed.
    8921088
    8931089SKIP_FUNCTION_MACROS   = YES
    8941090
    8951091#---------------------------------------------------------------------------
    896 # Configuration::addtions related to external references   
     1092# Configuration::additions related to external references   
    8971093#---------------------------------------------------------------------------
    8981094
     
    9011097# can be added for each tagfile. The format of a tag file without
    9021098# this location is as follows:
    903 #   TAGFILES = file1 file2 ...
     1099#   TAGFILES = file1 file2 ... 
    9041100# Adding location for the tag files is done as follows:
    9051101#   TAGFILES = file1=loc1 "file2 = loc2" ...
     
    9121108# is run, you must also specify the path to the tagfile here.
    9131109
    914 TAGFILES               =
     1110TAGFILES               = 
    9151111
    9161112# When a file name is specified after GENERATE_TAGFILE, doxygen will create
    9171113# a tag file that is based on the input files it reads.
    9181114
    919 GENERATE_TAGFILE       =
     1115GENERATE_TAGFILE       = 
    9201116
    9211117# If the ALLEXTERNALS tag is set to YES all external classes will be listed
     
    9341130# interpreter (i.e. the result of `which perl').
    9351131
    936 PERL_PATH              = @PERL@
     1132PERL_PATH              = /usr/bin/perl
    9371133
    9381134#---------------------------------------------------------------------------
     
    9411137
    9421138# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
    943 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base or
    944 # super classes. Setting the tag to NO turns the diagrams off. Note that this
    945 # option is superceded by the HAVE_DOT option below. This is only a fallback. It is
    946 # recommended to install and use dot, since it yields more powerful graphs.
     1139# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
     1140# or super classes. Setting the tag to NO turns the diagrams off. Note that
     1141# this option is superseded by the HAVE_DOT option below. This is only a
     1142# fallback. It is recommended to install and use dot, since it yields more
     1143# powerful graphs.
    9471144
    9481145CLASS_DIAGRAMS         = YES
     1146
     1147# You can define message sequence charts within doxygen comments using the \msc
     1148# command. Doxygen will then run the mscgen tool (see http://www.mcternan.me.uk/mscgen/) to
     1149# produce the chart and insert it in the documentation. The MSCGEN_PATH tag allows you to
     1150# specify the directory where the mscgen tool resides. If left empty the tool is assumed to
     1151# be found in the default search path.
     1152
     1153MSCGEN_PATH            =
    9491154
    9501155# If set to YES, the inheritance and collaboration graphs will hide
     
    9751180COLLABORATION_GRAPH    = YES
    9761181
     1182# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
     1183# will generate a graph for groups, showing the direct groups dependencies
     1184
     1185GROUP_GRAPHS           = YES
     1186
    9771187# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
    978 # collaboration diagrams in a style similiar to the OMG's Unified Modeling
     1188# collaboration diagrams in a style similar to the OMG's Unified Modeling
    9791189# Language.
    9801190
    9811191UML_LOOK               = YES
    9821192
    983 # If set to YES, the inheritance and collaboration graphs will show the
     1193# If set to YES, the inheritance and collaboration graphs will show the 
    9841194# relations between templates and their instances.
    9851195
     
    10001210INCLUDED_BY_GRAPH      = YES
    10011211
    1002 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
     1212# If the CALL_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will
    10031213# generate a call dependency graph for every global function or class method.
    10041214# Note that enabling this option will significantly increase the time of a run.
     
    10081218CALL_GRAPH             = NO
    10091219
     1220# If the CALLER_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will
     1221# generate a caller dependency graph for every global function or class method.
     1222# Note that enabling this option will significantly increase the time of a run.
     1223# So in most cases it will be better to enable caller graphs for selected
     1224# functions only using the \callergraph command.
     1225
     1226CALLER_GRAPH           = NO
     1227
    10101228# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
    10111229# will graphical hierarchy of all classes instead of a textual one.
    10121230
    10131231GRAPHICAL_HIERARCHY    = YES
     1232
     1233# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
     1234# then doxygen will show the dependencies a directory has on other directories
     1235# in a graphical way. The dependency relations are determined by the #include
     1236# relations between the files in the directories.
     1237
     1238DIRECTORY_GRAPH        = YES
    10141239
    10151240# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
     
    10201245
    10211246# The tag DOT_PATH can be used to specify the path where the dot tool can be
    1022 # found. If left blank, it is assumed the dot tool can be found on the path.
     1247# found. If left blank, it is assumed the dot tool can be found in the path.
    10231248
    10241249DOT_PATH               =
     
    10301255DOTFILE_DIRS           =
    10311256
    1032 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width
    1033 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
    1034 # this value, doxygen will try to truncate the graph, so that it fits within
    1035 # the specified constraint. Beware that most browsers cannot cope with very
    1036 # large images.
    1037 
    1038 MAX_DOT_GRAPH_WIDTH    = 1024
    1039 
    1040 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height
    1041 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
    1042 # this value, doxygen will try to truncate the graph, so that it fits within
    1043 # the specified constraint. Beware that most browsers cannot cope with very
    1044 # large images.
    1045 
    1046 MAX_DOT_GRAPH_HEIGHT   = 1024
     1257# The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
     1258# nodes that will be shown in the graph. If the number of nodes in a graph
     1259# becomes larger than this value, doxygen will truncate the graph, which is
     1260# visualized by representing a node as a red box. Note that doxygen if the number
     1261# of direct children of the root node in a graph is already larger than
     1262# MAX_DOT_GRAPH_NOTES then the graph will not be shown at all. Also note
     1263# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
     1264
     1265DOT_GRAPH_MAX_NODES    = 50
    10471266
    10481267# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
    10491268# graphs generated by dot. A depth value of 3 means that only nodes reachable
    1050 # from the root by following a path via at most 3 edges will be shown. Nodes that
    1051 # lay further from the root node will be omitted. Note that setting this option to
    1052 # 1 or 2 may greatly reduce the computation time needed for large code bases. Also
    1053 # note that a graph may be further truncated if the graph's image dimensions are
    1054 # not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH and MAX_DOT_GRAPH_HEIGHT).
    1055 # If 0 is used for the depth value (the default), the graph is not depth-constrained.
     1269# from the root by following a path via at most 3 edges will be shown. Nodes
     1270# that lay further from the root node will be omitted. Note that setting this
     1271# option to 1 or 2 may greatly reduce the computation time needed for large
     1272# code bases. Also note that the size of a graph can be further restricted by
     1273# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
    10561274
    10571275MAX_DOT_GRAPH_DEPTH    = 0
     1276
     1277# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
     1278# background. This is disabled by default, which results in a white background.
     1279# Warning: Depending on the platform used, enabling this option may lead to
     1280# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
     1281# read).
     1282
     1283DOT_TRANSPARENT        = YES
     1284
     1285# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
     1286# files in one run (i.e. multiple -o and -T options on the command line). This
     1287# makes dot run faster, but since only newer versions of dot (>1.8.10)
     1288# support this, this feature is disabled by default.
     1289
     1290DOT_MULTI_TARGETS      = NO
    10581291
    10591292# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
     
    10701303
    10711304#---------------------------------------------------------------------------
    1072 # Configuration::addtions related to the search engine   
     1305# Configuration::additions related to the search engine   
    10731306#---------------------------------------------------------------------------
    10741307
     
    10771310
    10781311SEARCHENGINE           = NO
    1079 
Note: See TracChangeset for help on using the changeset viewer.