[891] | 1 | # Doxyfile 1.1.1
|
---|
| 2 | # The format is: TAG = value [value, ...]
|
---|
| 3 | # Values that contain spaces should be placed between quotes (" ")
|
---|
| 4 |
|
---|
| 5 | #---------------------------------------------------------------------------
|
---|
| 6 | # General configuration options
|
---|
| 7 | #---------------------------------------------------------------------------
|
---|
| 8 |
|
---|
| 9 | # The PROJECT_NAME tag is a single word (or a sequence of word surrounded
|
---|
| 10 | # by quotes) that should identify the project.
|
---|
| 11 |
|
---|
| 12 | PROJECT_NAME = SOPHYA
|
---|
| 13 |
|
---|
| 14 | # The PROJECT_NUMBER tag can be used to enter a project or revision number.
|
---|
| 15 | # This could be handy for archiving the generated documentation or
|
---|
| 16 | # if some version control system is used.
|
---|
| 17 |
|
---|
[976] | 18 | PROJECT_NUMBER =
|
---|
[891] | 19 |
|
---|
| 20 | # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
---|
| 21 | # base path where the generated documentation will be put.
|
---|
| 22 | # If a relative path is entered, it will be relative to the location
|
---|
| 23 | # where doxygen was started. If left blank the current directory will be used.
|
---|
| 24 |
|
---|
| 25 | OUTPUT_DIRECTORY = .
|
---|
| 26 |
|
---|
| 27 | # The OUTPUT_LANGUAGE tag is used to specify the language in which all
|
---|
| 28 | # documentation generated by doxygen is written. Doxygen will use this
|
---|
| 29 | # information to generate all constant output in the proper language.
|
---|
| 30 | # The default language is English, other supported languages are:
|
---|
| 31 | # Dutch, French, Italian, Czech, Swedish, German and Japanese
|
---|
| 32 |
|
---|
| 33 | OUTPUT_LANGUAGE = English
|
---|
| 34 |
|
---|
| 35 | # The QUIET tag can be used to turn on/off the messages that are generated
|
---|
| 36 | # by doxygen. Possible values are YES and NO. If left blank NO is used.
|
---|
| 37 |
|
---|
| 38 | QUIET = NO
|
---|
| 39 |
|
---|
| 40 | # The WARNINGS tag can be used to turn on/off the warning messages that are
|
---|
| 41 | # generated by doxygen. Possible values are YES and NO. If left blank
|
---|
| 42 | # NO is used.
|
---|
| 43 |
|
---|
| 44 | WARNINGS = YES
|
---|
| 45 |
|
---|
| 46 | # The DISABLE_INDEX tag can be used to turn on/off the condensed index at
|
---|
| 47 | # top of each HTML page. The value NO (the default) enables the index and
|
---|
| 48 | # the value YES disables it.
|
---|
| 49 |
|
---|
| 50 | DISABLE_INDEX = NO
|
---|
| 51 |
|
---|
| 52 | # If the EXTRACT_ALL tag is set to YES all classes and functions will be
|
---|
| 53 | # included in the documentation, even if no documentation was available.
|
---|
| 54 |
|
---|
| 55 | EXTRACT_ALL = YES
|
---|
| 56 |
|
---|
| 57 | # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
|
---|
| 58 | # will be included in the documentation.
|
---|
| 59 |
|
---|
| 60 | EXTRACT_PRIVATE = NO
|
---|
| 61 |
|
---|
| 62 | # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
|
---|
| 63 | # undocumented members inside documented classes or files.
|
---|
| 64 |
|
---|
| 65 | HIDE_UNDOC_MEMBERS = NO
|
---|
| 66 |
|
---|
| 67 | # If the HIDE_UNDOC_CLASSESS tag is set to YES, Doxygen will hide all
|
---|
| 68 | # undocumented classes.
|
---|
| 69 |
|
---|
| 70 | HIDE_UNDOC_CLASSES = NO
|
---|
| 71 |
|
---|
| 72 | # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
|
---|
| 73 | # include brief member descriptions after the members that are listed in
|
---|
| 74 | # the file and class documentation (similar to JavaDoc).
|
---|
| 75 | # Set to NO to disable this.
|
---|
| 76 |
|
---|
| 77 | BRIEF_MEMBER_DESC = YES
|
---|
| 78 |
|
---|
| 79 | # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
|
---|
| 80 | # the brief description of a member or function before the detailed description.
|
---|
| 81 | # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
|
---|
| 82 | # brief descriptions will be completely suppressed.
|
---|
| 83 |
|
---|
| 84 | REPEAT_BRIEF = YES
|
---|
| 85 |
|
---|
| 86 | # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
|
---|
| 87 | # Doxygen will generate a detailed section even if there is only a brief
|
---|
| 88 | # description.
|
---|
| 89 |
|
---|
| 90 | ALWAYS_DETAILED_SEC = NO
|
---|
| 91 |
|
---|
| 92 | # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
|
---|
| 93 | # path before files name in the file list and in the header files. If set
|
---|
| 94 | # to NO the shortest path that makes the file name unique will be used.
|
---|
| 95 |
|
---|
| 96 | FULL_PATH_NAMES = NO
|
---|
| 97 |
|
---|
| 98 | # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
|
---|
| 99 | # can be used to strip a user defined part of the path. Stripping is
|
---|
| 100 | # only done if one of the specified strings matches the left-hand part of
|
---|
| 101 | # the path.
|
---|
| 102 |
|
---|
| 103 | STRIP_FROM_PATH =
|
---|
| 104 |
|
---|
| 105 | # The INTERNAL_DOCS tag determines if documentation
|
---|
| 106 | # that is typed after a \internal command is included. If the tag is set
|
---|
| 107 | # to NO (the default) then the documentation will be excluded.
|
---|
| 108 | # Set it to YES to include the internal documentation.
|
---|
| 109 |
|
---|
| 110 | INTERNAL_DOCS = NO
|
---|
| 111 |
|
---|
| 112 | # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
|
---|
| 113 | # generate a class diagram (in Html and LaTeX) for classes with base or
|
---|
| 114 | # super classes. Setting the tag to NO turns the diagrams off.
|
---|
| 115 |
|
---|
| 116 | CLASS_DIAGRAMS = YES
|
---|
| 117 |
|
---|
| 118 | # If the SOURCE_BROWSER tag is set to YES then a list of source files will
|
---|
| 119 | # be generated. Documented entities will be cross-referenced with these sources.
|
---|
| 120 |
|
---|
| 121 | SOURCE_BROWSER = NO
|
---|
| 122 |
|
---|
| 123 | # Setting the INLINE_SOURCES tag to YES will include the body
|
---|
| 124 | # of functions and classes directly in the documentation.
|
---|
| 125 |
|
---|
| 126 | INLINE_SOURCES = NO
|
---|
| 127 |
|
---|
| 128 | # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
|
---|
| 129 | # doxygen to hide any special comment blocks from generated source code
|
---|
| 130 | # fragments. Normal C and C++ comments will always remain visible.
|
---|
| 131 |
|
---|
| 132 | STRIP_CODE_COMMENTS = YES
|
---|
| 133 |
|
---|
| 134 | # If the CASE_SENSE_NAMES tag is set to NO (the default) then Doxygen
|
---|
| 135 | # will only generate file names in lower case letters. If set to
|
---|
| 136 | # YES upper case letters are also allowed. This is useful if you have
|
---|
| 137 | # classes or files whose names only differ in case and if your file system
|
---|
| 138 | # supports case sensitive file names.
|
---|
| 139 |
|
---|
| 140 | CASE_SENSE_NAMES = NO
|
---|
| 141 |
|
---|
| 142 | # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
|
---|
| 143 | # will generate a verbatim copy of the header file for each class for
|
---|
| 144 | # which an include is specified. Set to NO to disable this.
|
---|
| 145 |
|
---|
| 146 | VERBATIM_HEADERS = YES
|
---|
| 147 |
|
---|
| 148 | # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
|
---|
| 149 | # will put list of the files that are included by a file in the documentation
|
---|
| 150 | # of that file.
|
---|
| 151 |
|
---|
| 152 | SHOW_INCLUDE_FILES = YES
|
---|
| 153 |
|
---|
| 154 | # If the JAVADOC_AUTOBRIEF tag is set to YES (the default) then Doxygen
|
---|
| 155 | # will interpret the first line (until the first dot) of a JavaDoc-style
|
---|
| 156 | # comment as the brief description. If set to NO, the Javadoc-style will
|
---|
| 157 | # behave just like the Qt-style comments.
|
---|
| 158 |
|
---|
| 159 | JAVADOC_AUTOBRIEF = YES
|
---|
| 160 |
|
---|
| 161 | # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
|
---|
| 162 | # member inherits the documentation from any documented member that it
|
---|
| 163 | # reimplements.
|
---|
| 164 |
|
---|
| 165 | INHERIT_DOCS = YES
|
---|
| 166 |
|
---|
| 167 | # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
|
---|
| 168 | # is inserted in the documentation for inline members.
|
---|
| 169 |
|
---|
| 170 | INLINE_INFO = YES
|
---|
| 171 |
|
---|
| 172 | # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
|
---|
| 173 | # will sort the (detailed) documentation of file and class members
|
---|
| 174 | # alphabetically by member name. If set to NO the members will appear in
|
---|
| 175 | # declaration order.
|
---|
| 176 |
|
---|
| 177 | SORT_MEMBER_DOCS = YES
|
---|
| 178 |
|
---|
| 179 | # The TAB_SIZE tag can be used to set the number of spaces in a tab.
|
---|
| 180 | # Doxygen uses this value to replace tabs by spaces in code fragments.
|
---|
| 181 |
|
---|
| 182 | TAB_SIZE = 8
|
---|
| 183 |
|
---|
| 184 | #---------------------------------------------------------------------------
|
---|
| 185 | # configuration options related to the input files
|
---|
| 186 | #---------------------------------------------------------------------------
|
---|
| 187 |
|
---|
| 188 | # The INPUT tag can be used to specify the files and/or directories that contain
|
---|
| 189 | # documented source files. You may enter file names like "myfile.cpp" or
|
---|
| 190 | # directories like "/usr/src/myproject". Separate the files or directories
|
---|
| 191 | # with spaces.
|
---|
| 192 |
|
---|
[976] | 193 | INPUT =
|
---|
[891] | 194 |
|
---|
| 195 | # If the value of the INPUT tag contains directories, you can use the
|
---|
| 196 | # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
|
---|
| 197 | # and *.h) to filter out the source-files in the directories. If left
|
---|
| 198 | # blank all files are included.
|
---|
| 199 |
|
---|
| 200 | FILE_PATTERNS = *.h *.cc *.c *.f *.cc *.C
|
---|
| 201 |
|
---|
| 202 | # The RECURSIVE tag can be used to turn specify whether or not subdirectories
|
---|
| 203 | # should be searched for input files as well. Possible values are YES and NO.
|
---|
| 204 | # If left blank NO is used.
|
---|
| 205 |
|
---|
| 206 | RECURSIVE = NO
|
---|
| 207 |
|
---|
| 208 | # The EXCLUDE tag can be used to specify files and/or directories that should
|
---|
| 209 | # excluded from the INPUT source files. This way you can easily exclude a
|
---|
| 210 | # subdirectory from a directory tree whose root is specified with the INPUT tag.
|
---|
| 211 |
|
---|
| 212 | EXCLUDE =
|
---|
| 213 |
|
---|
| 214 | # If the value of the INPUT tag contains directories, you can use the
|
---|
| 215 | # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
|
---|
| 216 | # certain files from those directories.
|
---|
| 217 |
|
---|
| 218 | EXCLUDE_PATTERNS =
|
---|
| 219 |
|
---|
| 220 | # The EXAMPLE_PATH tag can be used to specify one or more files or
|
---|
| 221 | # directories that contain example code fragments that are included (see
|
---|
| 222 | # the \include command).
|
---|
| 223 |
|
---|
[976] | 224 | EXAMPLE_PATH =
|
---|
[891] | 225 |
|
---|
| 226 | # If the value of the EXAMPLE_PATH tag contains directories, you can use the
|
---|
| 227 | # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
|
---|
| 228 | # and *.h) to filter out the source-files in the directories. If left
|
---|
| 229 | # blank all files are included.
|
---|
| 230 |
|
---|
| 231 | EXAMPLE_PATTERNS =
|
---|
| 232 |
|
---|
| 233 | # The IMAGE_PATH tag can be used to specify one or more files or
|
---|
| 234 | # directories that contain image that are included in the documentation (see
|
---|
| 235 | # the \image command).
|
---|
| 236 |
|
---|
| 237 | IMAGE_PATH =
|
---|
| 238 |
|
---|
| 239 | # The INPUT_FILTER tag can be used to specify a program that doxygen should
|
---|
| 240 | # invoke to filter for each input file. Doxygen will invoke the filter program
|
---|
| 241 | # by executing (via popen()) the command <filter> <input-file>, where <filter>
|
---|
| 242 | # is the value of the INPUT_FILTER tag, and <input-file> is the name of an
|
---|
| 243 | # input file. Doxygen will then use the output that the filter program writes
|
---|
| 244 | # to standard output.
|
---|
| 245 |
|
---|
| 246 | INPUT_FILTER = ./dox_filter
|
---|
| 247 |
|
---|
| 248 | #---------------------------------------------------------------------------
|
---|
| 249 | # configuration options related to the HTML output
|
---|
| 250 | #---------------------------------------------------------------------------
|
---|
| 251 |
|
---|
| 252 | # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
|
---|
| 253 | # generate HTML output
|
---|
| 254 |
|
---|
| 255 | GENERATE_HTML = YES
|
---|
| 256 |
|
---|
| 257 | # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
|
---|
| 258 | # If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
---|
| 259 | # put in front of it. If left blank `html' will be used as the default path.
|
---|
| 260 |
|
---|
| 261 | HTML_OUTPUT = html
|
---|
| 262 |
|
---|
| 263 | # The HTML_HEADER tag can be used to specify a personal HTML header for
|
---|
| 264 | # each generated HTML page. If it is left blank doxygen will generate a
|
---|
| 265 | # standard header.
|
---|
| 266 |
|
---|
| 267 | HTML_HEADER =
|
---|
| 268 |
|
---|
| 269 | # The HTML_FOOTER tag can be used to specify a personal HTML footer for
|
---|
| 270 | # each generated HTML page. If it is left blank doxygen will generate a
|
---|
| 271 | # standard footer.
|
---|
| 272 |
|
---|
| 273 | HTML_FOOTER =
|
---|
| 274 |
|
---|
| 275 | # The HTML_STYLESHEET tag can be used to specify a user defined cascading
|
---|
| 276 | # style sheet that is used by each HTML page. It can be used to
|
---|
| 277 | # fine-tune the look of the HTML output. If the tag is left blank doxygen
|
---|
| 278 | # will generate a default style sheet
|
---|
| 279 |
|
---|
| 280 | HTML_STYLESHEET =
|
---|
| 281 |
|
---|
| 282 | # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
|
---|
| 283 | # files or namespaces will be aligned in HTML using tables. If set to
|
---|
| 284 | # NO a bullet list will be used.
|
---|
| 285 |
|
---|
| 286 | HTML_ALIGN_MEMBERS = YES
|
---|
| 287 |
|
---|
| 288 | # If the GENERATE_HTMLHELP tag is set to YES, additional index files
|
---|
| 289 | # will be generated that can be used as input for tools like the
|
---|
| 290 | # Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
|
---|
| 291 | # of the generated HTML documentation.
|
---|
| 292 |
|
---|
| 293 | GENERATE_HTMLHELP = NO
|
---|
| 294 |
|
---|
| 295 | #---------------------------------------------------------------------------
|
---|
| 296 | # configuration options related to the alphabetical class index
|
---|
| 297 | #---------------------------------------------------------------------------
|
---|
| 298 |
|
---|
| 299 | # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
|
---|
| 300 | # of all compounds will be generated. Enable this if the project
|
---|
| 301 | # contains a lot of classes, structs, unions or interfaces.
|
---|
| 302 |
|
---|
| 303 | ALPHABETICAL_INDEX = YES
|
---|
| 304 |
|
---|
| 305 | # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
|
---|
| 306 | # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
|
---|
| 307 | # in which this list will be split (can be a number in the range [1..20])
|
---|
| 308 |
|
---|
| 309 | COLS_IN_ALPHA_INDEX = 3
|
---|
| 310 |
|
---|
| 311 | # In case all classes in a project start with a common prefix, all
|
---|
| 312 | # classes will be put under the same header in the alphabetical index.
|
---|
| 313 | # The IGNORE_PREFIX tag can be used to specify one or more prefixes that
|
---|
| 314 | # should be ignored while generating the index headers.
|
---|
| 315 |
|
---|
| 316 | IGNORE_PREFIX = SOPHYA::
|
---|
| 317 |
|
---|
| 318 | #---------------------------------------------------------------------------
|
---|
| 319 | # configuration options related to the LaTeX output
|
---|
| 320 | #---------------------------------------------------------------------------
|
---|
| 321 |
|
---|
| 322 | # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
|
---|
| 323 | # generate Latex output.
|
---|
| 324 |
|
---|
| 325 | GENERATE_LATEX = YES
|
---|
| 326 |
|
---|
| 327 | # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
|
---|
| 328 | # If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
---|
| 329 | # put in front of it. If left blank `latex' will be used as the default path.
|
---|
| 330 |
|
---|
| 331 | LATEX_OUTPUT = latex
|
---|
| 332 |
|
---|
| 333 | # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
|
---|
| 334 | # LaTeX documents. This may be useful for small projects and may help to
|
---|
| 335 | # save some trees in general.
|
---|
| 336 |
|
---|
| 337 | COMPACT_LATEX = NO
|
---|
| 338 |
|
---|
| 339 | # The PAPER_TYPE tag can be used to set the paper type that is used
|
---|
| 340 | # by the printer. Possible values are: a4, a4wide, letter, legal and
|
---|
| 341 | # executive. If left blank a4wide will be used.
|
---|
| 342 |
|
---|
| 343 | PAPER_TYPE = a4wide
|
---|
| 344 |
|
---|
| 345 | # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
|
---|
| 346 | # packages that should be included in the LaTeX output.
|
---|
| 347 |
|
---|
| 348 | EXTRA_PACKAGES =
|
---|
| 349 |
|
---|
| 350 | # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
|
---|
| 351 | # the generated latex document. The header should contain everything until
|
---|
| 352 | # the first chapter. If it is left blank doxygen will generate a
|
---|
| 353 | # standard header. Notice: only use this tag if you know what you are doing!
|
---|
| 354 |
|
---|
| 355 | LATEX_HEADER =
|
---|
| 356 |
|
---|
| 357 | # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
|
---|
| 358 | # is prepared for conversion to pdf (using ps2pdf). The pdf file will
|
---|
| 359 | # contain links (just like the HTML output) instead of page references
|
---|
| 360 | # This makes the output suitable for online browsing using a pdf viewer.
|
---|
| 361 |
|
---|
| 362 | PDF_HYPERLINKS = NO
|
---|
| 363 |
|
---|
| 364 | # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode.
|
---|
| 365 | # command to the generated LaTeX files. This will instruct LaTeX to keep
|
---|
| 366 | # running if errors occur, instead of asking the user for help.
|
---|
| 367 | # This option is also used when generating formulas in HTML.
|
---|
| 368 | # LATEX_BATCHMODE = NO
|
---|
| 369 |
|
---|
| 370 | #---------------------------------------------------------------------------
|
---|
| 371 | # configuration options related to the RTF output
|
---|
| 372 | #---------------------------------------------------------------------------
|
---|
| 373 |
|
---|
| 374 | # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
|
---|
| 375 | # For now this is experimental and is disabled by default. The RTF output
|
---|
| 376 | # is optimised for Word 97 and may not look too pretty with other readers
|
---|
| 377 | # or editors.
|
---|
| 378 |
|
---|
| 379 | #GENERATE_RTF = YES
|
---|
| 380 | GENERATE_RTF = NO
|
---|
| 381 |
|
---|
| 382 | # The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
|
---|
| 383 | # If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
---|
| 384 | # put in front of it. If left blank `rtf' will be used as the default path.
|
---|
| 385 |
|
---|
| 386 | RTF_OUTPUT = rtf
|
---|
| 387 |
|
---|
| 388 | # If the COMPACT_RTF tag is set to YES Doxygen generates more compact
|
---|
| 389 | # RTF documents. This may be useful for small projects and may help to
|
---|
| 390 | # save some trees in general.
|
---|
| 391 |
|
---|
| 392 | COMPACT_RTF = NO
|
---|
| 393 |
|
---|
| 394 | # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
|
---|
| 395 | # will contain hyperlink fields. The RTF file will
|
---|
| 396 | # contain links (just like the HTML output) instead of page references.
|
---|
| 397 | # This makes the output suitable for online browsing using a WORD or other.
|
---|
| 398 | # programs which support those fields.
|
---|
| 399 | # Note: wordpad (write) and others do not support links.
|
---|
| 400 |
|
---|
| 401 | RTF_HYPERLINKS = NO
|
---|
| 402 | #---------------------------------------------------------------------------
|
---|
| 403 | # configuration options related to the man page output
|
---|
| 404 | #---------------------------------------------------------------------------
|
---|
| 405 |
|
---|
| 406 | # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
|
---|
| 407 | # generate man pages
|
---|
| 408 |
|
---|
| 409 | # GENERATE_MAN = YES
|
---|
| 410 | GENERATE_MAN = NO
|
---|
| 411 |
|
---|
| 412 | # The MAN_OUTPUT tag is used to specify where the man pages will be put.
|
---|
| 413 | # If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
---|
| 414 | # put in front of it. If left blank `man' will be used as the default path.
|
---|
| 415 |
|
---|
| 416 | MAN_OUTPUT = man
|
---|
| 417 |
|
---|
| 418 | # The MAN_EXTENSION tag determines the extension that is added to
|
---|
| 419 | # the generated man pages (default is the subroutine's section .3)
|
---|
| 420 |
|
---|
| 421 | MAN_EXTENSION = .3
|
---|
| 422 |
|
---|
| 423 | #---------------------------------------------------------------------------
|
---|
| 424 | # Configuration options related to the preprocessor
|
---|
| 425 | #---------------------------------------------------------------------------
|
---|
| 426 |
|
---|
| 427 | # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
|
---|
| 428 | # evaluate all C-preprocessor directives found in the sources and include
|
---|
| 429 | # files.
|
---|
| 430 |
|
---|
| 431 | ENABLE_PREPROCESSING = YES
|
---|
| 432 |
|
---|
| 433 | # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
|
---|
| 434 | # names in the source code. If set to NO (the default) only conditional
|
---|
| 435 | # compilation will be performed.
|
---|
| 436 |
|
---|
| 437 | MACRO_EXPANSION = NO
|
---|
| 438 |
|
---|
| 439 | # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
|
---|
| 440 | # in the INCLUDE_PATH (see below) will be search if a #include is found.
|
---|
| 441 |
|
---|
| 442 | SEARCH_INCLUDES = YES
|
---|
| 443 |
|
---|
| 444 | # The INCLUDE_PATH tag can be used to specify one or more directories that
|
---|
| 445 | # contain include files that are not input files but should be processed by
|
---|
| 446 | # the preprocessor.
|
---|
| 447 |
|
---|
| 448 | INCLUDE_PATH =
|
---|
| 449 |
|
---|
| 450 | # The PREDEFINED tag can be used to specify one or more macro names that
|
---|
| 451 | # are defined before the preprocessor is started (similar to the -D option of
|
---|
| 452 | # gcc). The argument of the tag is a list of macros of the form: name
|
---|
| 453 | # or name=definition (no spaces). If the definition and the = are
|
---|
| 454 | # omitted =1 is assumed.
|
---|
| 455 |
|
---|
| 456 | PREDEFINED =
|
---|
| 457 |
|
---|
| 458 | # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
|
---|
| 459 | # then the macro expansion is limited to the macros specified with the
|
---|
| 460 | # PREDEFINED tag.
|
---|
| 461 |
|
---|
| 462 | EXPAND_ONLY_PREDEF = NO
|
---|
| 463 |
|
---|
| 464 | #---------------------------------------------------------------------------
|
---|
| 465 | # Configuration options related to external references
|
---|
| 466 | #---------------------------------------------------------------------------
|
---|
| 467 |
|
---|
| 468 | # The TAGFILES tag can be used to specify one or more tagfiles.
|
---|
| 469 |
|
---|
| 470 | TAGFILES =
|
---|
| 471 |
|
---|
| 472 | # When a file name is specified after GENERATE_TAGFILE, doxygen will create
|
---|
| 473 | # a tag file that is based on the input files it reads.
|
---|
| 474 |
|
---|
| 475 | GENERATE_TAGFILE =
|
---|
| 476 |
|
---|
| 477 | # If the ALLEXTERNALS tag is set to YES all external classes will be listed
|
---|
| 478 | # in the class index. If set to NO only the inherited external classes
|
---|
| 479 | # will be listed.
|
---|
| 480 |
|
---|
| 481 | ALLEXTERNALS = NO
|
---|
| 482 |
|
---|
| 483 | # The PERL_PATH should be the absolute path and name of the perl script
|
---|
| 484 | # interpreter (i.e. the result of `which perl').
|
---|
| 485 |
|
---|
| 486 | PERL_PATH = /usr/bin/perl
|
---|
| 487 |
|
---|
| 488 | #---------------------------------------------------------------------------
|
---|
| 489 | # Configuration options related to the dot tool
|
---|
| 490 | #---------------------------------------------------------------------------
|
---|
| 491 |
|
---|
| 492 | # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
|
---|
| 493 | # available from the path. This tool is part of Graphviz, a graph visualization
|
---|
| 494 | # toolkit from AT&T and Lucent Bell Labs. The other options in this section
|
---|
| 495 | # have no effect if this option is set to NO (the default)
|
---|
| 496 |
|
---|
| 497 | HAVE_DOT = NO
|
---|
| 498 |
|
---|
| 499 | # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
|
---|
| 500 | # will generate a graph for each documented class showing the direct and
|
---|
| 501 | # indirect implementation dependencies (inheritance, containment, and
|
---|
| 502 | # class references variables) of the class with other documented classes.
|
---|
| 503 |
|
---|
| 504 | COLLABORATION_GRAPH = YES
|
---|
| 505 |
|
---|
| 506 | # If the ENABLE_PREPROCESSING, INCLUDE_GRAPH, and HAVE_DOT tags are set to
|
---|
| 507 | # YES then doxygen will generate a graph for each documented file showing
|
---|
| 508 | # the direct and indirect include dependencies of the file with other
|
---|
| 509 | # documented files.
|
---|
| 510 |
|
---|
| 511 | INCLUDE_GRAPH = YES
|
---|
| 512 |
|
---|
| 513 | # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
|
---|
| 514 | # will graphical hierarchy of all classes instead of a textual one.
|
---|
| 515 |
|
---|
| 516 | GRAPHICAL_HIERARCHY = YES
|
---|
| 517 |
|
---|
| 518 | #---------------------------------------------------------------------------
|
---|
| 519 | # Configuration options related to the search engine
|
---|
| 520 | #---------------------------------------------------------------------------
|
---|
| 521 |
|
---|
| 522 | # The SEARCHENGINE tag specifies whether or not a search engine should be
|
---|
| 523 | # used. If set to NO the values of all tags below this one will be ignored.
|
---|
| 524 |
|
---|
| 525 | SEARCHENGINE = NO
|
---|
| 526 |
|
---|
| 527 | # The CGI_NAME tag should be the name of the CGI script that
|
---|
| 528 | # starts the search engine (doxysearch) with the correct parameters.
|
---|
| 529 | # A script with this name will be generated by doxygen.
|
---|
| 530 |
|
---|
| 531 | CGI_NAME = search.cgi
|
---|
| 532 |
|
---|
| 533 | # The CGI_URL tag should be the absolute URL to the directory where the
|
---|
| 534 | # cgi binaries are located. See the documentation of your http daemon for
|
---|
| 535 | # details.
|
---|
| 536 |
|
---|
| 537 | CGI_URL =
|
---|
| 538 |
|
---|
| 539 | # The DOC_URL tag should be the absolute URL to the directory where the
|
---|
| 540 | # documentation is located. If left blank the absolute path to the
|
---|
| 541 | # documentation, with file:// prepended to it, will be used.
|
---|
| 542 |
|
---|
| 543 | DOC_URL =
|
---|
| 544 |
|
---|
| 545 | # The DOC_ABSPATH tag should be the absolute path to the directory where the
|
---|
| 546 | # documentation is located. If left blank the directory on the local machine
|
---|
| 547 | # will be used.
|
---|
| 548 |
|
---|
| 549 | DOC_ABSPATH =
|
---|
| 550 |
|
---|
| 551 | # The BIN_ABSPATH tag must point to the directory where the doxysearch binary
|
---|
| 552 | # is installed.
|
---|
| 553 |
|
---|
| 554 | #BIN_ABSPATH =
|
---|
| 555 |
|
---|
| 556 | # The EXT_DOC_PATHS tag can be used to specify one or more paths to
|
---|
| 557 | # documentation generated for other projects. This allows doxysearch to search
|
---|
| 558 | # the documentation for these projects as well.
|
---|
| 559 |
|
---|
| 560 | EXT_DOC_PATHS =
|
---|