3 # This file describes the settings to be used by the documentation system
4 # doxygen (www.doxygen.org) for a 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 # This tag specifies the encoding used for all characters in the config file
18 # that follow. The default is UTF-8 which is also the encoding used for all
19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
20 # iconv built into libc) for the transcoding. See
23 DOXYFILE_ENCODING = UTF-8
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
26 # by quotes) that should identify the project.
28 PROJECT_NAME =
"libamxrt"
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
31 # This could be handy for archiving the generated documentation or
32 # if some version control system is used.
34 PROJECT_NUMBER =
"$(VERSION)"
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
37 # base path where the generated documentation will be put.
38 # If a relative path is entered, it will be relative to the location
39 # where doxygen was started. If left blank the current directory will be used.
41 OUTPUT_DIRECTORY = ../output/doc/
43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
44 # 4096 sub-directories (in 2 levels) under the output directory of each output
45 # format and will distribute the generated files over these directories.
46 # Enabling this option can be useful when feeding doxygen a huge amount of
47 # source files, where putting all generated files in the same directory would
48 # otherwise cause performance problems for the file system.
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
53 # documentation generated by doxygen is written. Doxygen will use this
54 # information to generate all constant output in the proper language.
55 # The default language is English, other supported languages are:
56 # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
57 # Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek,
58 # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages),
59 # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish,
60 # Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, Slovene,
61 # Spanish, Swedish, and Ukrainian.
63 OUTPUT_LANGUAGE = English
65 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
66 # include brief member descriptions after the members that are listed in
67 # the file and class documentation (similar to JavaDoc).
68 # Set to NO to disable this.
70 BRIEF_MEMBER_DESC = YES
72 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
73 # the brief description of a member or function before the detailed description.
74 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
75 # brief descriptions will be completely suppressed.
79 # This tag implements a quasi-intelligent brief description abbreviator
80 # that is used to form the text in various listings. Each string
81 # in this list, if found as the leading text of the brief description, will be
82 # stripped from the text and the result after processing the whole list, is
83 # used as the annotated text. Otherwise, the brief description is used as-is.
84 # If left blank, the following values are used ("$name" is automatically
85 # replaced with the name of the entity): "The $name class" "The $name widget"
86 # "The $name file" "is" "provides" "specifies" "contains"
87 # "represents" "a" "an" "the"
89 ABBREVIATE_BRIEF =
"The $name class" \
101 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
102 # Doxygen will generate a detailed section even if there is only a brief
105 ALWAYS_DETAILED_SEC = NO
107 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
108 # inherited members of a class in the documentation of that class as if those
109 # members were ordinary class members. Constructors, destructors and assignment
110 # operators of the base classes will not be shown.
112 INLINE_INHERITED_MEMB = NO
114 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
115 # path before files name in the file list and in the header files. If set
116 # to NO the shortest path that makes the file name unique will be used.
120 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
121 # can be used to strip a user-defined part of the path. Stripping is
122 # only done if one of the specified strings matches the left-hand part of
123 # the path. The tag can be used to show relative paths in the file list.
124 # If left blank the directory from which doxygen is run is used as the
129 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
130 # the path mentioned in the documentation of a class, which tells
131 # the reader which header file to include in order to use a class.
132 # If left blank only the name of the header file containing the class
133 # definition is used. Otherwise one should specify the include paths that
134 # are normally passed to the compiler using the -I flag.
136 STRIP_FROM_INC_PATH =
138 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
139 # (but less readable) file names. This can be useful is your file systems
140 # doesn't support long names like on DOS, Mac, or CD-ROM.
144 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
145 # will interpret the first line (until the first dot) of a JavaDoc-style
146 # comment as the brief description. If set to NO, the JavaDoc
147 # comments will behave just like regular Qt-style comments
148 # (thus requiring an explicit @brief command for a brief description.)
150 JAVADOC_AUTOBRIEF = NO
152 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will
153 # interpret the first line (until the first dot) of a Qt-style
154 # comment as the brief description. If set to NO, the comments
155 # will behave just like regular Qt-style comments (thus requiring
156 # an explicit \brief command for a brief description.)
160 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
161 # treat a multi-line C++ special comment block (i.e. a block of
162 # comments) as a brief description. This used to be the default behaviour.
163 # The new default is to treat a multi-line C++ comment block as a detailed
164 # description. Set this tag to YES if you prefer the old behaviour instead.
166 MULTILINE_CPP_IS_BRIEF = NO
168 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
169 # member inherits the documentation from any documented member that it
174 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
175 # a new page for each member. If set to NO, the documentation of a member will
176 # be part of the file/class/namespace that contains it.
178 SEPARATE_MEMBER_PAGES = NO
180 # The TAB_SIZE tag can be used to set the number of spaces in a tab.
181 # Doxygen uses this value to replace tabs by spaces in code fragments.
185 # This tag can be used to specify a number of aliases that acts
186 # as commands in the documentation. An alias has the form "name=value".
187 # For example adding "sideeffect=\par Side Effects:\n" will allow you to
188 # put the command \sideeffect (or @sideeffect) in the documentation, which
189 # will result in a user-defined paragraph with heading "Side Effects:".
190 # You can put \n's in the value part of an alias to insert newlines.
194 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
195 # sources only. Doxygen will then generate output that is more tailored for C.
196 # For instance, some of the names that are used will be different. The list
197 # of all members will be omitted, etc.
199 OPTIMIZE_OUTPUT_FOR_C = YES
201 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
202 # sources only. Doxygen will then generate output that is more tailored for
203 # Java. For instance, namespaces will be presented as packages, qualified
204 # scopes will look different, etc.
206 OPTIMIZE_OUTPUT_JAVA = NO
208 # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
209 # sources only. Doxygen will then generate output that is more tailored for
212 OPTIMIZE_FOR_FORTRAN = NO
214 # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
215 # sources. Doxygen will then generate output that is tailored for
218 OPTIMIZE_OUTPUT_VHDL = NO
220 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
221 # to include (a tag file for) the STL sources as input, then you should
222 # set this tag to YES in order to let doxygen match functions declarations and
223 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
224 # func(std::string) {}). This also make the inheritance and collaboration
225 # diagrams that involve STL classes more complete and accurate.
227 BUILTIN_STL_SUPPORT = NO
229 # If you use Microsoft's C++/CLI language, you should set this option to YES to
230 # enable parsing support.
234 # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
235 # Doxygen will parse them like normal C++ but will assume all classes use public
236 # instead of private inheritance when no explicit protection keyword is present.
240 # For Microsoft's IDL there are propget and propput attributes to indicate getter
241 # and setter methods for a property. Setting this option to YES (the default)
242 # will make doxygen to replace the get and set methods by a property in the
243 # documentation. This will only work if the methods are indeed getting or
244 # setting a simple type. If this is not the case, or you want to show the
245 # methods anyway, you should set this option to NO.
247 IDL_PROPERTY_SUPPORT = NO
249 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
250 # tag is set to YES, then doxygen will reuse the documentation of the first
251 # member in the group (if any) for the other members of the group. By default
252 # all members of a group must be documented explicitly.
254 DISTRIBUTE_GROUP_DOC = YES
256 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
257 # the same type (for instance a group of public functions) to be put as a
258 # subgroup of that type (e.g. under the Public Functions section). Set it to
259 # NO to prevent subgrouping. Alternatively, this can be done per class using
260 # the \nosubgrouping command.
264 # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
265 # is documented as struct, union, or enum with the name of the typedef. So
266 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct
267 # with name TypeT. When disabled the typedef will appear as a member of a file,
268 # namespace, or class. And the struct will be named TypeS. This can typically
269 # be useful for C code in case the coding convention dictates that all compound
270 # types are typedef'ed and only the typedef is referenced, never the tag name.
272 TYPEDEF_HIDES_STRUCT = YES
274 #---------------------------------------------------------------------------
275 # Build related configuration options
276 #---------------------------------------------------------------------------
278 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
279 # documentation are documented, even if no documentation was available.
280 # Private class members and static file members will be hidden unless
281 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
285 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
286 # will be included in the documentation.
290 # If the EXTRACT_STATIC tag is set to YES all static members of a file
291 # will be included in the documentation.
295 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
296 # defined locally in source files will be included in the documentation.
297 # If set to NO only classes defined in header files are included.
299 EXTRACT_LOCAL_CLASSES = NO
301 # This flag is only useful for Objective-C code. When set to YES local
302 # methods, which are defined in the implementation section but not in
303 # the interface are included in the documentation.
304 # If set to NO (the default) only methods in the interface are included.
306 EXTRACT_LOCAL_METHODS = NO
308 # If this flag is set to YES, the members of anonymous namespaces will be
309 # extracted and appear in the documentation as a namespace called
310 # 'anonymous_namespace{file}', where file will be replaced with the base
311 # name of the file that contains the anonymous namespace. By default
312 # anonymous namespace are hidden.
314 EXTRACT_ANON_NSPACES = NO
316 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
317 # undocumented members of documented classes, files or namespaces.
318 # If set to NO (the default) these members will be included in the
319 # various overviews, but no documentation section is generated.
320 # This option has no effect if EXTRACT_ALL is enabled.
322 HIDE_UNDOC_MEMBERS = YES
324 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
325 # undocumented classes that are normally visible in the class hierarchy.
326 # If set to NO (the default) these classes will be included in the various
327 # overviews. This option has no effect if EXTRACT_ALL is enabled.
329 HIDE_UNDOC_CLASSES = YES
331 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
332 # friend (class|struct|union) declarations.
333 # If set to NO (the default) these declarations will be included in the
336 HIDE_FRIEND_COMPOUNDS = YES
338 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
339 # documentation blocks found inside the body of a function.
340 # If set to NO (the default) these blocks will be appended to the
341 # function's detailed documentation block.
343 HIDE_IN_BODY_DOCS = YES
345 # The INTERNAL_DOCS tag determines if documentation
346 # that is typed after a \internal command is included. If the tag is set
347 # to NO (the default) then the documentation will be excluded.
348 # Set it to YES to include the internal documentation.
352 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
353 # file names in lower-case letters. If set to YES upper-case letters are also
354 # allowed. This is useful if you have classes or files whose names only differ
355 # in case and if your file system supports case sensitive file names. Windows
356 # and Mac users are advised to set this option to NO.
358 CASE_SENSE_NAMES = NO
360 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
361 # will show members with their full class and namespace scopes in the
362 # documentation. If set to YES the scope will be hidden.
364 HIDE_SCOPE_NAMES = NO
366 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
367 # will put a list of the files that are included by a file in the documentation
370 SHOW_INCLUDE_FILES = NO
372 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
373 # is inserted in the documentation for inline members.
377 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
378 # will sort the (detailed) documentation of file and class members
379 # alphabetically by member name. If set to NO the members will appear in
382 SORT_MEMBER_DOCS = YES
384 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
385 # brief documentation of file, namespace and class members alphabetically
386 # by member name. If set to NO (the default) the members will appear in
389 SORT_BRIEF_DOCS = YES
391 # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
392 # hierarchy of group names into alphabetical order. If set to NO (the default)
393 # the group names will appear in their defined order.
395 SORT_GROUP_NAMES = YES
397 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
398 # sorted by fully-qualified names, including namespaces. If set to
399 # NO (the default), the class list will be sorted only by class name,
400 # not including the namespace part.
401 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
402 # Note: This option applies only to the class list, not to the
405 SORT_BY_SCOPE_NAME = NO
407 # The GENERATE_TODOLIST tag can be used to enable (YES) or
408 # disable (NO) the todo list. This list is created by putting \todo
409 # commands in the documentation.
411 GENERATE_TODOLIST = YES
413 # The GENERATE_TESTLIST tag can be used to enable (YES) or
414 # disable (NO) the test list. This list is created by putting \test
415 # commands in the documentation.
417 GENERATE_TESTLIST = YES
419 # The GENERATE_BUGLIST tag can be used to enable (YES) or
420 # disable (NO) the bug list. This list is created by putting \bug
421 # commands in the documentation.
423 GENERATE_BUGLIST = YES
425 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
426 # disable (NO) the deprecated list. This list is created by putting
427 # \deprecated commands in the documentation.
429 GENERATE_DEPRECATEDLIST= YES
431 # The ENABLED_SECTIONS tag can be used to enable conditional
432 # documentation sections, marked by \if sectionname ... \endif.
434 ENABLED_SECTIONS = ONLY_HTML
436 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines
437 # the initial value of a variable or define consists of for it to appear in
438 # the documentation. If the initializer consists of more lines than specified
439 # here it will be hidden. Use a value of 0 to hide initializers completely.
440 # The appearance of the initializer of individual variables and defines in the
441 # documentation can be controlled using \showinitializer or \hideinitializer
442 # command in the documentation regardless of this setting.
444 MAX_INITIALIZER_LINES = 30
446 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated
447 # at the bottom of the documentation of classes and structs. If set to YES the
448 # list will mention the files that were used to generate the documentation.
452 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
453 # This will remove the Files entry from the Quick Index and from the
454 # Folder Tree View (if specified). The default is YES.
458 # Set the SHOW_NAMESPACES tag to NO to disable the generation of the
459 # Namespaces page. This will remove the Namespaces entry from the Quick Index
460 # and from the Folder Tree View (if specified). The default is YES.
462 SHOW_NAMESPACES = YES
464 # The FILE_VERSION_FILTER tag can be used to specify a program or script that
465 # doxygen should invoke to get the current version for each file (typically from
466 # the version control system). Doxygen will invoke the program by executing (via
467 # popen()) the command <command> <input-file>, where <command> is the value of
468 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
469 # provided by doxygen. Whatever the program writes to standard output
470 # is used as the file version. See the manual for examples.
472 FILE_VERSION_FILTER =
474 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by
475 # doxygen. The layout file controls the global structure of the generated output files
476 # in an output format independent way. The create the layout file that represents
477 # doxygen's defaults, run doxygen with the -l option. You can optionally specify a
478 # file name after the option, if omitted DoxygenLayout.xml will be used as the name
479 # of the layout file.
483 #---------------------------------------------------------------------------
484 # configuration options related to warning and progress messages
485 #---------------------------------------------------------------------------
487 # The QUIET tag can be used to turn on/off the messages that are generated
488 # by doxygen. Possible values are YES and NO. If left blank NO is used.
492 # The WARNINGS tag can be used to turn on/off the warning messages that are
493 # generated by doxygen. Possible values are YES and NO. If left blank
498 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
499 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will
500 # automatically be disabled.
502 WARN_IF_UNDOCUMENTED = YES
504 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
505 # potential errors in the documentation, such as not documenting some
506 # parameters in a documented function, or documenting parameters that
507 # don't exist or using markup commands wrongly.
509 WARN_IF_DOC_ERROR = YES
511 # This WARN_NO_PARAMDOC option can be abled to get warnings for
512 # functions that are documented, but have no documentation for their parameters
513 # or return value. If set to NO (the default) doxygen will only warn about
514 # wrong or incomplete parameter documentation, but not about the absence of
517 WARN_NO_PARAMDOC = YES
519 # The WARN_FORMAT tag determines the format of the warning messages that
520 # doxygen can produce. The string should contain the $file, $line, and $text
521 # tags, which will be replaced by the file and line number from which the
522 # warning originated and the warning text. Optionally the format may contain
523 # $version, which will be replaced by the version of the file (if it could
524 # be obtained via FILE_VERSION_FILTER)
526 WARN_FORMAT =
"$file:$line: $text"
528 # The WARN_LOGFILE tag can be used to specify a file to which warning
529 # and error messages should be written. If left blank the output is written
534 #---------------------------------------------------------------------------
535 # configuration options related to the input files
536 #---------------------------------------------------------------------------
538 # The INPUT tag can be used to specify the files and/or directories that contain
539 # documented source files. You may enter file names like "myfile.cpp" or
540 # directories like "/usr/src/myproject". Separate the files or directories
543 INPUT = ../include/ ../src/
545 # This tag can be used to specify the character encoding of the source files
546 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
547 # also the default input encoding. Doxygen uses libiconv (or the iconv built
548 # into libc) for the transcoding. See http:
549 # the list of possible encodings.
551 INPUT_ENCODING = UTF-8
553 # If the value of the INPUT tag contains directories, you can use the
554 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
555 # and *.h) to filter out the source-files in the directories. If left
556 # blank the following patterns are tested:
557 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
558 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
562 # The RECURSIVE tag can be used to turn specify whether or not subdirectories
563 # should be searched for input files as well. Possible values are YES and NO.
564 # If left blank NO is used.
568 # The EXCLUDE tag can be used to specify files and/or directories that should
569 # excluded from the INPUT source files. This way you can easily exclude a
570 # subdirectory from a directory tree whose root is specified with the INPUT tag.
574 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or
575 # directories that are symbolic links (a Unix filesystem feature) are excluded
578 EXCLUDE_SYMLINKS = YES
580 # If the value of the INPUT tag contains directories, you can use the
581 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
582 # certain files from those directories. Note that the wildcards are matched
583 # against the file with absolute path, so to exclude all test directories
584 # for example use the pattern */test