Canola
0.8.D001
|
00001 # 00002 # canola - canon canola 1614p emulator 00003 # Copyright (C) 2011 Peter Miller 00004 # 00005 # This program is free software; you can redistribute it and/or modify 00006 # it under the terms of the GNU General Public License, version 3, as 00007 # published by the Free Software Foundation. 00008 # 00009 # This program is distributed in the hope that it will be useful, 00010 # but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 # General Public License for more details. 00013 # 00014 # You should have received a copy of the GNU General Public License along 00015 # with this program. If not, see <http://www.gnu.org/licenses/>. 00016 # 00017 # -------------------------------------------------------------------------- 00018 # 00019 # This file describes the settings to be used by doxygen for a project 00020 # 00021 # All text after a hash (#) is considered a comment and will be ignored 00022 # The format is: 00023 # TAG = value [value, ...] 00024 # For lists items can also be appended using: 00025 # TAG += value [value, ...] 00026 # Values that contain spaces should be placed between quotes (" ") 00027 00028 #--------------------------------------------------------------------------- 00029 # General configuration options 00030 #--------------------------------------------------------------------------- 00031 00032 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 00033 # by quotes) that should identify the project. 00034 00035 PROJECT_NAME = Canola 00036 00037 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 00038 # This could be handy for archiving the generated documentation or 00039 # if some version control system is used. 00040 #Set by Cook at build time. 00041 #PROJECT_NUMBER = 1.6 00042 00043 # The OUTPUT_LANGUAGE tag is used to specify the language in which all 00044 # documentation generated by doxygen is written. Doxygen will use this 00045 # information to generate all constant output in the proper language. 00046 # The default language is English, other supported languages are: 00047 # Dutch, French, Italian, Czech, Swedish, German, Finnish, Japanese, 00048 # Korean, Hungarian, Norwegian, Spanish, Romanian, Russian, Croatian, 00049 # Polish, Portuguese and Slovene. 00050 00051 OUTPUT_LANGUAGE = English 00052 00053 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 00054 # documentation are documented, even if no documentation was available. 00055 # Private class members and static file members will be hidden unless 00056 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 00057 00058 EXTRACT_ALL = YES 00059 00060 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class 00061 # will be included in the documentation. 00062 00063 EXTRACT_PRIVATE = YES 00064 00065 # If the EXTRACT_STATIC tag is set to YES all static members of a file 00066 # will be included in the documentation. 00067 00068 EXTRACT_STATIC = YES 00069 00070 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 00071 # undocumented members of documented classes, files or namespaces. 00072 # If set to NO (the default) these members will be included in the 00073 # various overviews, but no documentation section is generated. 00074 # This option has no effect if EXTRACT_ALL is enabled. 00075 00076 HIDE_UNDOC_MEMBERS = NO 00077 00078 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 00079 # undocumented classes that are normally visible in the class hierarchy. 00080 # If set to NO (the default) these class will be included in the various 00081 # overviews. This option has no effect if EXTRACT_ALL is enabled. 00082 00083 HIDE_UNDOC_CLASSES = NO 00084 00085 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 00086 # include brief member descriptions after the members that are listed in 00087 # the file and class documentation (similar to JavaDoc). 00088 # Set to NO to disable this. 00089 00090 BRIEF_MEMBER_DESC = YES 00091 00092 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 00093 # the brief description of a member or function before the detailed description. 00094 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 00095 # brief descriptions will be completely suppressed. 00096 00097 REPEAT_BRIEF = YES 00098 00099 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 00100 # Doxygen will generate a detailed section even if there is only a brief 00101 # description. 00102 00103 ALWAYS_DETAILED_SEC = YES 00104 00105 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 00106 # path before files name in the file list and in the header files. If set 00107 # to NO the shortest path that makes the file name unique will be used. 00108 00109 FULL_PATH_NAMES = YES 00110 00111 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 00112 # can be used to strip a user defined part of the path. Stripping is 00113 # only done if one of the specified strings matches the left-hand part of 00114 # the path. It is allowed to use relative paths in the argument list. 00115 00116 STRIP_FROM_PATH = bl/ 00117 00118 # The INTERNAL_DOCS tag determines if documentation 00119 # that is typed after a \internal command is included. If the tag is set 00120 # to NO (the default) then the documentation will be excluded. 00121 # Set it to YES to include the internal documentation. 00122 00123 INTERNAL_DOCS = YES 00124 00125 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 00126 # generate a class diagram (in Html and LaTeX) for classes with base or 00127 # super classes. Setting the tag to NO turns the diagrams off. 00128 00129 CLASS_DIAGRAMS = YES 00130 00131 # If the SOURCE_BROWSER tag is set to YES then a list of source files will 00132 # be generated. Documented entities will be cross-referenced with these sources. 00133 00134 SOURCE_BROWSER = YES 00135 00136 # Setting the INLINE_SOURCES tag to YES will include the body 00137 # of functions and classes directly in the documentation. 00138 00139 INLINE_SOURCES = NO 00140 00141 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 00142 # doxygen to hide any special comment blocks from generated source code 00143 # fragments. Normal C and C++ comments will always remain visible. 00144 00145 STRIP_CODE_COMMENTS = YES 00146 00147 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 00148 # file names in lower case letters. If set to YES upper case letters are also 00149 # allowed. This is useful if you have classes or files whose names only differ 00150 # in case and if your file system supports case sensitive file names. Windows 00151 # users are adviced to set this option to NO. 00152 00153 CASE_SENSE_NAMES = YES 00154 00155 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 00156 # will show members with their full class and namespace scopes in the 00157 # documentation. If set to YES the scope will be hidden. 00158 00159 HIDE_SCOPE_NAMES = NO 00160 00161 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 00162 # will generate a verbatim copy of the header file for each class for 00163 # which an include is specified. Set to NO to disable this. 00164 00165 VERBATIM_HEADERS = YES 00166 00167 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 00168 # will put list of the files that are included by a file in the documentation 00169 # of that file. 00170 00171 SHOW_INCLUDE_FILES = YES 00172 00173 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 00174 # will interpret the first line (until the first dot) of a JavaDoc-style 00175 # comment as the brief description. If set to NO, the JavaDoc 00176 # comments will behave just like the Qt-style comments (thus requiring an 00177 # explict @brief command for a brief description. 00178 00179 JAVADOC_AUTOBRIEF = NO 00180 00181 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 00182 # member inherits the documentation from any documented member that it 00183 # reimplements. 00184 00185 INHERIT_DOCS = YES 00186 00187 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 00188 # is inserted in the documentation for inline members. 00189 00190 INLINE_INFO = YES 00191 00192 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 00193 # will sort the (detailed) documentation of file and class members 00194 # alphabetically by member name. If set to NO the members will appear in 00195 # declaration order. 00196 00197 SORT_MEMBER_DOCS = YES 00198 00199 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 00200 # tag is set to YES, then doxygen will reuse the documentation of the first 00201 # member in the group (if any) for the other members of the group. By default 00202 # all members of a group must be documented explicitly. 00203 00204 DISTRIBUTE_GROUP_DOC = NO 00205 00206 # The TAB_SIZE tag can be used to set the number of spaces in a tab. 00207 # Doxygen uses this value to replace tabs by spaces in code fragments. 00208 00209 TAB_SIZE = 8 00210 00211 # The ENABLE_SECTIONS tag can be used to enable conditional 00212 # documentation sections, marked by \if sectionname ... \endif. 00213 00214 ENABLED_SECTIONS = 00215 00216 # The GENERATE_TODOLIST tag can be used to enable (YES) or 00217 # disable (NO) the todo list. This list is created by putting \todo 00218 # commands in the documentation. 00219 00220 GENERATE_TODOLIST = YES 00221 00222 # The GENERATE_TESTLIST tag can be used to enable (YES) or 00223 # disable (NO) the test list. This list is created by putting \test 00224 # commands in the documentation. 00225 00226 GENERATE_TESTLIST = YES 00227 00228 # The GENERATE_BUGLIST tag can be used to enable (YES) or 00229 # disable (NO) the bug list. This list is created by putting \bug 00230 # commands in the documentation. 00231 00232 GENERATE_BUGLIST = YES 00233 00234 # This tag can be used to specify a number of aliases that acts 00235 # as commands in the documentation. An alias has the form "name=value". 00236 # For example adding "sideeffect=\par Side Effects:\n" will allow you to 00237 # put the command \sideeffect (or @sideeffect) in the documentation, which 00238 # will result in a user defined paragraph with heading "Side Effects:". 00239 # You can put \n's in the value part of an alias to insert newlines. 00240 00241 ALIASES = 00242 00243 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines 00244 # the initial value of a variable or define consist of for it to appear in 00245 # the documentation. If the initializer consists of more lines than specified 00246 # here it will be hidden. Use a value of 0 to hide initializers completely. 00247 # The appearance of the initializer of individual variables and defines in the 00248 # documentation can be controlled using \showinitializer or \hideinitializer 00249 # command in the documentation regardless of this setting. 00250 00251 MAX_INITIALIZER_LINES = 30 00252 00253 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 00254 # only. Doxygen will then generate output that is more tailored for C. 00255 # For instance some of the names that are used will be different. The list 00256 # of all members will be omitted, etc. 00257 00258 OPTIMIZE_OUTPUT_FOR_C = NO 00259 00260 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated 00261 # at the bottom of the documentation of classes and structs. If set to YES the 00262 # list will mention the files that were used to generate the documentation. 00263 00264 SHOW_USED_FILES = YES 00265 00266 #--------------------------------------------------------------------------- 00267 # configuration options related to warning and progress messages 00268 #--------------------------------------------------------------------------- 00269 00270 # The QUIET tag can be used to turn on/off the messages that are generated 00271 # by doxygen. Possible values are YES and NO. If left blank NO is used. 00272 00273 QUIET = YES 00274 00275 # The WARNINGS tag can be used to turn on/off the warning messages that are 00276 # generated by doxygen. Possible values are YES and NO. If left blank 00277 # NO is used. 00278 00279 WARNINGS = YES 00280 00281 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 00282 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will 00283 # automatically be disabled. 00284 00285 WARN_IF_UNDOCUMENTED = YES 00286 00287 # The WARN_FORMAT tag determines the format of the warning messages that 00288 # doxygen can produce. The string should contain the $file, $line, and $text 00289 # tags, which will be replaced by the file and line number from which the 00290 # warning originated and the warning text. 00291 00292 WARN_FORMAT = "$file:$line: $text" 00293 00294 # The WARN_LOGFILE tag can be used to specify a file to which warning 00295 # and error messages should be written. If left blank the output is written 00296 # to stderr. 00297 00298 WARN_LOGFILE = 00299 00300 #--------------------------------------------------------------------------- 00301 # configuration options related to the input files 00302 #--------------------------------------------------------------------------- 00303 00304 # The INPUT tag can be used to specify the files and/or directories that contain 00305 # documented source files. You may enter file names like "myfile.cpp" or 00306 # directories like "/usr/src/myproject". Separate the files or directories 00307 # with spaces. 00308 # supplied by Cook at build time 00309 #INPUT = 00310 00311 # If the value of the INPUT tag contains directories, you can use the 00312 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 00313 # and *.h) to filter out the source-files in the directories. If left 00314 # blank all files are included. 00315 00316 FILE_PATTERNS = 00317 00318 # The RECURSIVE tag can be used to turn specify whether or not subdirectories 00319 # should be searched for input files as well. Possible values are YES and NO. 00320 # If left blank NO is used. 00321 00322 RECURSIVE = NO 00323 00324 # The EXCLUDE tag can be used to specify files and/or directories that should 00325 # excluded from the INPUT source files. This way you can easily exclude a 00326 # subdirectory from a directory tree whose root is specified with the INPUT tag. 00327 00328 EXCLUDE = 00329 00330 # If the value of the INPUT tag contains directories, you can use the 00331 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 00332 # certain files from those directories. 00333 00334 EXCLUDE_PATTERNS = 00335 00336 # The EXAMPLE_PATH tag can be used to specify one or more files or 00337 # directories that contain example code fragments that are included (see 00338 # the \include command). 00339 00340 EXAMPLE_PATH = 00341 00342 # If the value of the EXAMPLE_PATH tag contains directories, you can use the 00343 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 00344 # and *.h) to filter out the source-files in the directories. If left 00345 # blank all files are included. 00346 00347 EXAMPLE_PATTERNS = 00348 00349 # The IMAGE_PATH tag can be used to specify one or more files or 00350 # directories that contain image that are included in the documentation (see 00351 # the \image command). 00352 00353 IMAGE_PATH = 00354 00355 # The INPUT_FILTER tag can be used to specify a program that doxygen should 00356 # invoke to filter for each input file. Doxygen will invoke the filter program 00357 # by executing (via popen()) the command <filter> <input-file>, where <filter> 00358 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an 00359 # input file. Doxygen will then use the output that the filter program writes 00360 # to standard output. 00361 00362 INPUT_FILTER = 00363 00364 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 00365 # INPUT_FILTER) will be used to filter the input files when producing source 00366 # files to browse. 00367 00368 FILTER_SOURCE_FILES = NO 00369 00370 #--------------------------------------------------------------------------- 00371 # configuration options related to the alphabetical class index 00372 #--------------------------------------------------------------------------- 00373 00374 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 00375 # of all compounds will be generated. Enable this if the project 00376 # contains a lot of classes, structs, unions or interfaces. 00377 00378 ALPHABETICAL_INDEX = NO 00379 00380 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 00381 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 00382 # in which this list will be split (can be a number in the range [1..20]) 00383 00384 COLS_IN_ALPHA_INDEX = 5 00385 00386 # In case all classes in a project start with a common prefix, all 00387 # classes will be put under the same header in the alphabetical index. 00388 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that 00389 # should be ignored while generating the index headers. 00390 00391 IGNORE_PREFIX = 00392 00393 #--------------------------------------------------------------------------- 00394 # configuration options related to the HTML output 00395 #--------------------------------------------------------------------------- 00396 00397 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will 00398 # generate HTML output. 00399 00400 GENERATE_HTML = YES 00401 00402 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 00403 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 00404 # put in front of it. If left blank `html' will be used as the default path. 00405 00406 HTML_OUTPUT = html 00407 00408 # The HTML_HEADER tag can be used to specify a personal HTML header for 00409 # each generated HTML page. If it is left blank doxygen will generate a 00410 # standard header. 00411 00412 HTML_HEADER = 00413 00414 # The HTML_FOOTER tag can be used to specify a personal HTML footer for 00415 # each generated HTML page. If it is left blank doxygen will generate a 00416 # standard footer. 00417 00418 HTML_FOOTER = 00419 00420 # The HTML_STYLESHEET tag can be used to specify a user defined cascading 00421 # style sheet that is used by each HTML page. It can be used to 00422 # fine-tune the look of the HTML output. If the tag is left blank doxygen 00423 # will generate a default style sheet 00424 00425 HTML_STYLESHEET = 00426 00427 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 00428 # files or namespaces will be aligned in HTML using tables. If set to 00429 # NO a bullet list will be used. 00430 00431 HTML_ALIGN_MEMBERS = YES 00432 00433 # If the GENERATE_HTMLHELP tag is set to YES, additional index files 00434 # will be generated that can be used as input for tools like the 00435 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 00436 # of the generated HTML documentation. 00437 00438 GENERATE_HTMLHELP = NO 00439 00440 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 00441 # controls if a separate .chi index file is generated (YES) or that 00442 # it should be included in the master .chm file (NO). 00443 00444 GENERATE_CHI = NO 00445 00446 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 00447 # controls whether a binary table of contents is generated (YES) or a 00448 # normal table of contents (NO) in the .chm file. 00449 00450 BINARY_TOC = NO 00451 00452 # The TOC_EXPAND flag can be set YES to add extra items for group members 00453 # to the contents of the Html help documentation and to the tree view. 00454 00455 TOC_EXPAND = NO 00456 00457 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at 00458 # top of each HTML page. The value NO (the default) enables the index and 00459 # the value YES disables it. 00460 00461 DISABLE_INDEX = NO 00462 00463 # This tag can be used to set the number of enum values (range [1..20]) 00464 # that doxygen will group on one line in the generated HTML documentation. 00465 00466 ENUM_VALUES_PER_LINE = 4 00467 00468 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be 00469 # generated containing a tree-like index structure (just like the one that 00470 # is generated for HTML Help). For this to work a browser that supports 00471 # JavaScript and frames is required (for instance Netscape 4.0+ 00472 # or Internet explorer 4.0+). 00473 00474 GENERATE_TREEVIEW = NO 00475 00476 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 00477 # used to set the initial width (in pixels) of the frame in which the tree 00478 # is shown. 00479 00480 TREEVIEW_WIDTH = 250 00481 00482 #--------------------------------------------------------------------------- 00483 # configuration options related to the LaTeX output 00484 #--------------------------------------------------------------------------- 00485 00486 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 00487 # generate Latex output. 00488 00489 GENERATE_LATEX = NO 00490 00491 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 00492 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 00493 # put in front of it. If left blank `latex' will be used as the default path. 00494 00495 LATEX_OUTPUT = latex 00496 00497 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 00498 # LaTeX documents. This may be useful for small projects and may help to 00499 # save some trees in general. 00500 00501 COMPACT_LATEX = NO 00502 00503 # The PAPER_TYPE tag can be used to set the paper type that is used 00504 # by the printer. Possible values are: a4, a4wide, letter, legal and 00505 # executive. If left blank a4wide will be used. 00506 00507 PAPER_TYPE = a4wide 00508 00509 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 00510 # packages that should be included in the LaTeX output. 00511 00512 EXTRA_PACKAGES = 00513 00514 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for 00515 # the generated latex document. The header should contain everything until 00516 # the first chapter. If it is left blank doxygen will generate a 00517 # standard header. Notice: only use this tag if you know what you are doing! 00518 00519 LATEX_HEADER = 00520 00521 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 00522 # is prepared for conversion to pdf (using ps2pdf). The pdf file will 00523 # contain links (just like the HTML output) instead of page references 00524 # This makes the output suitable for online browsing using a pdf viewer. 00525 00526 PDF_HYPERLINKS = NO 00527 00528 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 00529 # plain latex in the generated Makefile. Set this option to YES to get a 00530 # higher quality PDF documentation. 00531 00532 USE_PDFLATEX = NO 00533 00534 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 00535 # command to the generated LaTeX files. This will instruct LaTeX to keep 00536 # running if errors occur, instead of asking the user for help. 00537 # This option is also used when generating formulas in HTML. 00538 00539 LATEX_BATCHMODE = NO 00540 00541 #--------------------------------------------------------------------------- 00542 # configuration options related to the RTF output 00543 #--------------------------------------------------------------------------- 00544 00545 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 00546 # The RTF output is optimised for Word 97 and may not look very pretty with 00547 # other RTF readers or editors. 00548 00549 GENERATE_RTF = NO 00550 00551 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 00552 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 00553 # put in front of it. If left blank `rtf' will be used as the default path. 00554 00555 RTF_OUTPUT = rtf 00556 00557 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact 00558 # RTF documents. This may be useful for small projects and may help to 00559 # save some trees in general. 00560 00561 COMPACT_RTF = NO 00562 00563 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 00564 # will contain hyperlink fields. The RTF file will 00565 # contain links (just like the HTML output) instead of page references. 00566 # This makes the output suitable for online browsing using a WORD or other. 00567 # programs which support those fields. 00568 # Note: wordpad (write) and others do not support links. 00569 00570 RTF_HYPERLINKS = NO 00571 00572 # Load stylesheet definitions from file. Syntax is similar to doxygen's 00573 # config file, i.e. a series of assigments. You only have to provide 00574 # replacements, missing definitions are set to their default value. 00575 00576 RTF_STYLESHEET_FILE = 00577 00578 # Set optional variables used in the generation of an rtf document. 00579 # Syntax is similar to doxygen's config file. 00580 00581 RTF_EXTENSIONS_FILE = 00582 00583 #--------------------------------------------------------------------------- 00584 # configuration options related to the man page output 00585 #--------------------------------------------------------------------------- 00586 00587 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will 00588 # generate man pages 00589 00590 GENERATE_MAN = NO 00591 00592 # The MAN_OUTPUT tag is used to specify where the man pages will be put. 00593 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 00594 # put in front of it. If left blank `man' will be used as the default path. 00595 00596 MAN_OUTPUT = man 00597 00598 # The MAN_EXTENSION tag determines the extension that is added to 00599 # the generated man pages (default is the subroutine's section .3) 00600 00601 MAN_EXTENSION = .3 00602 00603 #--------------------------------------------------------------------------- 00604 # Configuration options related to the preprocessor 00605 #--------------------------------------------------------------------------- 00606 00607 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 00608 # evaluate all C-preprocessor directives found in the sources and include 00609 # files. 00610 00611 ENABLE_PREPROCESSING = YES 00612 00613 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 00614 # names in the source code. If set to NO (the default) only conditional 00615 # compilation will be performed. Macro expansion can be done in a controlled 00616 # way by setting EXPAND_ONLY_PREDEF to YES. 00617 00618 MACRO_EXPANSION = YES 00619 00620 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 00621 # then the macro expansion is limited to the macros specified with the 00622 # PREDEFINED and EXPAND_AS_PREDEFINED tags. 00623 00624 EXPAND_ONLY_PREDEF = YES 00625 00626 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 00627 # in the INCLUDE_PATH (see below) will be search if a #include is found. 00628 00629 SEARCH_INCLUDES = YES 00630 00631 # The INCLUDE_PATH tag can be used to specify one or more directories that 00632 # contain include files that are not input files but should be processed by 00633 # the preprocessor. 00634 00635 INCLUDE_PATH = 00636 00637 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 00638 # patterns (like *.h and *.hpp) to filter out the header-files in the 00639 # directories. If left blank, the patterns specified with FILE_PATTERNS will 00640 # be used. 00641 00642 INCLUDE_FILE_PATTERNS = 00643 00644 # The PREDEFINED tag can be used to specify one or more macro names that 00645 # are defined before the preprocessor is started (similar to the -D option of 00646 # gcc). The argument of the tag is a list of macros of the form: name 00647 # or name=definition (no spaces). If the definition and the = are 00648 # omitted =1 is assumed. 00649 00650 PREDEFINED = \ 00651 "FORMAT_PRINTF(x, y)=" \ 00652 "DEPRECATED=" \ 00653 "NORETURN=" 00654 00655 # If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then 00656 # this tag can be used to specify a list of macro names that should be expanded. 00657 # The macro definition that is found in the sources will be used. 00658 # Use the PREDEFINED tag if you want to use a different macro definition. 00659 00660 EXPAND_AS_DEFINED = 00661 00662 #--------------------------------------------------------------------------- 00663 # Configuration::addtions related to external references 00664 #--------------------------------------------------------------------------- 00665 00666 # The TAGFILES tag can be used to specify one or more tagfiles. 00667 00668 TAGFILES = 00669 00670 # When a file name is specified after GENERATE_TAGFILE, doxygen will create 00671 # a tag file that is based on the input files it reads. 00672 00673 GENERATE_TAGFILE = 00674 00675 # If the ALLEXTERNALS tag is set to YES all external classes will be listed 00676 # in the class index. If set to NO only the inherited external classes 00677 # will be listed. 00678 00679 ALLEXTERNALS = NO 00680 00681 # The PERL_PATH should be the absolute path and name of the perl script 00682 # interpreter (i.e. the result of `which perl'). 00683 00684 PERL_PATH = /usr/bin/perl 00685 00686 #--------------------------------------------------------------------------- 00687 # Configuration options related to the dot tool 00688 #--------------------------------------------------------------------------- 00689 00690 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 00691 # available from the path. This tool is part of Graphviz, a graph visualization 00692 # toolkit from AT&T and Lucent Bell Labs. The other options in this section 00693 # have no effect if this option is set to NO (the default) 00694 00695 HAVE_DOT = NO 00696 00697 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 00698 # will generate a graph for each documented class showing the direct and 00699 # indirect inheritance relations. Setting this tag to YES will force the 00700 # the CLASS_DIAGRAMS tag to NO. 00701 00702 CLASS_GRAPH = YES 00703 00704 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 00705 # will generate a graph for each documented class showing the direct and 00706 # indirect implementation dependencies (inheritance, containment, and 00707 # class references variables) of the class with other documented classes. 00708 00709 COLLABORATION_GRAPH = YES 00710 00711 # If the ENABLE_PREPROCESSING, INCLUDE_GRAPH, and HAVE_DOT tags are set to 00712 # YES then doxygen will generate a graph for each documented file showing 00713 # the direct and indirect include dependencies of the file with other 00714 # documented files. 00715 00716 INCLUDE_GRAPH = YES 00717 00718 # If the ENABLE_PREPROCESSING, INCLUDED_BY_GRAPH, and HAVE_DOT tags are set to 00719 # YES then doxygen will generate a graph for each documented header file showing 00720 # the documented files that directly or indirectly include this file 00721 00722 INCLUDED_BY_GRAPH = YES 00723 00724 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 00725 # will graphical hierarchy of all classes instead of a textual one. 00726 00727 GRAPHICAL_HIERARCHY = YES 00728 00729 # The tag DOT_PATH can be used to specify the path where the dot tool can be 00730 # found. If left blank, it is assumed the dot tool can be found on the path. 00731 00732 DOT_PATH = 00733 00734 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 00735 # generate a legend page explaining the meaning of the various boxes and 00736 # arrows in the dot generated graphs. 00737 00738 GENERATE_LEGEND = YES 00739 00740 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 00741 # remove the intermedate dot files that are used to generate 00742 # the various graphs. 00743 00744 DOT_CLEANUP = YES 00745 00746 #--------------------------------------------------------------------------- 00747 # Configuration::addtions related to the search engine 00748 #--------------------------------------------------------------------------- 00749 00750 # The SEARCHENGINE tag specifies whether or not a search engine should be 00751 # used. If set to NO the values of all tags below this one will be ignored. 00752 00753 SEARCHENGINE = NO