• Classes
  • Namespaces
  • Files
  • Related Pages
  • File List
  • File Members

Doxyfile.idl

Go to the documentation of this file.
00001 # Doxyfile 1.7.0
00002 
00003 # This file describes the settings to be used by the documentation system
00004 # doxygen (www.doxygen.org) for a project
00005 #
00006 # All text after a hash (#) is considered a comment and will be ignored
00007 # The format is:
00008 #       TAG = value [value, ...]
00009 # For lists items can also be appended using:
00010 #       TAG += value [value, ...]
00011 # Values that contain spaces should be placed between quotes (" ")
00012 
00013 #---------------------------------------------------------------------------
00014 # Project related configuration options
00015 #---------------------------------------------------------------------------
00016 
00017 # This tag specifies the encoding used for all characters in the config file
00018 # that follow. The default is UTF-8 which is also the encoding used for all
00019 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
00020 # iconv built into libc) for the transcoding. See
00021 # http://www.gnu.org/software/libiconv for the list of possible encodings.
00022 
00023 DOXYFILE_ENCODING      = UTF-8
00024 
00025 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
00026 # by quotes) that should identify the project.
00027 
00028 PROJECT_NAME           = "$(ALMASW_RELEASE) IDL interfaces"
00029 
00030 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
00031 # This could be handy for archiving the generated documentation or
00032 # if some version control system is used.
00033 
00034 PROJECT_NUMBER         = "@(#) $Id: Doxyfile.idl,v 1.128 2010/07/07 10:25:21 alopatin Exp $"
00035 
00036 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
00037 # base path where the generated documentation will be put.
00038 # If a relative path is entered, it will be relative to the location
00039 # where doxygen was started. If left blank the current directory will be used.
00040 
00041 OUTPUT_DIRECTORY       = man
00042 
00043 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
00044 # 4096 sub-directories (in 2 levels) under the output directory of each output
00045 # format and will distribute the generated files over these directories.
00046 # Enabling this option can be useful when feeding doxygen a huge amount of
00047 # source files, where putting all generated files in the same directory would
00048 # otherwise cause performance problems for the file system.
00049 
00050 CREATE_SUBDIRS         = NO
00051 
00052 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
00053 # documentation generated by doxygen is written. Doxygen will use this
00054 # information to generate all constant output in the proper language.
00055 # The default language is English, other supported languages are:
00056 # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
00057 # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German,
00058 # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English
00059 # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian,
00060 # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak,
00061 # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.
00062 
00063 OUTPUT_LANGUAGE        = English
00064 
00065 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
00066 # include brief member descriptions after the members that are listed in
00067 # the file and class documentation (similar to JavaDoc).
00068 # Set to NO to disable this.
00069 
00070 BRIEF_MEMBER_DESC      = YES
00071 
00072 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
00073 # the brief description of a member or function before the detailed description.
00074 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
00075 # brief descriptions will be completely suppressed.
00076 
00077 REPEAT_BRIEF           = YES
00078 
00079 # This tag implements a quasi-intelligent brief description abbreviator
00080 # that is used to form the text in various listings. Each string
00081 # in this list, if found as the leading text of the brief description, will be
00082 # stripped from the text and the result after processing the whole list, is
00083 # used as the annotated text. Otherwise, the brief description is used as-is.
00084 # If left blank, the following values are used ("$name" is automatically
00085 # replaced with the name of the entity): "The $name class" "The $name widget"
00086 # "The $name file" "is" "provides" "specifies" "contains"
00087 # "represents" "a" "an" "the"
00088 
00089 ABBREVIATE_BRIEF       =
00090 
00091 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
00092 # Doxygen will generate a detailed section even if there is only a brief
00093 # description.
00094 
00095 ALWAYS_DETAILED_SEC    = NO
00096 
00097 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
00098 # inherited members of a class in the documentation of that class as if those
00099 # members were ordinary class members. Constructors, destructors and assignment
00100 # operators of the base classes will not be shown.
00101 
00102 INLINE_INHERITED_MEMB  = NO
00103 
00104 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
00105 # path before files name in the file list and in the header files. If set
00106 # to NO the shortest path that makes the file name unique will be used.
00107 
00108 FULL_PATH_NAMES        = NO
00109 
00110 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
00111 # can be used to strip a user-defined part of the path. Stripping is
00112 # only done if one of the specified strings matches the left-hand part of
00113 # the path. The tag can be used to show relative paths in the file list.
00114 # If left blank the directory from which doxygen is run is used as the
00115 # path to strip.
00116 
00117 STRIP_FROM_PATH        =
00118 
00119 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
00120 # the path mentioned in the documentation of a class, which tells
00121 # the reader which header file to include in order to use a class.
00122 # If left blank only the name of the header file containing the class
00123 # definition is used. Otherwise one should specify the include paths that
00124 # are normally passed to the compiler using the -I flag.
00125 
00126 STRIP_FROM_INC_PATH    =
00127 
00128 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
00129 # (but less readable) file names. This can be useful is your file systems
00130 # doesn't support long names like on DOS, Mac, or CD-ROM.
00131 
00132 SHORT_NAMES            = NO
00133 
00134 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
00135 # will interpret the first line (until the first dot) of a JavaDoc-style
00136 # comment as the brief description. If set to NO, the JavaDoc
00137 # comments will behave just like regular Qt-style comments
00138 # (thus requiring an explicit @brief command for a brief description.)
00139 
00140 JAVADOC_AUTOBRIEF      = NO
00141 
00142 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will
00143 # interpret the first line (until the first dot) of a Qt-style
00144 # comment as the brief description. If set to NO, the comments
00145 # will behave just like regular Qt-style comments (thus requiring
00146 # an explicit \brief command for a brief description.)
00147 
00148 QT_AUTOBRIEF           = NO
00149 
00150 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
00151 # treat a multi-line C++ special comment block (i.e. a block of //! or ///
00152 # comments) as a brief description. This used to be the default behaviour.
00153 # The new default is to treat a multi-line C++ comment block as a detailed
00154 # description. Set this tag to YES if you prefer the old behaviour instead.
00155 
00156 MULTILINE_CPP_IS_BRIEF = NO
00157 
00158 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
00159 # member inherits the documentation from any documented member that it
00160 # re-implements.
00161 
00162 INHERIT_DOCS           = YES
00163 
00164 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
00165 # a new page for each member. If set to NO, the documentation of a member will
00166 # be part of the file/class/namespace that contains it.
00167 
00168 SEPARATE_MEMBER_PAGES  = NO
00169 
00170 # The TAB_SIZE tag can be used to set the number of spaces in a tab.
00171 # Doxygen uses this value to replace tabs by spaces in code fragments.
00172 
00173 TAB_SIZE               = 8
00174 
00175 # This tag can be used to specify a number of aliases that acts
00176 # as commands in the documentation. An alias has the form "name=value".
00177 # For example adding "sideeffect=\par Side Effects:\n" will allow you to
00178 # put the command \sideeffect (or @sideeffect) in the documentation, which
00179 # will result in a user-defined paragraph with heading "Side Effects:".
00180 # You can put \n's in the value part of an alias to insert newlines.
00181 
00182 ALIASES                =
00183 
00184 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
00185 # sources only. Doxygen will then generate output that is more tailored for C.
00186 # For instance, some of the names that are used will be different. The list
00187 # of all members will be omitted, etc.
00188 
00189 OPTIMIZE_OUTPUT_FOR_C  = NO
00190 
00191 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
00192 # sources only. Doxygen will then generate output that is more tailored for
00193 # Java. For instance, namespaces will be presented as packages, qualified
00194 # scopes will look different, etc.
00195 
00196 OPTIMIZE_OUTPUT_JAVA   = NO
00197 
00198 # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
00199 # sources only. Doxygen will then generate output that is more tailored for
00200 # Fortran.
00201 
00202 OPTIMIZE_FOR_FORTRAN   = NO
00203 
00204 # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
00205 # sources. Doxygen will then generate output that is tailored for
00206 # VHDL.
00207 
00208 OPTIMIZE_OUTPUT_VHDL   = NO
00209 
00210 # Doxygen selects the parser to use depending on the extension of the files it
00211 # parses. With this tag you can assign which parser to use for a given extension.
00212 # Doxygen has a built-in mapping, but you can override or extend it using this
00213 # tag. The format is ext=language, where ext is a file extension, and language
00214 # is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C,
00215 # C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make
00216 # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
00217 # (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions
00218 # you also need to set FILE_PATTERNS otherwise the files are not read by doxygen.
00219 
00220 EXTENSION_MAPPING      =
00221 
00222 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
00223 # to include (a tag file for) the STL sources as input, then you should
00224 # set this tag to YES in order to let doxygen match functions declarations and
00225 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
00226 # func(std::string) {}). This also make the inheritance and collaboration
00227 # diagrams that involve STL classes more complete and accurate.
00228 
00229 BUILTIN_STL_SUPPORT    = NO
00230 
00231 # If you use Microsoft's C++/CLI language, you should set this option to YES to
00232 # enable parsing support.
00233 
00234 CPP_CLI_SUPPORT        = NO
00235 
00236 # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
00237 # Doxygen will parse them like normal C++ but will assume all classes use public
00238 # instead of private inheritance when no explicit protection keyword is present.
00239 
00240 SIP_SUPPORT            = NO
00241 
00242 # For Microsoft's IDL there are propget and propput attributes to indicate getter
00243 # and setter methods for a property. Setting this option to YES (the default)
00244 # will make doxygen to replace the get and set methods by a property in the
00245 # documentation. This will only work if the methods are indeed getting or
00246 # setting a simple type. If this is not the case, or you want to show the
00247 # methods anyway, you should set this option to NO.
00248 
00249 IDL_PROPERTY_SUPPORT   = YES
00250 
00251 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
00252 # tag is set to YES, then doxygen will reuse the documentation of the first
00253 # member in the group (if any) for the other members of the group. By default
00254 # all members of a group must be documented explicitly.
00255 
00256 DISTRIBUTE_GROUP_DOC   = NO
00257 
00258 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
00259 # the same type (for instance a group of public functions) to be put as a
00260 # subgroup of that type (e.g. under the Public Functions section). Set it to
00261 # NO to prevent subgrouping. Alternatively, this can be done per class using
00262 # the \nosubgrouping command.
00263 
00264 SUBGROUPING            = YES
00265 
00266 # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
00267 # is documented as struct, union, or enum with the name of the typedef. So
00268 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct
00269 # with name TypeT. When disabled the typedef will appear as a member of a file,
00270 # namespace, or class. And the struct will be named TypeS. This can typically
00271 # be useful for C code in case the coding convention dictates that all compound
00272 # types are typedef'ed and only the typedef is referenced, never the tag name.
00273 
00274 TYPEDEF_HIDES_STRUCT   = NO
00275 
00276 # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to
00277 # determine which symbols to keep in memory and which to flush to disk.
00278 # When the cache is full, less often used symbols will be written to disk.
00279 # For small to medium size projects (<1000 input files) the default value is
00280 # probably good enough. For larger projects a too small cache size can cause
00281 # doxygen to be busy swapping symbols to and from disk most of the time
00282 # causing a significant performance penality.
00283 # If the system has enough physical memory increasing the cache will improve the
00284 # performance by keeping more symbols in memory. Note that the value works on
00285 # a logarithmic scale so increasing the size by one will rougly double the
00286 # memory usage. The cache size is given by this formula:
00287 # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
00288 # corresponding to a cache size of 2^16 = 65536 symbols
00289 
00290 SYMBOL_CACHE_SIZE      = 0
00291 
00292 #---------------------------------------------------------------------------
00293 # Build related configuration options
00294 #---------------------------------------------------------------------------
00295 
00296 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
00297 # documentation are documented, even if no documentation was available.
00298 # Private class members and static file members will be hidden unless
00299 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
00300 
00301 EXTRACT_ALL            = YES
00302 
00303 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
00304 # will be included in the documentation.
00305 
00306 EXTRACT_PRIVATE        = NO
00307 
00308 # If the EXTRACT_STATIC tag is set to YES all static members of a file
00309 # will be included in the documentation.
00310 
00311 EXTRACT_STATIC         = YES
00312 
00313 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
00314 # defined locally in source files will be included in the documentation.
00315 # If set to NO only classes defined in header files are included.
00316 
00317 EXTRACT_LOCAL_CLASSES  = YES
00318 
00319 # This flag is only useful for Objective-C code. When set to YES local
00320 # methods, which are defined in the implementation section but not in
00321 # the interface are included in the documentation.
00322 # If set to NO (the default) only methods in the interface are included.
00323 
00324 EXTRACT_LOCAL_METHODS  = NO
00325 
00326 # If this flag is set to YES, the members of anonymous namespaces will be
00327 # extracted and appear in the documentation as a namespace called
00328 # 'anonymous_namespace{file}', where file will be replaced with the base
00329 # name of the file that contains the anonymous namespace. By default
00330 # anonymous namespace are hidden.
00331 
00332 EXTRACT_ANON_NSPACES   = NO
00333 
00334 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
00335 # undocumented members of documented classes, files or namespaces.
00336 # If set to NO (the default) these members will be included in the
00337 # various overviews, but no documentation section is generated.
00338 # This option has no effect if EXTRACT_ALL is enabled.
00339 
00340 HIDE_UNDOC_MEMBERS     = NO
00341 
00342 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
00343 # undocumented classes that are normally visible in the class hierarchy.
00344 # If set to NO (the default) these classes will be included in the various
00345 # overviews. This option has no effect if EXTRACT_ALL is enabled.
00346 
00347 HIDE_UNDOC_CLASSES     = NO
00348 
00349 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
00350 # friend (class|struct|union) declarations.
00351 # If set to NO (the default) these declarations will be included in the
00352 # documentation.
00353 
00354 HIDE_FRIEND_COMPOUNDS  = NO
00355 
00356 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
00357 # documentation blocks found inside the body of a function.
00358 # If set to NO (the default) these blocks will be appended to the
00359 # function's detailed documentation block.
00360 
00361 HIDE_IN_BODY_DOCS      = NO
00362 
00363 # The INTERNAL_DOCS tag determines if documentation
00364 # that is typed after a \internal command is included. If the tag is set
00365 # to NO (the default) then the documentation will be excluded.
00366 # Set it to YES to include the internal documentation.
00367 
00368 INTERNAL_DOCS          = NO
00369 
00370 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
00371 # file names in lower-case letters. If set to YES upper-case letters are also
00372 # allowed. This is useful if you have classes or files whose names only differ
00373 # in case and if your file system supports case sensitive file names. Windows
00374 # and Mac users are advised to set this option to NO.
00375 
00376 CASE_SENSE_NAMES       = YES
00377 
00378 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
00379 # will show members with their full class and namespace scopes in the
00380 # documentation. If set to YES the scope will be hidden.
00381 
00382 HIDE_SCOPE_NAMES       = NO
00383 
00384 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
00385 # will put a list of the files that are included by a file in the documentation
00386 # of that file.
00387 
00388 SHOW_INCLUDE_FILES     = YES
00389 
00390 # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen
00391 # will list include files with double quotes in the documentation
00392 # rather than with sharp brackets.
00393 
00394 FORCE_LOCAL_INCLUDES   = NO
00395 
00396 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
00397 # is inserted in the documentation for inline members.
00398 
00399 INLINE_INFO            = YES
00400 
00401 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
00402 # will sort the (detailed) documentation of file and class members
00403 # alphabetically by member name. If set to NO the members will appear in
00404 # declaration order.
00405 
00406 SORT_MEMBER_DOCS       = YES
00407 
00408 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
00409 # brief documentation of file, namespace and class members alphabetically
00410 # by member name. If set to NO (the default) the members will appear in
00411 # declaration order.
00412 
00413 SORT_BRIEF_DOCS        = NO
00414 
00415 # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen
00416 # will sort the (brief and detailed) documentation of class members so that
00417 # constructors and destructors are listed first. If set to NO (the default)
00418 # the constructors will appear in the respective orders defined by
00419 # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS.
00420 # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO
00421 # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.
00422 
00423 SORT_MEMBERS_CTORS_1ST = NO
00424 
00425 # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
00426 # hierarchy of group names into alphabetical order. If set to NO (the default)
00427 # the group names will appear in their defined order.
00428 
00429 SORT_GROUP_NAMES       = NO
00430 
00431 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
00432 # sorted by fully-qualified names, including namespaces. If set to
00433 # NO (the default), the class list will be sorted only by class name,
00434 # not including the namespace part.
00435 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
00436 # Note: This option applies only to the class list, not to the
00437 # alphabetical list.
00438 
00439 SORT_BY_SCOPE_NAME     = NO
00440 
00441 # The GENERATE_TODOLIST tag can be used to enable (YES) or
00442 # disable (NO) the todo list. This list is created by putting \todo
00443 # commands in the documentation.
00444 
00445 GENERATE_TODOLIST      = YES
00446 
00447 # The GENERATE_TESTLIST tag can be used to enable (YES) or
00448 # disable (NO) the test list. This list is created by putting \test
00449 # commands in the documentation.
00450 
00451 GENERATE_TESTLIST      = YES
00452 
00453 # The GENERATE_BUGLIST tag can be used to enable (YES) or
00454 # disable (NO) the bug list. This list is created by putting \bug
00455 # commands in the documentation.
00456 
00457 GENERATE_BUGLIST       = YES
00458 
00459 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
00460 # disable (NO) the deprecated list. This list is created by putting
00461 # \deprecated commands in the documentation.
00462 
00463 GENERATE_DEPRECATEDLIST= YES
00464 
00465 # The ENABLED_SECTIONS tag can be used to enable conditional
00466 # documentation sections, marked by \if sectionname ... \endif.
00467 
00468 ENABLED_SECTIONS       =
00469 
00470 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines
00471 # the initial value of a variable or define consists of for it to appear in
00472 # the documentation. If the initializer consists of more lines than specified
00473 # here it will be hidden. Use a value of 0 to hide initializers completely.
00474 # The appearance of the initializer of individual variables and defines in the
00475 # documentation can be controlled using \showinitializer or \hideinitializer
00476 # command in the documentation regardless of this setting.
00477 
00478 MAX_INITIALIZER_LINES  = 30
00479 
00480 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated
00481 # at the bottom of the documentation of classes and structs. If set to YES the
00482 # list will mention the files that were used to generate the documentation.
00483 
00484 SHOW_USED_FILES        = YES
00485 
00486 # If the sources in your project are distributed over multiple directories
00487 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
00488 # in the documentation. The default is NO.
00489 
00490 SHOW_DIRECTORIES       = NO
00491 
00492 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
00493 # This will remove the Files entry from the Quick Index and from the
00494 # Folder Tree View (if specified). The default is YES.
00495 
00496 SHOW_FILES             = YES
00497 
00498 # Set the SHOW_NAMESPACES tag to NO to disable the generation of the
00499 # Namespaces page.
00500 # This will remove the Namespaces entry from the Quick Index
00501 # and from the Folder Tree View (if specified). The default is YES.
00502 
00503 SHOW_NAMESPACES        = YES
00504 
00505 # The FILE_VERSION_FILTER tag can be used to specify a program or script that
00506 # doxygen should invoke to get the current version for each file (typically from
00507 # the version control system). Doxygen will invoke the program by executing (via
00508 # popen()) the command <command> <input-file>, where <command> is the value of
00509 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
00510 # provided by doxygen. Whatever the program writes to standard output
00511 # is used as the file version. See the manual for examples.
00512 
00513 FILE_VERSION_FILTER    =
00514 
00515 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
00516 # by doxygen. The layout file controls the global structure of the generated
00517 # output files in an output format independent way. The create the layout file
00518 # that represents doxygen's defaults, run doxygen with the -l option.
00519 # You can optionally specify a file name after the option, if omitted
00520 # DoxygenLayout.xml will be used as the name of the layout file.
00521 
00522 LAYOUT_FILE            = acsBUILD/config/Doxylayout
00523 
00524 #---------------------------------------------------------------------------
00525 # configuration options related to warning and progress messages
00526 #---------------------------------------------------------------------------
00527 
00528 # The QUIET tag can be used to turn on/off the messages that are generated
00529 # by doxygen. Possible values are YES and NO. If left blank NO is used.
00530 
00531 QUIET                  = NO
00532 
00533 # The WARNINGS tag can be used to turn on/off the warning messages that are
00534 # generated by doxygen. Possible values are YES and NO. If left blank
00535 # NO is used.
00536 
00537 WARNINGS               = YES
00538 
00539 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
00540 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will
00541 # automatically be disabled.
00542 
00543 WARN_IF_UNDOCUMENTED   = NO
00544 
00545 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
00546 # potential errors in the documentation, such as not documenting some
00547 # parameters in a documented function, or documenting parameters that
00548 # don't exist or using markup commands wrongly.
00549 
00550 WARN_IF_DOC_ERROR      = NO
00551 
00552 # This WARN_NO_PARAMDOC option can be abled to get warnings for
00553 # functions that are documented, but have no documentation for their parameters
00554 # or return value. If set to NO (the default) doxygen will only warn about
00555 # wrong or incomplete parameter documentation, but not about the absence of
00556 # documentation.
00557 
00558 WARN_NO_PARAMDOC       = NO
00559 
00560 # The WARN_FORMAT tag determines the format of the warning messages that
00561 # doxygen can produce. The string should contain the $file, $line, and $text
00562 # tags, which will be replaced by the file and line number from which the
00563 # warning originated and the warning text. Optionally the format may contain
00564 # $version, which will be replaced by the version of the file (if it could
00565 # be obtained via FILE_VERSION_FILTER)
00566 
00567 WARN_FORMAT            =
00568 
00569 # The WARN_LOGFILE tag can be used to specify a file to which warning
00570 # and error messages should be written. If left blank the output is written
00571 # to stderr.
00572 
00573 WARN_LOGFILE           =
00574 
00575 #---------------------------------------------------------------------------
00576 # configuration options related to the input files
00577 #---------------------------------------------------------------------------
00578 
00579 # The INPUT tag can be used to specify the files and/or directories that contain
00580 # documented source files. You may enter file names like "myfile.cpp" or
00581 # directories like "/usr/src/myproject". Separate the files or directories
00582 # with spaces.
00583 
00584 INPUT                  = .
00585 
00586 # This tag can be used to specify the character encoding of the source files
00587 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
00588 # also the default input encoding. Doxygen uses libiconv (or the iconv built
00589 # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for
00590 # the list of possible encodings.
00591 
00592 INPUT_ENCODING         = UTF-8
00593 
00594 # If the value of the INPUT tag contains directories, you can use the
00595 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
00596 # and *.h) to filter out the source-files in the directories. If left
00597 # blank the following patterns are tested:
00598 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
00599 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
00600 
00601 FILE_PATTERNS          = *.idl \
00602                          *.midl
00603 
00604 # The RECURSIVE tag can be used to turn specify whether or not subdirectories
00605 # should be searched for input files as well. Possible values are YES and NO.
00606 # If left blank NO is used.
00607 
00608 RECURSIVE              = yes
00609 
00610 # The EXCLUDE tag can be used to specify files and/or directories that should
00611 # excluded from the INPUT source files. This way you can easily exclude a
00612 # subdirectory from a directory tree whose root is specified with the INPUT tag.
00613 
00614 EXCLUDE                =
00615 
00616 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or
00617 # directories that are symbolic links (a Unix filesystem feature) are excluded
00618 # from the input.
00619 
00620 EXCLUDE_SYMLINKS       = NO
00621 
00622 # If the value of the INPUT tag contains directories, you can use the
00623 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
00624 # certain files from those directories. Note that the wildcards are matched
00625 # against the file with absolute path, so to exclude all test directories
00626 # for example use the pattern */test/*
00627 
00628 EXCLUDE_PATTERNS       =
00629 
00630 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
00631 # (namespaces, classes, functions, etc.) that should be excluded from the
00632 # output. The symbol name can be a fully qualified name, a word, or if the
00633 # wildcard * is used, a substring. Examples: ANamespace, AClass,
00634 # AClass::ANamespace, ANamespace::*Test
00635 
00636 EXCLUDE_SYMBOLS        =
00637 
00638 # The EXAMPLE_PATH tag can be used to specify one or more files or
00639 # directories that contain example code fragments that are included (see
00640 # the \include command).
00641 
00642 EXAMPLE_PATH           =
00643 
00644 # If the value of the EXAMPLE_PATH tag contains directories, you can use the
00645 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
00646 # and *.h) to filter out the source-files in the directories. If left
00647 # blank all files are included.
00648 
00649 EXAMPLE_PATTERNS       =
00650 
00651 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
00652 # searched for input files to be used with the \include or \dontinclude
00653 # commands irrespective of the value of the RECURSIVE tag.
00654 # Possible values are YES and NO. If left blank NO is used.
00655 
00656 EXAMPLE_RECURSIVE      = NO
00657 
00658 # The IMAGE_PATH tag can be used to specify one or more files or
00659 # directories that contain image that are included in the documentation (see
00660 # the \image command).
00661 
00662 IMAGE_PATH             =
00663 
00664 # The INPUT_FILTER tag can be used to specify a program that doxygen should
00665 # invoke to filter for each input file. Doxygen will invoke the filter program
00666 # by executing (via popen()) the command <filter> <input-file>, where <filter>
00667 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an
00668 # input file. Doxygen will then use the output that the filter program writes
00669 # to standard output.
00670 # If FILTER_PATTERNS is specified, this tag will be
00671 # ignored.
00672 
00673 INPUT_FILTER           =
00674 
00675 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
00676 # basis.
00677 # Doxygen will compare the file name with each pattern and apply the
00678 # filter if there is a match.
00679 # The filters are a list of the form:
00680 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
00681 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
00682 # is applied to all files.
00683 
00684 FILTER_PATTERNS        =
00685 
00686 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
00687 # INPUT_FILTER) will be used to filter the input files when producing source
00688 # files to browse (i.e. when SOURCE_BROWSER is set to YES).
00689 
00690 FILTER_SOURCE_FILES    = NO
00691 
00692 #---------------------------------------------------------------------------
00693 # configuration options related to source browsing
00694 #---------------------------------------------------------------------------
00695 
00696 # If the SOURCE_BROWSER tag is set to YES then a list of source files will
00697 # be generated. Documented entities will be cross-referenced with these sources.
00698 # Note: To get rid of all source code in the generated output, make sure also
00699 # VERBATIM_HEADERS is set to NO.
00700 
00701 SOURCE_BROWSER         = NO
00702 
00703 # Setting the INLINE_SOURCES tag to YES will include the body
00704 # of functions and classes directly in the documentation.
00705 
00706 INLINE_SOURCES         = NO
00707 
00708 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
00709 # doxygen to hide any special comment blocks from generated source code
00710 # fragments. Normal C and C++ comments will always remain visible.
00711 
00712 STRIP_CODE_COMMENTS    = YES
00713 
00714 # If the REFERENCED_BY_RELATION tag is set to YES
00715 # then for each documented function all documented
00716 # functions referencing it will be listed.
00717 
00718 REFERENCED_BY_RELATION = YES
00719 
00720 # If the REFERENCES_RELATION tag is set to YES
00721 # then for each documented function all documented entities
00722 # called/used by that function will be listed.
00723 
00724 REFERENCES_RELATION    = YES
00725 
00726 # If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
00727 # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
00728 # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
00729 # link to the source code.
00730 # Otherwise they will link to the documentation.
00731 
00732 REFERENCES_LINK_SOURCE = YES
00733 
00734 # If the USE_HTAGS tag is set to YES then the references to source code
00735 # will point to the HTML generated by the htags(1) tool instead of doxygen
00736 # built-in source browser. The htags tool is part of GNU's global source
00737 # tagging system (see http://www.gnu.org/software/global/global.html). You
00738 # will need version 4.8.6 or higher.
00739 
00740 USE_HTAGS              = NO
00741 
00742 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
00743 # will generate a verbatim copy of the header file for each class for
00744 # which an include is specified. Set to NO to disable this.
00745 
00746 VERBATIM_HEADERS       = YES
00747 
00748 #---------------------------------------------------------------------------
00749 # configuration options related to the alphabetical class index
00750 #---------------------------------------------------------------------------
00751 
00752 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
00753 # of all compounds will be generated. Enable this if the project
00754 # contains a lot of classes, structs, unions or interfaces.
00755 
00756 ALPHABETICAL_INDEX     = YES
00757 
00758 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
00759 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
00760 # in which this list will be split (can be a number in the range [1..20])
00761 
00762 COLS_IN_ALPHA_INDEX    = 1
00763 
00764 # In case all classes in a project start with a common prefix, all
00765 # classes will be put under the same header in the alphabetical index.
00766 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that
00767 # should be ignored while generating the index headers.
00768 
00769 IGNORE_PREFIX          =
00770 
00771 #---------------------------------------------------------------------------
00772 # configuration options related to the HTML output
00773 #---------------------------------------------------------------------------
00774 
00775 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
00776 # generate HTML output.
00777 
00778 GENERATE_HTML          = YES
00779 
00780 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
00781 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
00782 # put in front of it. If left blank `html' will be used as the default path.
00783 
00784 HTML_OUTPUT            = idl
00785 
00786 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for
00787 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank
00788 # doxygen will generate files with .html extension.
00789 
00790 HTML_FILE_EXTENSION    = .html
00791 
00792 # The HTML_HEADER tag can be used to specify a personal HTML header for
00793 # each generated HTML page. If it is left blank doxygen will generate a
00794 # standard header.
00795 
00796 HTML_HEADER            =
00797 
00798 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
00799 # each generated HTML page. If it is left blank doxygen will generate a
00800 # standard footer.
00801 
00802 HTML_FOOTER            =
00803 
00804 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading
00805 # style sheet that is used by each HTML page. It can be used to
00806 # fine-tune the look of the HTML output. If the tag is left blank doxygen
00807 # will generate a default style sheet. Note that doxygen will try to copy
00808 # the style sheet file to the HTML output directory, so don't put your own
00809 # stylesheet in the HTML output directory as well, or it will be erased!
00810 
00811 HTML_STYLESHEET        =
00812 
00813 # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output.
00814 # Doxygen will adjust the colors in the stylesheet and background images
00815 # according to this color. Hue is specified as an angle on a colorwheel,
00816 # see http://en.wikipedia.org/wiki/Hue for more information.
00817 # For instance the value 0 represents red, 60 is yellow, 120 is green,
00818 # 180 is cyan, 240 is blue, 300 purple, and 360 is red again.
00819 # The allowed range is 0 to 359.
00820 
00821 HTML_COLORSTYLE_HUE    = 220
00822 
00823 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of
00824 # the colors in the HTML output. For a value of 0 the output will use
00825 # grayscales only. A value of 255 will produce the most vivid colors.
00826 
00827 HTML_COLORSTYLE_SAT    = 100
00828 
00829 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to
00830 # the luminance component of the colors in the HTML output. Values below
00831 # 100 gradually make the output lighter, whereas values above 100 make
00832 # the output darker. The value divided by 100 is the actual gamma applied,
00833 # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2,
00834 # and 100 does not change the gamma.
00835 
00836 HTML_COLORSTYLE_GAMMA  = 80
00837 
00838 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
00839 # page will contain the date and time when the page was generated. Setting
00840 # this to NO can help when comparing the output of multiple runs.
00841 
00842 HTML_TIMESTAMP         = YES
00843 
00844 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
00845 # files or namespaces will be aligned in HTML using tables. If set to
00846 # NO a bullet list will be used.
00847 
00848 HTML_ALIGN_MEMBERS     = YES
00849 
00850 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
00851 # documentation will contain sections that can be hidden and shown after the
00852 # page has loaded. For this to work a browser that supports
00853 # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
00854 # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
00855 
00856 HTML_DYNAMIC_SECTIONS  = NO
00857 
00858 # If the GENERATE_DOCSET tag is set to YES, additional index files
00859 # will be generated that can be used as input for Apple's Xcode 3
00860 # integrated development environment, introduced with OSX 10.5 (Leopard).
00861 # To create a documentation set, doxygen will generate a Makefile in the
00862 # HTML output directory. Running make will produce the docset in that
00863 # directory and running "make install" will install the docset in
00864 # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find
00865 # it at startup.
00866 # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
00867 # for more information.
00868 
00869 GENERATE_DOCSET        = NO
00870 
00871 # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the
00872 # feed. A documentation feed provides an umbrella under which multiple
00873 # documentation sets from a single provider (such as a company or product suite)
00874 # can be grouped.
00875 
00876 DOCSET_FEEDNAME        = "Doxygen generated docs"
00877 
00878 # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that
00879 # should uniquely identify the documentation set bundle. This should be a
00880 # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen
00881 # will append .docset to the name.
00882 
00883 DOCSET_BUNDLE_ID       = org.doxygen.Project
00884 
00885 # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify
00886 # the documentation publisher. This should be a reverse domain-name style
00887 # string, e.g. com.mycompany.MyDocSet.documentation.
00888 
00889 DOCSET_PUBLISHER_ID    = org.doxygen.Publisher
00890 
00891 # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher.
00892 
00893 DOCSET_PUBLISHER_NAME  = Publisher
00894 
00895 # If the GENERATE_HTMLHELP tag is set to YES, additional index files
00896 # will be generated that can be used as input for tools like the
00897 # Microsoft HTML help workshop to generate a compiled HTML help file (.chm)
00898 # of the generated HTML documentation.
00899 
00900 GENERATE_HTMLHELP      = NO
00901 
00902 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
00903 # be used to specify the file name of the resulting .chm file. You
00904 # can add a path in front of the file if the result should not be
00905 # written to the html output directory.
00906 
00907 CHM_FILE               =
00908 
00909 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
00910 # be used to specify the location (absolute path including file name) of
00911 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
00912 # the HTML help compiler on the generated index.hhp.
00913 
00914 HHC_LOCATION           =
00915 
00916 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
00917 # controls if a separate .chi index file is generated (YES) or that
00918 # it should be included in the master .chm file (NO).
00919 
00920 GENERATE_CHI           = NO
00921 
00922 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING
00923 # is used to encode HtmlHelp index (hhk), content (hhc) and project file
00924 # content.
00925 
00926 CHM_INDEX_ENCODING     =
00927 
00928 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
00929 # controls whether a binary table of contents is generated (YES) or a
00930 # normal table of contents (NO) in the .chm file.
00931 
00932 BINARY_TOC             = NO
00933 
00934 # The TOC_EXPAND flag can be set to YES to add extra items for group members
00935 # to the contents of the HTML help documentation and to the tree view.
00936 
00937 TOC_EXPAND             = NO
00938 
00939 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
00940 # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated
00941 # that can be used as input for Qt's qhelpgenerator to generate a
00942 # Qt Compressed Help (.qch) of the generated HTML documentation.
00943 
00944 GENERATE_QHP           = NO
00945 
00946 # If the QHG_LOCATION tag is specified, the QCH_FILE tag can
00947 # be used to specify the file name of the resulting .qch file.
00948 # The path specified is relative to the HTML output folder.
00949 
00950 QCH_FILE               =
00951 
00952 # The QHP_NAMESPACE tag specifies the namespace to use when generating
00953 # Qt Help Project output. For more information please see
00954 # http://doc.trolltech.com/qthelpproject.html#namespace
00955 
00956 QHP_NAMESPACE          = org.doxygen.Project
00957 
00958 # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating
00959 # Qt Help Project output. For more information please see
00960 # http://doc.trolltech.com/qthelpproject.html#virtual-folders
00961 
00962 QHP_VIRTUAL_FOLDER     = doc
00963 
00964 # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to
00965 # add. For more information please see
00966 # http://doc.trolltech.com/qthelpproject.html#custom-filters
00967 
00968 QHP_CUST_FILTER_NAME   =
00969 
00970 # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the
00971 # custom filter to add. For more information please see
00972 # <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters">
00973 # Qt Help Project / Custom Filters</a>.
00974 
00975 QHP_CUST_FILTER_ATTRS  =
00976 
00977 # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
00978 # project's
00979 # filter section matches.
00980 # <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes">
00981 # Qt Help Project / Filter Attributes</a>.
00982 
00983 QHP_SECT_FILTER_ATTRS  =
00984 
00985 # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can
00986 # be used to specify the location of Qt's qhelpgenerator.
00987 # If non-empty doxygen will try to run qhelpgenerator on the generated
00988 # .qhp file.
00989 
00990 QHG_LOCATION           =
00991 
00992 # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files
00993 #  will be generated, which together with the HTML files, form an Eclipse help
00994 # plugin. To install this plugin and make it available under the help contents
00995 # menu in Eclipse, the contents of the directory containing the HTML and XML
00996 # files needs to be copied into the plugins directory of eclipse. The name of
00997 # the directory within the plugins directory should be the same as
00998 # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before
00999 # the help appears.
01000 
01001 GENERATE_ECLIPSEHELP   = NO
01002 
01003 # A unique identifier for the eclipse help plugin. When installing the plugin
01004 # the directory name containing the HTML and XML files should also have
01005 # this name.
01006 
01007 ECLIPSE_DOC_ID         = org.doxygen.Project
01008 
01009 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at
01010 # top of each HTML page. The value NO (the default) enables the index and
01011 # the value YES disables it.
01012 
01013 DISABLE_INDEX          = NO
01014 
01015 # This tag can be used to set the number of enum values (range [1..20])
01016 # that doxygen will group on one line in the generated HTML documentation.
01017 
01018 ENUM_VALUES_PER_LINE   = 4
01019 
01020 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
01021 # structure should be generated to display hierarchical information.
01022 # If the tag value is set to YES, a side panel will be generated
01023 # containing a tree-like index structure (just like the one that
01024 # is generated for HTML Help). For this to work a browser that supports
01025 # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser).
01026 # Windows users are probably better off using the HTML help feature.
01027 
01028 GENERATE_TREEVIEW      = YES
01029 
01030 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
01031 # and Class Hierarchy pages using a tree view instead of an ordered list.
01032 
01033 USE_INLINE_TREES       = NO
01034 
01035 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
01036 # used to set the initial width (in pixels) of the frame in which the tree
01037 # is shown.
01038 
01039 TREEVIEW_WIDTH         = 250
01040 
01041 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open
01042 # links to external symbols imported via tag files in a separate window.
01043 
01044 EXT_LINKS_IN_WINDOW    = NO
01045 
01046 # Use this tag to change the font size of Latex formulas included
01047 # as images in the HTML documentation. The default is 10. Note that
01048 # when you change the font size after a successful doxygen run you need
01049 # to manually remove any form_*.png images from the HTML output directory
01050 # to force them to be regenerated.
01051 
01052 FORMULA_FONTSIZE       = 10
01053 
01054 # When the SEARCHENGINE tag is enabled doxygen will generate a search box
01055 # for the HTML output. The underlying search engine uses javascript
01056 # and DHTML and should work on any modern browser. Note that when using
01057 # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets
01058 # (GENERATE_DOCSET) there is already a search function so this one should
01059 # typically be disabled. For large projects the javascript based search engine
01060 # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.
01061 
01062 SEARCHENGINE           = NO
01063 
01064 # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
01065 # implemented using a PHP enabled web server instead of at the web client
01066 # using Javascript. Doxygen will generate the search PHP script and index
01067 # file to put on the web server. The advantage of the server
01068 # based approach is that it scales better to large projects and allows
01069 # full text search. The disadvances is that it is more difficult to setup
01070 # and does not have live searching capabilities.
01071 
01072 SERVER_BASED_SEARCH    = NO
01073 
01074 #---------------------------------------------------------------------------
01075 # configuration options related to the LaTeX output
01076 #---------------------------------------------------------------------------
01077 
01078 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
01079 # generate Latex output.
01080 
01081 GENERATE_LATEX         = NO
01082 
01083 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
01084 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
01085 # put in front of it. If left blank `latex' will be used as the default path.
01086 
01087 LATEX_OUTPUT           = pdf
01088 
01089 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
01090 # invoked. If left blank `latex' will be used as the default command name.
01091 # Note that when enabling USE_PDFLATEX this option is only used for
01092 # generating bitmaps for formulas in the HTML output, but not in the
01093 # Makefile that is written to the output directory.
01094 
01095 LATEX_CMD_NAME         = latex
01096 
01097 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
01098 # generate index for LaTeX. If left blank `makeindex' will be used as the
01099 # default command name.
01100 
01101 MAKEINDEX_CMD_NAME     = makeindex
01102 
01103 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
01104 # LaTeX documents. This may be useful for small projects and may help to
01105 # save some trees in general.
01106 
01107 COMPACT_LATEX          = NO
01108 
01109 # The PAPER_TYPE tag can be used to set the paper type that is used
01110 # by the printer. Possible values are: a4, a4wide, letter, legal and
01111 # executive. If left blank a4wide will be used.
01112 
01113 PAPER_TYPE             = a4
01114 
01115 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
01116 # packages that should be included in the LaTeX output.
01117 
01118 EXTRA_PACKAGES         =
01119 
01120 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
01121 # the generated latex document. The header should contain everything until
01122 # the first chapter. If it is left blank doxygen will generate a
01123 # standard header. Notice: only use this tag if you know what you are doing!
01124 
01125 LATEX_HEADER           =
01126 
01127 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
01128 # is prepared for conversion to pdf (using ps2pdf). The pdf file will
01129 # contain links (just like the HTML output) instead of page references
01130 # This makes the output suitable for online browsing using a pdf viewer.
01131 
01132 PDF_HYPERLINKS         = YES
01133 
01134 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
01135 # plain latex in the generated Makefile. Set this option to YES to get a
01136 # higher quality PDF documentation.
01137 
01138 USE_PDFLATEX           = YES
01139 
01140 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
01141 # command to the generated LaTeX files. This will instruct LaTeX to keep
01142 # running if errors occur, instead of asking the user for help.
01143 # This option is also used when generating formulas in HTML.
01144 
01145 LATEX_BATCHMODE        = YES
01146 
01147 # If LATEX_HIDE_INDICES is set to YES then doxygen will not
01148 # include the index chapters (such as File Index, Compound Index, etc.)
01149 # in the output.
01150 
01151 LATEX_HIDE_INDICES     = NO
01152 
01153 # If LATEX_SOURCE_CODE is set to YES then doxygen will include
01154 # source code with syntax highlighting in the LaTeX output.
01155 # Note that which sources are shown also depends on other settings
01156 # such as SOURCE_BROWSER.
01157 
01158 LATEX_SOURCE_CODE      = NO
01159 
01160 #---------------------------------------------------------------------------
01161 # configuration options related to the RTF output
01162 #---------------------------------------------------------------------------
01163 
01164 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
01165 # The RTF output is optimized for Word 97 and may not look very pretty with
01166 # other RTF readers or editors.
01167 
01168 GENERATE_RTF           = NO
01169 
01170 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
01171 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
01172 # put in front of it. If left blank `rtf' will be used as the default path.
01173 
01174 RTF_OUTPUT             =
01175 
01176 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact
01177 # RTF documents. This may be useful for small projects and may help to
01178 # save some trees in general.
01179 
01180 COMPACT_RTF            = NO
01181 
01182 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
01183 # will contain hyperlink fields. The RTF file will
01184 # contain links (just like the HTML output) instead of page references.
01185 # This makes the output suitable for online browsing using WORD or other
01186 # programs which support those fields.
01187 # Note: wordpad (write) and others do not support links.
01188 
01189 RTF_HYPERLINKS         = YES
01190 
01191 # Load stylesheet definitions from file. Syntax is similar to doxygen's
01192 # config file, i.e. a series of assignments. You only have to provide
01193 # replacements, missing definitions are set to their default value.
01194 
01195 RTF_STYLESHEET_FILE    =
01196 
01197 # Set optional variables used in the generation of an rtf document.
01198 # Syntax is similar to doxygen's config file.
01199 
01200 RTF_EXTENSIONS_FILE    =
01201 
01202 #---------------------------------------------------------------------------
01203 # configuration options related to the man page output
01204 #---------------------------------------------------------------------------
01205 
01206 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
01207 # generate man pages
01208 
01209 GENERATE_MAN           = NO
01210 
01211 # The MAN_OUTPUT tag is used to specify where the man pages will be put.
01212 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
01213 # put in front of it. If left blank `man' will be used as the default path.
01214 
01215 MAN_OUTPUT             = ../man
01216 
01217 # The MAN_EXTENSION tag determines the extension that is added to
01218 # the generated man pages (default is the subroutine's section .3)
01219 
01220 MAN_EXTENSION          =
01221 
01222 # If the MAN_LINKS tag is set to YES and Doxygen generates man output,
01223 # then it will generate one additional man file for each entity
01224 # documented in the real man page(s). These additional files
01225 # only source the real man page, but without them the man command
01226 # would be unable to find the correct page. The default is NO.
01227 
01228 MAN_LINKS              = NO
01229 
01230 #---------------------------------------------------------------------------
01231 # configuration options related to the XML output
01232 #---------------------------------------------------------------------------
01233 
01234 # If the GENERATE_XML tag is set to YES Doxygen will
01235 # generate an XML file that captures the structure of
01236 # the code including all documentation.
01237 
01238 GENERATE_XML           = NO
01239 
01240 # The XML_OUTPUT tag is used to specify where the XML pages will be put.
01241 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
01242 # put in front of it. If left blank `xml' will be used as the default path.
01243 
01244 XML_OUTPUT             = xml
01245 
01246 # The XML_SCHEMA tag can be used to specify an XML schema,
01247 # which can be used by a validating XML parser to check the
01248 # syntax of the XML files.
01249 
01250 XML_SCHEMA             =
01251 
01252 # The XML_DTD tag can be used to specify an XML DTD,
01253 # which can be used by a validating XML parser to check the
01254 # syntax of the XML files.
01255 
01256 XML_DTD                =
01257 
01258 # If the XML_PROGRAMLISTING tag is set to YES Doxygen will
01259 # dump the program listings (including syntax highlighting
01260 # and cross-referencing information) to the XML output. Note that
01261 # enabling this will significantly increase the size of the XML output.
01262 
01263 XML_PROGRAMLISTING     = YES
01264 
01265 #---------------------------------------------------------------------------
01266 # configuration options for the AutoGen Definitions output
01267 #---------------------------------------------------------------------------
01268 
01269 # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
01270 # generate an AutoGen Definitions (see autogen.sf.net) file
01271 # that captures the structure of the code including all
01272 # documentation. Note that this feature is still experimental
01273 # and incomplete at the moment.
01274 
01275 GENERATE_AUTOGEN_DEF   = NO
01276 
01277 #---------------------------------------------------------------------------
01278 # configuration options related to the Perl module output
01279 #---------------------------------------------------------------------------
01280 
01281 # If the GENERATE_PERLMOD tag is set to YES Doxygen will
01282 # generate a Perl module file that captures the structure of
01283 # the code including all documentation. Note that this
01284 # feature is still experimental and incomplete at the
01285 # moment.
01286 
01287 GENERATE_PERLMOD       = NO
01288 
01289 # If the PERLMOD_LATEX tag is set to YES Doxygen will generate
01290 # the necessary Makefile rules, Perl scripts and LaTeX code to be able
01291 # to generate PDF and DVI output from the Perl module output.
01292 
01293 PERLMOD_LATEX          = NO
01294 
01295 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
01296 # nicely formatted so it can be parsed by a human reader.
01297 # This is useful
01298 # if you want to understand what is going on.
01299 # On the other hand, if this
01300 # tag is set to NO the size of the Perl module output will be much smaller
01301 # and Perl will parse it just the same.
01302 
01303 PERLMOD_PRETTY         = YES
01304 
01305 # The names of the make variables in the generated doxyrules.make file
01306 # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
01307 # This is useful so different doxyrules.make files included by the same
01308 # Makefile don't overwrite each other's variables.
01309 
01310 PERLMOD_MAKEVAR_PREFIX =
01311 
01312 #---------------------------------------------------------------------------
01313 # Configuration options related to the preprocessor
01314 #---------------------------------------------------------------------------
01315 
01316 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
01317 # evaluate all C-preprocessor directives found in the sources and include
01318 # files.
01319 
01320 ENABLE_PREPROCESSING   = YES
01321 
01322 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
01323 # names in the source code. If set to NO (the default) only conditional
01324 # compilation will be performed. Macro expansion can be done in a controlled
01325 # way by setting EXPAND_ONLY_PREDEF to YES.
01326 
01327 MACRO_EXPANSION        = YES
01328 
01329 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
01330 # then the macro expansion is limited to the macros specified with the
01331 # PREDEFINED and EXPAND_AS_DEFINED tags.
01332 
01333 EXPAND_ONLY_PREDEF     = YES
01334 
01335 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
01336 # in the INCLUDE_PATH (see below) will be search if a #include is found.
01337 
01338 SEARCH_INCLUDES        = YES
01339 
01340 # The INCLUDE_PATH tag can be used to specify one or more directories that
01341 # contain include files that are not input files but should be processed by
01342 # the preprocessor.
01343 
01344 INCLUDE_PATH           = .
01345 
01346 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
01347 # patterns (like *.h and *.hpp) to filter out the header-files in the
01348 # directories. If left blank, the patterns specified with FILE_PATTERNS will
01349 # be used.
01350 
01351 INCLUDE_FILE_PATTERNS  = *.h
01352 
01353 # The PREDEFINED tag can be used to specify one or more macro names that
01354 # are defined before the preprocessor is started (similar to the -D option of
01355 # gcc). The argument of the tag is a list of macros of the form: name
01356 # or name=definition (no spaces). If the definition and the = are
01357 # omitted =1 is assumed. To prevent a macro definition from being
01358 # undefined via #undef or recursively expanded use the := operator
01359 # instead of the = operator.
01360 
01361 PREDEFINED             = ACE_THROW_SPEC=throw
01362 
01363 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
01364 # this tag can be used to specify a list of macro names that should be expanded.
01365 # The macro definition that is found in the sources will be used.
01366 # Use the PREDEFINED tag if you want to use a different macro definition.
01367 
01368 EXPAND_AS_DEFINED      =
01369 
01370 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
01371 # doxygen's preprocessor will remove all function-like macros that are alone
01372 # on a line, have an all uppercase name, and do not end with a semicolon. Such
01373 # function macros are typically used for boiler-plate code, and will confuse
01374 # the parser if not removed.
01375 
01376 SKIP_FUNCTION_MACROS   = YES
01377 
01378 #---------------------------------------------------------------------------
01379 # Configuration::additions related to external references
01380 #---------------------------------------------------------------------------
01381 
01382 # The TAGFILES option can be used to specify one or more tagfiles.
01383 # Optionally an initial location of the external documentation
01384 # can be added for each tagfile. The format of a tag file without
01385 # this location is as follows:
01386 #
01387 # TAGFILES = file1 file2 ...
01388 # Adding location for the tag files is done as follows:
01389 #
01390 # TAGFILES = file1=loc1 "file2 = loc2" ...
01391 # where "loc1" and "loc2" can be relative or absolute paths or
01392 # URLs. If a location is present for each tag, the installdox tool
01393 # does not have to be run to correct the links.
01394 # Note that each tag file must have a unique name
01395 # (where the name does NOT include the path)
01396 # If a tag file is not located in the directory in which doxygen
01397 # is run, you must also specify the path to the tagfile here.
01398 
01399 TAGFILES               =
01400 
01401 # When a file name is specified after GENERATE_TAGFILE, doxygen will create
01402 # a tag file that is based on the input files it reads.
01403 
01404 GENERATE_TAGFILE       =
01405 
01406 # If the ALLEXTERNALS tag is set to YES all external classes will be listed
01407 # in the class index. If set to NO only the inherited external classes
01408 # will be listed.
01409 
01410 ALLEXTERNALS           = NO
01411 
01412 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
01413 # in the modules index. If set to NO, only the current project's groups will
01414 # be listed.
01415 
01416 EXTERNAL_GROUPS        = YES
01417 
01418 # The PERL_PATH should be the absolute path and name of the perl script
01419 # interpreter (i.e. the result of `which perl').
01420 
01421 PERL_PATH              =
01422 
01423 #---------------------------------------------------------------------------
01424 # Configuration options related to the dot tool
01425 #---------------------------------------------------------------------------
01426 
01427 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
01428 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
01429 # or super classes. Setting the tag to NO turns the diagrams off. Note that
01430 # this option is superseded by the HAVE_DOT option below. This is only a
01431 # fallback. It is recommended to install and use dot, since it yields more
01432 # powerful graphs.
01433 
01434 CLASS_DIAGRAMS         = YES
01435 
01436 # You can define message sequence charts within doxygen comments using the \msc
01437 # command. Doxygen will then run the mscgen tool (see
01438 # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the
01439 # documentation. The MSCGEN_PATH tag allows you to specify the directory where
01440 # the mscgen tool resides. If left empty the tool is assumed to be found in the
01441 # default search path.
01442 
01443 MSCGEN_PATH            =
01444 
01445 # If set to YES, the inheritance and collaboration graphs will hide
01446 # inheritance and usage relations if the target is undocumented
01447 # or is not a class.
01448 
01449 HIDE_UNDOC_RELATIONS   = YES
01450 
01451 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
01452 # available from the path. This tool is part of Graphviz, a graph visualization
01453 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
01454 # have no effect if this option is set to NO (the default)
01455 
01456 HAVE_DOT               = YES
01457 
01458 # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is
01459 # allowed to run in parallel. When set to 0 (the default) doxygen will
01460 # base this on the number of processors available in the system. You can set it
01461 # explicitly to a value larger than 0 to get control over the balance
01462 # between CPU load and processing speed.
01463 
01464 DOT_NUM_THREADS        = 0
01465 
01466 # By default doxygen will write a font called FreeSans.ttf to the output
01467 # directory and reference it in all dot files that doxygen generates. This
01468 # font does not include all possible unicode characters however, so when you need
01469 # these (or just want a differently looking font) you can specify the font name
01470 # using DOT_FONTNAME. You need need to make sure dot is able to find the font,
01471 # which can be done by putting it in a standard location or by setting the
01472 # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory
01473 # containing the font.
01474 
01475 DOT_FONTNAME           = FreeSans.ttf
01476 
01477 # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs.
01478 # The default size is 10pt.
01479 
01480 DOT_FONTSIZE           = 10
01481 
01482 # By default doxygen will tell dot to use the output directory to look for the
01483 # FreeSans.ttf font (which doxygen will put there itself). If you specify a
01484 # different font using DOT_FONTNAME you can set the path where dot
01485 # can find it using this tag.
01486 
01487 DOT_FONTPATH           =
01488 
01489 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
01490 # will generate a graph for each documented class showing the direct and
01491 # indirect inheritance relations. Setting this tag to YES will force the
01492 # the CLASS_DIAGRAMS tag to NO.
01493 
01494 CLASS_GRAPH            = YES
01495 
01496 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
01497 # will generate a graph for each documented class showing the direct and
01498 # indirect implementation dependencies (inheritance, containment, and
01499 # class references variables) of the class with other documented classes.
01500 
01501 COLLABORATION_GRAPH    = YES
01502 
01503 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
01504 # will generate a graph for groups, showing the direct groups dependencies
01505 
01506 GROUP_GRAPHS           = YES
01507 
01508 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
01509 # collaboration diagrams in a style similar to the OMG's Unified Modeling
01510 # Language.
01511 
01512 UML_LOOK               = NO
01513 
01514 # If set to YES, the inheritance and collaboration graphs will show the
01515 # relations between templates and their instances.
01516 
01517 TEMPLATE_RELATIONS     = NO
01518 
01519 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
01520 # tags are set to YES then doxygen will generate a graph for each documented
01521 # file showing the direct and indirect include dependencies of the file with
01522 # other documented files.
01523 
01524 INCLUDE_GRAPH          = YES
01525 
01526 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
01527 # HAVE_DOT tags are set to YES then doxygen will generate a graph for each
01528 # documented header file showing the documented files that directly or
01529 # indirectly include this file.
01530 
01531 INCLUDED_BY_GRAPH      = YES
01532 
01533 # If the CALL_GRAPH and HAVE_DOT options are set to YES then
01534 # doxygen will generate a call dependency graph for every global function
01535 # or class method. Note that enabling this option will significantly increase
01536 # the time of a run. So in most cases it will be better to enable call graphs
01537 # for selected functions only using the \callgraph command.
01538 
01539 CALL_GRAPH             = NO
01540 
01541 # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then
01542 # doxygen will generate a caller dependency graph for every global function
01543 # or class method. Note that enabling this option will significantly increase
01544 # the time of a run. So in most cases it will be better to enable caller
01545 # graphs for selected functions only using the \callergraph command.
01546 
01547 CALLER_GRAPH           = NO
01548 
01549 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
01550 # will graphical hierarchy of all classes instead of a textual one.
01551 
01552 GRAPHICAL_HIERARCHY    = YES
01553 
01554 # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
01555 # then doxygen will show the dependencies a directory has on other directories
01556 # in a graphical way. The dependency relations are determined by the #include
01557 # relations between the files in the directories.
01558 
01559 DIRECTORY_GRAPH        = YES
01560 
01561 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
01562 # generated by dot. Possible values are png, jpg, or gif
01563 # If left blank png will be used.
01564 
01565 DOT_IMAGE_FORMAT       = png
01566 
01567 # The tag DOT_PATH can be used to specify the path where the dot tool can be
01568 # found. If left blank, it is assumed the dot tool can be found in the path.
01569 
01570 DOT_PATH               =
01571 
01572 # The DOTFILE_DIRS tag can be used to specify one or more directories that
01573 # contain dot files that are included in the documentation (see the
01574 # \dotfile command).
01575 
01576 DOTFILE_DIRS           =
01577 
01578 # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
01579 # nodes that will be shown in the graph. If the number of nodes in a graph
01580 # becomes larger than this value, doxygen will truncate the graph, which is
01581 # visualized by representing a node as a red box. Note that doxygen if the
01582 # number of direct children of the root node in a graph is already larger than
01583 # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
01584 # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
01585 
01586 DOT_GRAPH_MAX_NODES    = 50
01587 
01588 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
01589 # graphs generated by dot. A depth value of 3 means that only nodes reachable
01590 # from the root by following a path via at most 3 edges will be shown. Nodes
01591 # that lay further from the root node will be omitted. Note that setting this
01592 # option to 1 or 2 may greatly reduce the computation time needed for large
01593 # code bases. Also note that the size of a graph can be further restricted by
01594 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
01595 
01596 MAX_DOT_GRAPH_DEPTH    = 0
01597 
01598 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
01599 # background. This is disabled by default, because dot on Windows does not
01600 # seem to support this out of the box. Warning: Depending on the platform used,
01601 # enabling this option may lead to badly anti-aliased labels on the edges of
01602 # a graph (i.e. they become hard to read).
01603 
01604 DOT_TRANSPARENT        = NO
01605 
01606 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
01607 # files in one run (i.e. multiple -o and -T options on the command line). This
01608 # makes dot run faster, but since only newer versions of dot (>1.8.10)
01609 # support this, this feature is disabled by default.
01610 
01611 DOT_MULTI_TARGETS      = NO
01612 
01613 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
01614 # generate a legend page explaining the meaning of the various boxes and
01615 # arrows in the dot generated graphs.
01616 
01617 GENERATE_LEGEND        = YES
01618 
01619 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
01620 # remove the intermediate dot files that are used to generate
01621 # the various graphs.
01622 
01623 DOT_CLEANUP            = YES

Generated on Thu Jan 12 2012 23:13:14 for ACS-10.0 IDL interfaces by  doxygen 1.7.0