3 # This file describes the settings to be used by the documentation system
4 # doxygen (www.doxygen.org) for the Native Client project.
6 # All text after a hash (#) is considered a comment and will be ignored
8 # TAG = value [value, ...]
9 # For lists items can also be appended using:
10 # TAG += value [value, ...]
11 # Values that contain spaces should be placed between quotes (" ")
13 #---------------------------------------------------------------------------
14 # Project related configuration options
15 #---------------------------------------------------------------------------
17 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
18 # by quotes) that should identify the project.
20 PROJECT_NAME = "Native Client"
22 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
23 # This could be handy for archiving the generated documentation or
24 # if some version control system is used.
28 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
29 # base path where the generated documentation will be put.
30 # If a relative path is entered, it will be relative to the location
31 # where doxygen was started. If left blank the current directory will be used.
33 OUTPUT_DIRECTORY = scons-out/doc
35 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
36 # 4096 sub-directories (in 2 levels) under the output directory of each output
37 # format and will distribute the generated files over these directories.
38 # Enabling this option can be useful when feeding doxygen a huge amount of
39 # source files, where putting all generated files in the same directory would
40 # otherwise cause performance problems for the file system.
44 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
45 # documentation generated by doxygen is written. Doxygen will use this
46 # information to generate all constant output in the proper language.
47 # The default language is English, other supported languages are:
48 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish,
49 # Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese,
50 # Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian,
51 # Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish,
52 # Swedish, and Ukrainian.
54 OUTPUT_LANGUAGE = English
58 # USE_WINDOWS_ENCODING = YES
60 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
61 # include brief member descriptions after the members that are listed in
62 # the file and class documentation (similar to JavaDoc).
63 # Set to NO to disable this.
65 ## Would like YES, but takes too much space with default styles.
66 BRIEF_MEMBER_DESC = NO
68 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
69 # the brief description of a member or function before the detailed description.
70 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
71 # brief descriptions will be completely suppressed.
75 # This tag implements a quasi-intelligent brief description abbreviator
76 # that is used to form the text in various listings. Each string
77 # in this list, if found as the leading text of the brief description, will be
78 # stripped from the text and the result after processing the whole list, is
79 # used as the annotated text. Otherwise, the brief description is used as-is.
80 # If left blank, the following values are used ("$name" is automatically
81 # replaced with the name of the entity): "The $name class" "The $name widget"
82 # "The $name file" "is" "provides" "specifies" "contains"
83 # "represents" "a" "an" "the"
85 ABBREVIATE_BRIEF = "The $name class" \
97 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
98 # Doxygen will generate a detailed section even if there is only a brief
101 ALWAYS_DETAILED_SEC = NO
103 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
104 # inherited members of a class in the documentation of that class as if those
105 # members were ordinary class members. Constructors, destructors and assignment
106 # operators of the base classes will not be shown.
108 INLINE_INHERITED_MEMB = YES
110 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
111 # path before files name in the file list and in the header files. If set
112 # to NO the shortest path that makes the file name unique will be used.
114 FULL_PATH_NAMES = YES
116 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
117 # can be used to strip a user-defined part of the path. Stripping is
118 # only done if one of the specified strings matches the left-hand part of
119 # the path. The tag can be used to show relative paths in the file list.
120 # If left blank the directory from which doxygen is run is used as the
123 STRIP_FROM_PATH = ../third_party/nacl_sdk/$(NACL_SDK_PLATFORM)/sdk/nacl-sdk/nacl/include/
125 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
126 # the path mentioned in the documentation of a class, which tells
127 # the reader which header file to include in order to use a class.
128 # If left blank only the name of the header file containing the class
129 # definition is used. Otherwise one should specify the include paths that
130 # are normally passed to the compiler using the -I flag.
132 STRIP_FROM_INC_PATH =
134 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
135 # (but less readable) file names. This can be useful is your file systems
136 # doesn't support long names like on DOS, Mac, or CD-ROM.
140 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
141 # will interpret the first line (until the first dot) of a JavaDoc-style
142 # comment as the brief description. If set to NO, the JavaDoc
143 # comments will behave just like the Qt-style comments (thus requiring an
144 # explicit @brief command for a brief description.
146 JAVADOC_AUTOBRIEF = YES
148 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
149 # treat a multi-line C++ special comment block (i.e. a block of //! or ///
150 # comments) as a brief description. This used to be the default behaviour.
151 # The new default is to treat a multi-line C++ comment block as a detailed
152 # description. Set this tag to YES if you prefer the old behaviour instead.
154 MULTILINE_CPP_IS_BRIEF = NO
158 # DETAILS_AT_TOP = NO
160 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
161 # member inherits the documentation from any documented member that it
166 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
167 # a new page for each member. If set to NO, the documentation of a member will
168 # be part of the file/class/namespace that contains it.
170 SEPARATE_MEMBER_PAGES = NO
172 # The TAB_SIZE tag can be used to set the number of spaces in a tab.
173 # Doxygen uses this value to replace tabs by spaces in code fragments.
177 # This tag can be used to specify a number of aliases that acts
178 # as commands in the documentation. An alias has the form "name=value".
179 # For example adding "sideeffect=\par Side Effects:\n" will allow you to
180 # put the command \sideeffect (or @sideeffect) in the documentation, which
181 # will result in a user-defined paragraph with heading "Side Effects:".
182 # You can put \n's in the value part of an alias to insert newlines.
186 "nqPosix=[not quite POSIX] " \
187 "nacl=[Native Client] " \
188 "linkNewlib=See the newlib documentation at http://sourceware.org/newlib/." \
189 "linkGcc=See the gcc library documentation at http://gcc.gnu.org/onlinedocs/gcc-4.2.2/gcc/." \
190 "linkPthread=Requires linking with pthread library."
192 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
193 # sources only. Doxygen will then generate output that is more tailored for C.
194 # For instance, some of the names that are used will be different. The list
195 # of all members will be omitted, etc.
197 OPTIMIZE_OUTPUT_FOR_C = YES
199 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
200 # sources only. Doxygen will then generate output that is more tailored for Java.
201 # For instance, namespaces will be presented as packages, qualified scopes
202 # will look different, etc.
204 OPTIMIZE_OUTPUT_JAVA = NO
206 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to
207 # include (a tag file for) the STL sources as input, then you should
208 # set this tag to YES in order to let doxygen match functions declarations and
209 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
210 # func(std::string) {}). This also make the inheritance and collaboration
211 # diagrams that involve STL classes more complete and accurate.
213 BUILTIN_STL_SUPPORT = NO
215 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
216 # tag is set to YES, then doxygen will reuse the documentation of the first
217 # member in the group (if any) for the other members of the group. By default
218 # all members of a group must be documented explicitly.
220 DISTRIBUTE_GROUP_DOC = NO
222 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
223 # the same type (for instance a group of public functions) to be put as a
224 # subgroup of that type (e.g. under the Public Functions section). Set it to
225 # NO to prevent subgrouping. Alternatively, this can be done per class using
226 # the \nosubgrouping command.
230 #---------------------------------------------------------------------------
231 # Build related configuration options
232 #---------------------------------------------------------------------------
234 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
235 # documentation are documented, even if no documentation was available.
236 # Private class members and static file members will be hidden unless
237 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
241 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
242 # will be included in the documentation.
246 # If the EXTRACT_STATIC tag is set to YES all static members of a file
247 # will be included in the documentation.
251 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
252 # defined locally in source files will be included in the documentation.
253 # If set to NO only classes defined in header files are included.
255 EXTRACT_LOCAL_CLASSES = YES
257 # This flag is only useful for Objective-C code. When set to YES local
258 # methods, which are defined in the implementation section but not in
259 # the interface are included in the documentation.
260 # If set to NO (the default) only methods in the interface are included.
262 EXTRACT_LOCAL_METHODS = NO
264 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
265 # undocumented members of documented classes, files or namespaces.
266 # If set to NO (the default) these members will be included in the
267 # various overviews, but no documentation section is generated.
268 # This option has no effect if EXTRACT_ALL is enabled.
270 HIDE_UNDOC_MEMBERS = NO
272 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
273 # undocumented classes that are normally visible in the class hierarchy.
274 # If set to NO (the default) these classes will be included in the various
275 # overviews. This option has no effect if EXTRACT_ALL is enabled.
277 HIDE_UNDOC_CLASSES = NO
279 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
280 # friend (class|struct|union) declarations.
281 # If set to NO (the default) these declarations will be included in the
284 HIDE_FRIEND_COMPOUNDS = NO
286 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
287 # documentation blocks found inside the body of a function.
288 # If set to NO (the default) these blocks will be appended to the
289 # function's detailed documentation block.
291 HIDE_IN_BODY_DOCS = NO
293 # The INTERNAL_DOCS tag determines if documentation
294 # that is typed after a \internal command is included. If the tag is set
295 # to NO (the default) then the documentation will be excluded.
296 # Set it to YES to include the internal documentation.
300 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
301 # file names in lower-case letters. If set to YES upper-case letters are also
302 # allowed. This is useful if you have classes or files whose names only differ
303 # in case and if your file system supports case sensitive file names. Windows
304 # and Mac users are advised to set this option to NO.
306 CASE_SENSE_NAMES = NO
308 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
309 # will show members with their full class and namespace scopes in the
310 # documentation. If set to YES the scope will be hidden.
312 HIDE_SCOPE_NAMES = NO
314 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
315 # will put a list of the files that are included by a file in the documentation
318 SHOW_INCLUDE_FILES = NO
320 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
321 # is inserted in the documentation for inline members.
325 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
326 # will sort the (detailed) documentation of file and class members
327 # alphabetically by member name. If set to NO the members will appear in
330 SORT_MEMBER_DOCS = YES
332 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
333 # brief documentation of file, namespace and class members alphabetically
334 # by member name. If set to NO (the default) the members will appear in
339 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
340 # sorted by fully-qualified names, including namespaces. If set to
341 # NO (the default), the class list will be sorted only by class name,
342 # not including the namespace part.
343 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
344 # Note: This option applies only to the class list, not to the
347 SORT_BY_SCOPE_NAME = YES
349 # The GENERATE_TODOLIST tag can be used to enable (YES) or
350 # disable (NO) the todo list. This list is created by putting \todo
351 # commands in the documentation.
353 GENERATE_TODOLIST = YES
355 # The GENERATE_TESTLIST tag can be used to enable (YES) or
356 # disable (NO) the test list. This list is created by putting \test
357 # commands in the documentation.
359 GENERATE_TESTLIST = YES
361 # The GENERATE_BUGLIST tag can be used to enable (YES) or
362 # disable (NO) the bug list. This list is created by putting \bug
363 # commands in the documentation.
365 GENERATE_BUGLIST = YES
367 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
368 # disable (NO) the deprecated list. This list is created by putting
369 # \deprecated commands in the documentation.
371 GENERATE_DEPRECATEDLIST= YES
373 # The ENABLED_SECTIONS tag can be used to enable conditional
374 # documentation sections, marked by \if sectionname ... \endif.
378 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines
379 # the initial value of a variable or define consists of for it to appear in
380 # the documentation. If the initializer consists of more lines than specified
381 # here it will be hidden. Use a value of 0 to hide initializers completely.
382 # The appearance of the initializer of individual variables and defines in the
383 # documentation can be controlled using \showinitializer or \hideinitializer
384 # command in the documentation regardless of this setting.
386 MAX_INITIALIZER_LINES = 30
388 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated
389 # at the bottom of the documentation of classes and structs. If set to YES the
390 # list will mention the files that were used to generate the documentation.
394 # If the sources in your project are distributed over multiple directories
395 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
396 # in the documentation. The default is NO.
398 SHOW_DIRECTORIES = NO
400 # The FILE_VERSION_FILTER tag can be used to specify a program or script that
401 # doxygen should invoke to get the current version for each file (typically from the
402 # version control system). Doxygen will invoke the program by executing (via
403 # popen()) the command <command> <input-file>, where <command> is the value of
404 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
405 # provided by doxygen. Whatever the program writes to standard output
406 # is used as the file version. See the manual for examples.
408 FILE_VERSION_FILTER =
410 #---------------------------------------------------------------------------
411 # configuration options related to warning and progress messages
412 #---------------------------------------------------------------------------
414 # The QUIET tag can be used to turn on/off the messages that are generated
415 # by doxygen. Possible values are YES and NO. If left blank NO is used.
419 # The WARNINGS tag can be used to turn on/off the warning messages that are
420 # generated by doxygen. Possible values are YES and NO. If left blank
425 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
426 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will
427 # automatically be disabled.
429 WARN_IF_UNDOCUMENTED = YES
431 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
432 # potential errors in the documentation, such as not documenting some
433 # parameters in a documented function, or documenting parameters that
434 # don't exist or using markup commands wrongly.
436 WARN_IF_DOC_ERROR = YES
438 # This WARN_NO_PARAMDOC option can be abled to get warnings for
439 # functions that are documented, but have no documentation for their parameters
440 # or return value. If set to NO (the default) doxygen will only warn about
441 # wrong or incomplete parameter documentation, but not about the absence of
444 WARN_NO_PARAMDOC = NO
446 # The WARN_FORMAT tag determines the format of the warning messages that
447 # doxygen can produce. The string should contain the $file, $line, and $text
448 # tags, which will be replaced by the file and line number from which the
449 # warning originated and the warning text. Optionally the format may contain
450 # $version, which will be replaced by the version of the file (if it could
451 # be obtained via FILE_VERSION_FILTER)
453 WARN_FORMAT = "$file:$line: $text"
455 # The WARN_LOGFILE tag can be used to specify a file to which warning
456 # and error messages should be written. If left blank the output is written
461 #---------------------------------------------------------------------------
462 # configuration options related to the input files
463 #---------------------------------------------------------------------------
465 # The INPUT tag can be used to specify the files and/or directories that contain
466 # documented source files. You may enter file names like "myfile.cpp" or
467 # directories like "/usr/src/myproject". Separate the files or directories
470 # NACL NOTE: After 'make newlib' in the tools directory, the header files
471 # are placed in /usr/local. They're generated from the following (preliminary
472 # list; there are probably files that should be added to or removed from
475 # service_runtime/include/bits/*.h
476 # service_runtime/include/machine/*.h
477 # service_runtime/include/sys/*.h
479 # tools/libnacl/tls.h
480 # tools/npapi_runtime/nacl_npapi.h
481 # npapi_plugin/gecko-sdk/include/npapi.h
482 # npapi_plugin/gecko-sdk/include/npruntime.h
483 # npapi_plugin/gecko-sdk/include/nptypes.h
484 # npapi_plugin/gecko-sdk/include/npupp.h
486 # tools/libsrpc/nacl_srpc.h rpc_serialize.h
488 # tools/libav/nacl_av.h
490 # tools/nc_threads/pthread.h
491 # tools/nc_threads/nc_system.h
492 # tools/nc_threads/atomic_ops.h
493 # tools/nc_threads/semaphore.h
495 INPUT = ../third_party/nacl_sdk/$(NACL_SDK_PLATFORM)/sdk/nacl-sdk/nacl/include/bits \
496 ../third_party/nacl_sdk/$(NACL_SDK_PLATFORM)/sdk/nacl-sdk/nacl/include/machine \
497 ../third_party/nacl_sdk/$(NACL_SDK_PLATFORM)/sdk/nacl-sdk/nacl/include/nacl \
498 ../third_party/nacl_sdk/$(NACL_SDK_PLATFORM)/sdk/nacl-sdk/nacl/include/sys \
499 ../third_party/nacl_sdk/$(NACL_SDK_PLATFORM)/sdk/nacl-sdk/nacl/include/pthread.h \
502 # If the value of the INPUT tag contains directories, you can use the
503 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
504 # and *.h) to filter out the source-files in the directories. If left
505 # blank the following patterns are tested:
506 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
507 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py
509 FILE_PATTERNS = *.h \
512 # The RECURSIVE tag can be used to turn specify whether or not subdirectories
513 # should be searched for input files as well. Possible values are YES and NO.
514 # If left blank NO is used.
518 # The EXCLUDE tag can be used to specify files and/or directories that should
519 # excluded from the INPUT source files. This way you can easily exclude a
520 # subdirectory from a directory tree whose root is specified with the INPUT tag.
522 EXCLUDE = ../third_party/nacl_sdk/$(NACL_SDK_PLATFORM)/sdk/nacl-sdk/nacl/include/nacl/nacl_imc.h \
523 ../third_party/nacl_sdk/$(NACL_SDK_PLATFORM)/sdk/nacl-sdk/nacl/include/nacl/nacl_imc_c.h \
525 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or
526 # directories that are symbolic links (a Unix filesystem feature) are excluded
529 EXCLUDE_SYMLINKS = NO
531 # If the value of the INPUT tag contains directories, you can use the
532 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
533 # certain files from those directories. Note that the wildcards are matched
534 # against the file with absolute path, so to exclude all test directories
535 # for example use the pattern */test/*
537 EXCLUDE_PATTERNS = _*.h
539 # The EXAMPLE_PATH tag can be used to specify one or more files or
540 # directories that contain example code fragments that are included (see
541 # the \include command).
545 # If the value of the EXAMPLE_PATH tag contains directories, you can use the
546 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
547 # and *.h) to filter out the source-files in the directories. If left
548 # blank all files are included.
552 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
553 # searched for input files to be used with the \include or \dontinclude
554 # commands irrespective of the value of the RECURSIVE tag.
555 # Possible values are YES and NO. If left blank NO is used.
557 EXAMPLE_RECURSIVE = NO
559 # The IMAGE_PATH tag can be used to specify one or more files or
560 # directories that contain image that are included in the documentation (see
561 # the \image command).
565 # The INPUT_FILTER tag can be used to specify a program that doxygen should
566 # invoke to filter for each input file. Doxygen will invoke the filter program
567 # by executing (via popen()) the command <filter> <input-file>, where <filter>
568 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an
569 # input file. Doxygen will then use the output that the filter program writes
570 # to standard output. If FILTER_PATTERNS is specified, this tag will be
575 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
576 # basis. Doxygen will compare the file name with each pattern and apply the
577 # filter if there is a match. The filters are a list of the form:
578 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
579 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
580 # is applied to all files.
584 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
585 # INPUT_FILTER) will be used to filter the input files when producing source
586 # files to browse (i.e. when SOURCE_BROWSER is set to YES).
588 FILTER_SOURCE_FILES = NO
590 #---------------------------------------------------------------------------
591 # configuration options related to source browsing
592 #---------------------------------------------------------------------------
594 # If the SOURCE_BROWSER tag is set to YES then a list of source files will
595 # be generated. Documented entities will be cross-referenced with these sources.
596 # Note: To get rid of all source code in the generated output, make sure also
597 # VERBATIM_HEADERS is set to NO.
599 ##Setting this to YES adds Packages, Classes, and Files tabs.
600 ##Setting VERBATIM_HEADERS to YES (when this is NO) just adds the Files tab.
603 # Setting the INLINE_SOURCES tag to YES will include the body
604 # of functions and classes directly in the documentation.
608 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
609 # doxygen to hide any special comment blocks from generated source code
610 # fragments. Normal C and C++ comments will always remain visible.
612 STRIP_CODE_COMMENTS = YES
614 # If the REFERENCED_BY_RELATION tag is set to YES (the default)
615 # then for each documented function all documented
616 # functions referencing it will be listed.
618 REFERENCED_BY_RELATION = NO
620 # If the REFERENCES_RELATION tag is set to YES (the default)
621 # then for each documented function all documented entities
622 # called/used by that function will be listed.
624 REFERENCES_RELATION = NO
626 # If the USE_HTAGS tag is set to YES then the references to source code
627 # will point to the HTML generated by the htags(1) tool instead of doxygen
628 # built-in source browser. The htags tool is part of GNU's global source
629 # tagging system (see http://www.gnu.org/software/global/global.html). You
630 # will need version 4.8.6 or higher.
634 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
635 # will generate a verbatim copy of the header file for each class for
636 # which an include is specified. Set to NO to disable this.
638 ##YES includes the Files tab (with link to source files); NO means no Files Tab
639 ##unless SOURCE_BROWSER is YES (in which case this seems to have no effect).
640 VERBATIM_HEADERS = YES
642 #---------------------------------------------------------------------------
643 # configuration options related to the alphabetical class index
644 #---------------------------------------------------------------------------
646 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
647 # of all compounds will be generated. Enable this if the project
648 # contains a lot of classes, structs, unions or interfaces.
650 ALPHABETICAL_INDEX = NO
652 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
653 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
654 # in which this list will be split (can be a number in the range [1..20])
656 COLS_IN_ALPHA_INDEX = 5
658 # In case all classes in a project start with a common prefix, all
659 # classes will be put under the same header in the alphabetical index.
660 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that
661 # should be ignored while generating the index headers.
665 #---------------------------------------------------------------------------
666 # configuration options related to the HTML output
667 #---------------------------------------------------------------------------
669 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
670 # generate HTML output.
674 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
675 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
676 # put in front of it. If left blank `html' will be used as the default path.
680 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for
681 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank
682 # doxygen will generate files with .html extension.
684 HTML_FILE_EXTENSION = .html
686 # The HTML_HEADER tag can be used to specify a personal HTML header for
687 # each generated HTML page. If it is left blank doxygen will generate a
690 #HTML_HEADER = documentation/header.html
693 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
694 # each generated HTML page. If it is left blank doxygen will generate a
697 #HTML_FOOTER = documentation/footer.html
700 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading
701 # style sheet that is used by each HTML page. It can be used to
702 # fine-tune the look of the HTML output. If the tag is left blank doxygen
703 # will generate a default style sheet. Note that doxygen will try to copy
704 # the style sheet file to the HTML output directory, so don't put your own
705 # stylesheet in the HTML output directory as well, or it will be erased!
707 #HTML_STYLESHEET = documentation/stylesheet.css
710 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
711 # files or namespaces will be aligned in HTML using tables. If set to
712 # NO a bullet list will be used.
714 HTML_ALIGN_MEMBERS = NO
716 # If the GENERATE_HTMLHELP tag is set to YES, additional index files
717 # will be generated that can be used as input for tools like the
718 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
719 # of the generated HTML documentation.
721 GENERATE_HTMLHELP = NO
723 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
724 # be used to specify the file name of the resulting .chm file. You
725 # can add a path in front of the file if the result should not be
726 # written to the html output directory.
730 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
731 # be used to specify the location (absolute path including file name) of
732 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
733 # the HTML help compiler on the generated index.hhp.
737 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
738 # controls if a separate .chi index file is generated (YES) or that
739 # it should be included in the master .chm file (NO).
743 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
744 # controls whether a binary table of contents is generated (YES) or a
745 # normal table of contents (NO) in the .chm file.
749 # The TOC_EXPAND flag can be set to YES to add extra items for group members
750 # to the contents of the HTML help documentation and to the tree view.
754 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at
755 # top of each HTML page. The value NO (the default) enables the index and
756 # the value YES disables it.
760 # This tag can be used to set the number of enum values (range [1..20])
761 # that doxygen will group on one line in the generated HTML documentation.
763 ENUM_VALUES_PER_LINE = 4
765 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
766 # generated containing a tree-like index structure (just like the one that
767 # is generated for HTML Help). For this to work a browser that supports
768 # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,
769 # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
770 # probably better off using the HTML help feature.
772 GENERATE_TREEVIEW = NO
774 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
775 # used to set the initial width (in pixels) of the frame in which the tree
780 #---------------------------------------------------------------------------
781 # configuration options related to the LaTeX output
782 #---------------------------------------------------------------------------
784 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
785 # generate Latex output.
789 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
790 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
791 # put in front of it. If left blank `latex' will be used as the default path.
795 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
796 # invoked. If left blank `latex' will be used as the default command name.
798 LATEX_CMD_NAME = latex
800 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
801 # generate index for LaTeX. If left blank `makeindex' will be used as the
802 # default command name.
804 MAKEINDEX_CMD_NAME = makeindex
806 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
807 # LaTeX documents. This may be useful for small projects and may help to
808 # save some trees in general.
812 # The PAPER_TYPE tag can be used to set the paper type that is used
813 # by the printer. Possible values are: a4, a4wide, letter, legal and
814 # executive. If left blank a4wide will be used.
818 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
819 # packages that should be included in the LaTeX output.
823 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
824 # the generated latex document. The header should contain everything until
825 # the first chapter. If it is left blank doxygen will generate a
826 # standard header. Notice: only use this tag if you know what you are doing!
830 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
831 # is prepared for conversion to pdf (using ps2pdf). The pdf file will
832 # contain links (just like the HTML output) instead of page references
833 # This makes the output suitable for online browsing using a pdf viewer.
837 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
838 # plain latex in the generated Makefile. Set this option to YES to get a
839 # higher quality PDF documentation.
843 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
844 # command to the generated LaTeX files. This will instruct LaTeX to keep
845 # running if errors occur, instead of asking the user for help.
846 # This option is also used when generating formulas in HTML.
850 # If LATEX_HIDE_INDICES is set to YES then doxygen will not
851 # include the index chapters (such as File Index, Compound Index, etc.)
854 LATEX_HIDE_INDICES = NO
856 #---------------------------------------------------------------------------
857 # configuration options related to the RTF output
858 #---------------------------------------------------------------------------
860 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
861 # The RTF output is optimized for Word 97 and may not look very pretty with
862 # other RTF readers or editors.
866 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
867 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
868 # put in front of it. If left blank `rtf' will be used as the default path.
872 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact
873 # RTF documents. This may be useful for small projects and may help to
874 # save some trees in general.
878 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
879 # will contain hyperlink fields. The RTF file will
880 # contain links (just like the HTML output) instead of page references.
881 # This makes the output suitable for online browsing using WORD or other
882 # programs which support those fields.
883 # Note: wordpad (write) and others do not support links.
887 # Load stylesheet definitions from file. Syntax is similar to doxygen's
888 # config file, i.e. a series of assignments. You only have to provide
889 # replacements, missing definitions are set to their default value.
891 RTF_STYLESHEET_FILE =
893 # Set optional variables used in the generation of an rtf document.
894 # Syntax is similar to doxygen's config file.
896 RTF_EXTENSIONS_FILE =
898 #---------------------------------------------------------------------------
899 # configuration options related to the man page output
900 #---------------------------------------------------------------------------
902 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
907 # The MAN_OUTPUT tag is used to specify where the man pages will be put.
908 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
909 # put in front of it. If left blank `man' will be used as the default path.
913 # The MAN_EXTENSION tag determines the extension that is added to
914 # the generated man pages (default is the subroutine's section .3)
918 # If the MAN_LINKS tag is set to YES and Doxygen generates man output,
919 # then it will generate one additional man file for each entity
920 # documented in the real man page(s). These additional files
921 # only source the real man page, but without them the man command
922 # would be unable to find the correct page. The default is NO.
926 #---------------------------------------------------------------------------
927 # configuration options related to the XML output
928 #---------------------------------------------------------------------------
930 # If the GENERATE_XML tag is set to YES Doxygen will
931 # generate an XML file that captures the structure of
932 # the code including all documentation.
936 # The XML_OUTPUT tag is used to specify where the XML pages will be put.
937 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
938 # put in front of it. If left blank `xml' will be used as the default path.
942 # The XML_SCHEMA tag can be used to specify an XML schema,
943 # which can be used by a validating XML parser to check the
944 # syntax of the XML files.
948 # The XML_DTD tag can be used to specify an XML DTD,
949 # which can be used by a validating XML parser to check the
950 # syntax of the XML files.
954 # If the XML_PROGRAMLISTING tag is set to YES Doxygen will
955 # dump the program listings (including syntax highlighting
956 # and cross-referencing information) to the XML output. Note that
957 # enabling this will significantly increase the size of the XML output.
959 XML_PROGRAMLISTING = YES
961 #---------------------------------------------------------------------------
962 # configuration options for the AutoGen Definitions output
963 #---------------------------------------------------------------------------
965 # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
966 # generate an AutoGen Definitions (see autogen.sf.net) file
967 # that captures the structure of the code including all
968 # documentation. Note that this feature is still experimental
969 # and incomplete at the moment.
971 GENERATE_AUTOGEN_DEF = NO
973 #---------------------------------------------------------------------------
974 # configuration options related to the Perl module output
975 #---------------------------------------------------------------------------
977 # If the GENERATE_PERLMOD tag is set to YES Doxygen will
978 # generate a Perl module file that captures the structure of
979 # the code including all documentation. Note that this
980 # feature is still experimental and incomplete at the
983 GENERATE_PERLMOD = NO
985 # If the PERLMOD_LATEX tag is set to YES Doxygen will generate
986 # the necessary Makefile rules, Perl scripts and LaTeX code to be able
987 # to generate PDF and DVI output from the Perl module output.
991 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
992 # nicely formatted so it can be parsed by a human reader. This is useful
993 # if you want to understand what is going on. On the other hand, if this
994 # tag is set to NO the size of the Perl module output will be much smaller
995 # and Perl will parse it just the same.
999 # The names of the make variables in the generated doxyrules.make file
1000 # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
1001 # This is useful so different doxyrules.make files included by the same
1002 # Makefile don't overwrite each other's variables.
1004 PERLMOD_MAKEVAR_PREFIX =
1006 #---------------------------------------------------------------------------
1007 # Configuration options related to the preprocessor
1008 #---------------------------------------------------------------------------
1010 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
1011 # evaluate all C-preprocessor directives found in the sources and include
1014 ENABLE_PREPROCESSING = YES
1016 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
1017 # names in the source code. If set to NO (the default) only conditional
1018 # compilation will be performed. Macro expansion can be done in a controlled
1019 # way by setting EXPAND_ONLY_PREDEF to YES.
1021 MACRO_EXPANSION = NO
1023 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
1024 # then the macro expansion is limited to the macros specified with the
1025 # PREDEFINED and EXPAND_AS_DEFINED tags.
1027 EXPAND_ONLY_PREDEF = NO
1029 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
1030 # in the INCLUDE_PATH (see below) will be search if a #include is found.
1032 SEARCH_INCLUDES = YES
1034 # The INCLUDE_PATH tag can be used to specify one or more directories that
1035 # contain include files that are not input files but should be processed by
1040 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
1041 # patterns (like *.h and *.hpp) to filter out the header-files in the
1042 # directories. If left blank, the patterns specified with FILE_PATTERNS will
1045 INCLUDE_FILE_PATTERNS =
1047 # The PREDEFINED tag can be used to specify one or more macro names that
1048 # are defined before the preprocessor is started (similar to the -D option of
1049 # gcc). The argument of the tag is a list of macros of the form: name
1050 # or name=definition (no spaces). If the definition and the = are
1051 # omitted =1 is assumed. To prevent a macro definition from being
1052 # undefined via #undef or recursively expanded use the := operator
1053 # instead of the = operator.
1055 PREDEFINED = __native_client__
1057 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
1058 # this tag can be used to specify a list of macro names that should be expanded.
1059 # The macro definition that is found in the sources will be used.
1060 # Use the PREDEFINED tag if you want to use a different macro definition.
1064 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
1065 # doxygen's preprocessor will remove all function-like macros that are alone
1066 # on a line, have an all uppercase name, and do not end with a semicolon. Such
1067 # function macros are typically used for boiler-plate code, and will confuse
1068 # the parser if not removed.
1070 SKIP_FUNCTION_MACROS = YES
1072 #---------------------------------------------------------------------------
1073 # Configuration::additions related to external references
1074 #---------------------------------------------------------------------------
1076 # The TAGFILES option can be used to specify one or more tagfiles.
1077 # Optionally an initial location of the external documentation
1078 # can be added for each tagfile. The format of a tag file without
1079 # this location is as follows:
1080 # TAGFILES = file1 file2 ...
1081 # Adding location for the tag files is done as follows:
1082 # TAGFILES = file1=loc1 "file2 = loc2" ...
1083 # where "loc1" and "loc2" can be relative or absolute paths or
1084 # URLs. If a location is present for each tag, the installdox tool
1085 # does not have to be run to correct the links.
1086 # Note that each tag file must have a unique name
1087 # (where the name does NOT include the path)
1088 # If a tag file is not located in the directory in which doxygen
1089 # is run, you must also specify the path to the tagfile here.
1093 # When a file name is specified after GENERATE_TAGFILE, doxygen will create
1094 # a tag file that is based on the input files it reads.
1098 # If the ALLEXTERNALS tag is set to YES all external classes will be listed
1099 # in the class index. If set to NO only the inherited external classes
1104 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
1105 # in the modules index. If set to NO, only the current project's groups will
1108 EXTERNAL_GROUPS = YES
1110 # The PERL_PATH should be the absolute path and name of the perl script
1111 # interpreter (i.e. the result of `which perl').
1113 PERL_PATH = /usr/bin/perl
1115 #---------------------------------------------------------------------------
1116 # Configuration options related to the dot tool
1117 #---------------------------------------------------------------------------
1119 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
1120 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
1121 # or super classes. Setting the tag to NO turns the diagrams off. Note that
1122 # this option is superseded by the HAVE_DOT option below. This is only a
1123 # fallback. It is recommended to install and use dot, since it yields more
1128 # If set to YES, the inheritance and collaboration graphs will hide
1129 # inheritance and usage relations if the target is undocumented
1130 # or is not a class.
1132 HIDE_UNDOC_RELATIONS = YES
1134 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
1135 # available from the path. This tool is part of Graphviz, a graph visualization
1136 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
1137 # have no effect if this option is set to NO (the default)
1141 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
1142 # will generate a graph for each documented class showing the direct and
1143 # indirect inheritance relations. Setting this tag to YES will force the
1144 # the CLASS_DIAGRAMS tag to NO.
1148 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
1149 # will generate a graph for each documented class showing the direct and
1150 # indirect implementation dependencies (inheritance, containment, and
1151 # class references variables) of the class with other documented classes.
1153 COLLABORATION_GRAPH = NO
1155 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
1156 # will generate a graph for groups, showing the direct groups dependencies
1160 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
1161 # collaboration diagrams in a style similar to the OMG's Unified Modeling
1166 # If set to YES, the inheritance and collaboration graphs will show the
1167 # relations between templates and their instances.
1169 TEMPLATE_RELATIONS = NO
1171 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
1172 # tags are set to YES then doxygen will generate a graph for each documented
1173 # file showing the direct and indirect include dependencies of the file with
1174 # other documented files.
1178 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
1179 # HAVE_DOT tags are set to YES then doxygen will generate a graph for each
1180 # documented header file showing the documented files that directly or
1181 # indirectly include this file.
1183 INCLUDED_BY_GRAPH = YES
1185 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
1186 # generate a call dependency graph for every global function or class method.
1187 # Note that enabling this option will significantly increase the time of a run.
1188 # So in most cases it will be better to enable call graphs for selected
1189 # functions only using the \callgraph command.
1193 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
1194 # will graphical hierarchy of all classes instead of a textual one.
1196 GRAPHICAL_HIERARCHY = YES
1198 # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
1199 # then doxygen will show the dependencies a directory has on other directories
1200 # in a graphical way. The dependency relations are determined by the #include
1201 # relations between the files in the directories.
1203 DIRECTORY_GRAPH = YES
1205 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
1206 # generated by dot. Possible values are png, jpg, or gif
1207 # If left blank png will be used.
1209 DOT_IMAGE_FORMAT = png
1211 # The tag DOT_PATH can be used to specify the path where the dot tool can be
1212 # found. If left blank, it is assumed the dot tool can be found in the path.
1216 # The DOTFILE_DIRS tag can be used to specify one or more directories that
1217 # contain dot files that are included in the documentation (see the
1218 # \dotfile command).
1224 # MAX_DOT_GRAPH_WIDTH = 1024
1226 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height
1227 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
1228 # this value, doxygen will try to truncate the graph, so that it fits within
1229 # the specified constraint. Beware that most browsers cannot cope with very
1234 # MAX_DOT_GRAPH_HEIGHT = 1024
1236 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
1237 # graphs generated by dot. A depth value of 3 means that only nodes reachable
1238 # from the root by following a path via at most 3 edges will be shown. Nodes
1239 # that lay further from the root node will be omitted. Note that setting this
1240 # option to 1 or 2 may greatly reduce the computation time needed for large
1241 # code bases. Also note that a graph may be further truncated if the graph's
1242 # image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH
1243 # and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default),
1244 # the graph is not depth-constrained.
1246 MAX_DOT_GRAPH_DEPTH = 1000
1248 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
1249 # background. This is disabled by default, which results in a white background.
1250 # Warning: Depending on the platform used, enabling this option may lead to
1251 # badly anti-aliased labels on the edges of a graph (i.e. they become hard to
1254 DOT_TRANSPARENT = YES
1256 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
1257 # files in one run (i.e. multiple -o and -T options on the command line). This
1258 # makes dot run faster, but since only newer versions of dot (>1.8.10)
1259 # support this, this feature is disabled by default.
1261 DOT_MULTI_TARGETS = NO
1263 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
1264 # generate a legend page explaining the meaning of the various boxes and
1265 # arrows in the dot generated graphs.
1267 GENERATE_LEGEND = YES
1269 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
1270 # remove the intermediate dot files that are used to generate
1271 # the various graphs.
1275 #---------------------------------------------------------------------------
1276 # Configuration::additions related to the search engine
1277 #---------------------------------------------------------------------------
1279 # The SEARCHENGINE tag specifies whether or not a search engine should be
1280 # used. If set to NO the values of all tags below this one will be ignored.