~ubuntu-branches/ubuntu/saucy/rivet/saucy-proposed

« back to all changes in this revision

Viewing changes to Doxyfile.in

  • Committer: Package Import Robot
  • Author(s): Lifeng Sun
  • Date: 2013-05-07 09:24:27 UTC
  • mfrom: (1.2.1) (2.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130507092427-rpfijl4mn3y87ek7
Tags: 1.8.3-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Doxyfile 1.7.1
 
1
# Doxyfile 1.8.1.2
2
2
 
3
3
# This file describes the settings to be used by the documentation system
4
 
# doxygen (www.doxygen.org) for a project
 
4
# doxygen (www.doxygen.org) for a project.
5
5
#
6
 
# All text after a hash (#) is considered a comment and will be ignored
 
6
# All text after a hash (#) is considered a comment and will be ignored.
7
7
# The format is:
8
8
#       TAG = value [value, ...]
9
9
# For lists items can also be appended using:
10
10
#       TAG += value [value, ...]
11
 
# Values that contain spaces should be placed between quotes (" ")
 
11
# Values that contain spaces should be placed between quotes (" ").
12
12
 
13
13
#---------------------------------------------------------------------------
14
14
# Project related configuration options
22
22
 
23
23
DOXYFILE_ENCODING      = UTF-8
24
24
 
25
 
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
26
 
# by quotes) that should identify the project.
 
25
# The PROJECT_NAME tag is a single word (or sequence of words) that should
 
26
# identify the project. Note that if you do not use Doxywizard you need
 
27
# to put quotes around the project name if it contains spaces.
27
28
 
28
29
PROJECT_NAME           = "Rivet"
29
30
 
33
34
 
34
35
PROJECT_NUMBER         = @PACKAGE_VERSION@
35
36
 
 
37
# Using the PROJECT_BRIEF tag one can provide an optional one line description
 
38
# for a project that appears at the top of each page and should give viewer
 
39
# a quick idea about the purpose of the project. Keep the description short.
 
40
 
 
41
PROJECT_BRIEF          =
 
42
 
 
43
# With the PROJECT_LOGO tag one can specify an logo or icon that is
 
44
# included in the documentation. The maximum height of the logo should not
 
45
# exceed 55 pixels and the maximum width should not exceed 200 pixels.
 
46
# Doxygen will copy the logo to the output directory.
 
47
 
 
48
PROJECT_LOGO           =
 
49
 
36
50
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
37
51
# base path where the generated documentation will be put.
38
52
# If a relative path is entered, it will be relative to the location
57
71
# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German,
58
72
# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English
59
73
# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian,
60
 
# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak,
 
74
# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak,
61
75
# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.
62
76
 
63
77
OUTPUT_LANGUAGE        = English
126
140
STRIP_FROM_INC_PATH    =
127
141
 
128
142
# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
129
 
# (but less readable) file names. This can be useful is your file systems
 
143
# (but less readable) file names. This can be useful if your file system
130
144
# doesn't support long names like on DOS, Mac, or CD-ROM.
131
145
 
132
146
SHORT_NAMES            = NO
181
195
 
182
196
ALIASES                =
183
197
 
 
198
# This tag can be used to specify a number of word-keyword mappings (TCL only).
 
199
# A mapping has the form "name=value". For example adding
 
200
# "class=itcl::class" will allow you to use the command class in the
 
201
# itcl::class meaning.
 
202
 
 
203
TCL_SUBST              =
 
204
 
184
205
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
185
206
# sources only. Doxygen will then generate output that is more tailored for C.
186
207
# For instance, some of the names that are used will be different. The list
219
240
 
220
241
EXTENSION_MAPPING      =
221
242
 
 
243
# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all
 
244
# comments according to the Markdown format, which allows for more readable
 
245
# documentation. See http://daringfireball.net/projects/markdown/ for details.
 
246
# The output of markdown processing is further processed by doxygen, so you
 
247
# can mix doxygen, HTML, and XML commands with Markdown formatting.
 
248
# Disable only in case of backward compatibilities issues.
 
249
 
 
250
MARKDOWN_SUPPORT       = YES
 
251
 
222
252
# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
223
253
# to include (a tag file for) the STL sources as input, then you should
224
254
# set this tag to YES in order to let doxygen match functions declarations and
225
255
# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
226
 
# func(std::string) {}). This also make the inheritance and collaboration
 
256
# func(std::string) {}). This also makes the inheritance and collaboration
227
257
# diagrams that involve STL classes more complete and accurate.
228
258
 
229
259
BUILTIN_STL_SUPPORT    = YES
241
271
 
242
272
# For Microsoft's IDL there are propget and propput attributes to indicate getter
243
273
# and setter methods for a property. Setting this option to YES (the default)
244
 
# will make doxygen to replace the get and set methods by a property in the
 
274
# will make doxygen replace the get and set methods by a property in the
245
275
# documentation. This will only work if the methods are indeed getting or
246
276
# setting a simple type. If this is not the case, or you want to show the
247
277
# methods anyway, you should set this option to NO.
263
293
 
264
294
SUBGROUPING            = YES
265
295
 
 
296
# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and
 
297
# unions are shown inside the group in which they are included (e.g. using
 
298
# @ingroup) instead of on a separate page (for HTML and Man pages) or
 
299
# section (for LaTeX and RTF).
 
300
 
 
301
INLINE_GROUPED_CLASSES = NO
 
302
 
 
303
# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and
 
304
# unions with only public data fields will be shown inline in the documentation
 
305
# of the scope in which they are defined (i.e. file, namespace, or group
 
306
# documentation), provided this scope is documented. If set to NO (the default),
 
307
# structs, classes, and unions are shown on a separate page (for HTML and Man
 
308
# pages) or section (for LaTeX and RTF).
 
309
 
 
310
INLINE_SIMPLE_STRUCTS  = NO
 
311
 
266
312
# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
267
313
# is documented as struct, union, or enum with the name of the typedef. So
268
314
# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
279
325
# For small to medium size projects (<1000 input files) the default value is
280
326
# probably good enough. For larger projects a too small cache size can cause
281
327
# doxygen to be busy swapping symbols to and from disk most of the time
282
 
# causing a significant performance penality.
 
328
# causing a significant performance penalty.
283
329
# If the system has enough physical memory increasing the cache will improve the
284
330
# performance by keeping more symbols in memory. Note that the value works on
285
 
# a logarithmic scale so increasing the size by one will rougly double the
 
331
# a logarithmic scale so increasing the size by one will roughly double the
286
332
# memory usage. The cache size is given by this formula:
287
333
# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
288
 
# corresponding to a cache size of 2^16 = 65536 symbols
 
334
# corresponding to a cache size of 2^16 = 65536 symbols.
289
335
 
290
336
SYMBOL_CACHE_SIZE      = 0
291
337
 
 
338
# Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be
 
339
# set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given
 
340
# their name and scope. Since this can be an expensive process and often the
 
341
# same symbol appear multiple times in the code, doxygen keeps a cache of
 
342
# pre-resolved symbols. If the cache is too small doxygen will become slower.
 
343
# If the cache is too large, memory is wasted. The cache size is given by this
 
344
# formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0,
 
345
# corresponding to a cache size of 2^16 = 65536 symbols.
 
346
 
 
347
LOOKUP_CACHE_SIZE      = 0
 
348
 
292
349
#---------------------------------------------------------------------------
293
350
# Build related configuration options
294
351
#---------------------------------------------------------------------------
305
362
 
306
363
EXTRACT_PRIVATE        = NO
307
364
 
 
365
# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal scope will be included in the documentation.
 
366
 
 
367
EXTRACT_PACKAGE        = NO
 
368
 
308
369
# If the EXTRACT_STATIC tag is set to YES all static members of a file
309
370
# will be included in the documentation.
310
371
 
327
388
# extracted and appear in the documentation as a namespace called
328
389
# 'anonymous_namespace{file}', where file will be replaced with the base
329
390
# name of the file that contains the anonymous namespace. By default
330
 
# anonymous namespace are hidden.
 
391
# anonymous namespaces are hidden.
331
392
 
332
393
EXTRACT_ANON_NSPACES   = NO
333
394
 
438
499
 
439
500
SORT_BY_SCOPE_NAME     = YES
440
501
 
 
502
# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to
 
503
# do proper type resolution of all parameters of a function it will reject a
 
504
# match between the prototype and the implementation of a member function even
 
505
# if there is only one candidate or it is obvious which candidate to choose
 
506
# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen
 
507
# will still accept a match between prototype and implementation in such cases.
 
508
 
 
509
STRICT_PROTO_MATCHING  = NO
 
510
 
441
511
# The GENERATE_TODOLIST tag can be used to enable (YES) or
442
512
# disable (NO) the todo list. This list is created by putting \todo
443
513
# commands in the documentation.
468
538
ENABLED_SECTIONS       =
469
539
 
470
540
# The MAX_INITIALIZER_LINES tag determines the maximum number of lines
471
 
# the initial value of a variable or define consists of for it to appear in
 
541
# the initial value of a variable or macro consists of for it to appear in
472
542
# the documentation. If the initializer consists of more lines than specified
473
543
# here it will be hidden. Use a value of 0 to hide initializers completely.
474
 
# The appearance of the initializer of individual variables and defines in the
 
544
# The appearance of the initializer of individual variables and macros in the
475
545
# documentation can be controlled using \showinitializer or \hideinitializer
476
546
# command in the documentation regardless of this setting.
477
547
 
483
553
 
484
554
SHOW_USED_FILES        = YES
485
555
 
486
 
# If the sources in your project are distributed over multiple directories
487
 
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
488
 
# in the documentation. The default is NO.
489
 
 
490
 
SHOW_DIRECTORIES       = YES
491
 
 
492
556
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
493
557
# This will remove the Files entry from the Quick Index and from the
494
558
# Folder Tree View (if specified). The default is YES.
514
578
 
515
579
# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
516
580
# by doxygen. The layout file controls the global structure of the generated
517
 
# output files in an output format independent way. The create the layout file
 
581
# output files in an output format independent way. To create the layout file
518
582
# that represents doxygen's defaults, run doxygen with the -l option.
519
583
# You can optionally specify a file name after the option, if omitted
520
584
# DoxygenLayout.xml will be used as the name of the layout file.
521
585
 
522
586
LAYOUT_FILE            =
523
587
 
 
588
# The CITE_BIB_FILES tag can be used to specify one or more bib files
 
589
# containing the references data. This must be a list of .bib files. The
 
590
# .bib extension is automatically appended if omitted. Using this command
 
591
# requires the bibtex tool to be installed. See also
 
592
# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style
 
593
# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this
 
594
# feature you need bibtex and perl available in the search path.
 
595
 
 
596
CITE_BIB_FILES         =
 
597
 
524
598
#---------------------------------------------------------------------------
525
599
# configuration options related to warning and progress messages
526
600
#---------------------------------------------------------------------------
549
623
 
550
624
WARN_IF_DOC_ERROR      = YES
551
625
 
552
 
# This WARN_NO_PARAMDOC option can be abled to get warnings for
 
626
# The WARN_NO_PARAMDOC option can be enabled to get warnings for
553
627
# functions that are documented, but have no documentation for their parameters
554
628
# or return value. If set to NO (the default) doxygen will only warn about
555
629
# wrong or incomplete parameter documentation, but not about the absence of
597
671
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
598
672
# and *.h) to filter out the source-files in the directories. If left
599
673
# blank the following patterns are tested:
600
 
# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
601
 
# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
 
674
# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh
 
675
# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py
 
676
# *.f90 *.f *.for *.vhd *.vhdl
602
677
 
603
678
FILE_PATTERNS          = *.cc \
604
679
                         *.hh \
611
686
 
612
687
RECURSIVE              = YES
613
688
 
614
 
# The EXCLUDE tag can be used to specify files and/or directories that should
 
689
# The EXCLUDE tag can be used to specify files and/or directories that should be
615
690
# excluded from the INPUT source files. This way you can easily exclude a
616
691
# subdirectory from a directory tree whose root is specified with the INPUT tag.
 
692
# Note that relative paths are relative to the directory from which doxygen is
 
693
# run.
617
694
 
618
695
EXCLUDE                = debian
619
696
 
620
 
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
621
 
# directories that are symbolic links (a Unix filesystem feature) are excluded
 
697
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
 
698
# directories that are symbolic links (a Unix file system feature) are excluded
622
699
# from the input.
623
700
 
624
701
EXCLUDE_SYMLINKS       = NO
682
759
# filter if there is a match.
683
760
# The filters are a list of the form:
684
761
# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
685
 
# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
686
 
# is applied to all files.
 
762
# info on how filters are used. If FILTER_PATTERNS is empty or if
 
763
# non of the patterns match the file name, INPUT_FILTER is applied.
687
764
 
688
765
FILTER_PATTERNS        =
689
766
 
693
770
 
694
771
FILTER_SOURCE_FILES    = NO
695
772
 
 
773
# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
 
774
# pattern. A pattern will override the setting for FILTER_PATTERN (if any)
 
775
# and it is also possible to disable source filtering for a specific pattern
 
776
# using *.ext= (so without naming a filter). This option only has effect when
 
777
# FILTER_SOURCE_FILES is enabled.
 
778
 
 
779
FILTER_SOURCE_PATTERNS =
 
780
 
696
781
#---------------------------------------------------------------------------
697
782
# configuration options related to source browsing
698
783
#---------------------------------------------------------------------------
711
796
 
712
797
# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
713
798
# doxygen to hide any special comment blocks from generated source code
714
 
# fragments. Normal C and C++ comments will always remain visible.
 
799
# fragments. Normal C, C++ and Fortran comments will always remain visible.
715
800
 
716
801
STRIP_CODE_COMMENTS    = YES
717
802
 
795
880
 
796
881
# The HTML_HEADER tag can be used to specify a personal HTML header for
797
882
# each generated HTML page. If it is left blank doxygen will generate a
798
 
# standard header.
 
883
# standard header. Note that when using a custom header you are responsible
 
884
#  for the proper inclusion of any scripts and style sheets that doxygen
 
885
# needs, which is dependent on the configuration options used.
 
886
# It is advised to generate a default header using "doxygen -w html
 
887
# header.html footer.html stylesheet.css YourConfigFile" and then modify
 
888
# that header. Note that the header is subject to change so you typically
 
889
# have to redo this when upgrading to a newer version of doxygen or when
 
890
# changing the value of configuration settings such as GENERATE_TREEVIEW!
799
891
 
800
892
HTML_HEADER            =
801
893
 
810
902
# fine-tune the look of the HTML output. If the tag is left blank doxygen
811
903
# will generate a default style sheet. Note that doxygen will try to copy
812
904
# the style sheet file to the HTML output directory, so don't put your own
813
 
# stylesheet in the HTML output directory as well, or it will be erased!
 
905
# style sheet in the HTML output directory as well, or it will be erased!
814
906
 
815
907
HTML_STYLESHEET        =
816
908
 
 
909
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
 
910
# other source files which should be copied to the HTML output directory. Note
 
911
# that these files will be copied to the base HTML output directory. Use the
 
912
# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
 
913
# files. In the HTML_STYLESHEET file, use the file name only. Also note that
 
914
# the files will be copied as-is; there are no commands or markers available.
 
915
 
 
916
HTML_EXTRA_FILES       =
 
917
 
817
918
# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output.
818
 
# Doxygen will adjust the colors in the stylesheet and background images
 
919
# Doxygen will adjust the colors in the style sheet and background images
819
920
# according to this color. Hue is specified as an angle on a colorwheel,
820
921
# see http://en.wikipedia.org/wiki/Hue for more information.
821
922
# For instance the value 0 represents red, 60 is yellow, 120 is green,
845
946
 
846
947
HTML_TIMESTAMP         = YES
847
948
 
848
 
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
849
 
# files or namespaces will be aligned in HTML using tables. If set to
850
 
# NO a bullet list will be used.
851
 
 
852
 
HTML_ALIGN_MEMBERS     = YES
853
 
 
854
949
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
855
950
# documentation will contain sections that can be hidden and shown after the
856
 
# page has loaded. For this to work a browser that supports
857
 
# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
858
 
# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
 
951
# page has loaded.
859
952
 
860
953
HTML_DYNAMIC_SECTIONS  = NO
861
954
 
 
955
# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of
 
956
# entries shown in the various tree structured indices initially; the user
 
957
# can expand and collapse entries dynamically later on. Doxygen will expand
 
958
# the tree to such a level that at most the specified number of entries are
 
959
# visible (unless a fully collapsed tree already exceeds this amount).
 
960
# So setting the number of entries 1 will produce a full collapsed tree by
 
961
# default. 0 is a special value representing an infinite number of entries
 
962
# and will result in a full expanded tree by default.
 
963
 
 
964
HTML_INDEX_NUM_ENTRIES = 100
 
965
 
862
966
# If the GENERATE_DOCSET tag is set to YES, additional index files
863
967
# will be generated that can be used as input for Apple's Xcode 3
864
968
# integrated development environment, introduced with OSX 10.5 (Leopard).
1010
1114
 
1011
1115
ECLIPSE_DOC_ID         = org.doxygen.Project
1012
1116
 
1013
 
# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
1014
 
# top of each HTML page. The value NO (the default) enables the index and
1015
 
# the value YES disables it.
 
1117
# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs)
 
1118
# at top of each HTML page. The value NO (the default) enables the index and
 
1119
# the value YES disables it. Since the tabs have the same information as the
 
1120
# navigation tree you can set this option to NO if you already set
 
1121
# GENERATE_TREEVIEW to YES.
1016
1122
 
1017
1123
DISABLE_INDEX          = NO
1018
1124
 
1019
 
# This tag can be used to set the number of enum values (range [1..20])
1020
 
# that doxygen will group on one line in the generated HTML documentation.
1021
 
 
1022
 
ENUM_VALUES_PER_LINE   = 4
1023
 
 
1024
1125
# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
1025
1126
# structure should be generated to display hierarchical information.
1026
1127
# If the tag value is set to YES, a side panel will be generated
1028
1129
# is generated for HTML Help). For this to work a browser that supports
1029
1130
# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser).
1030
1131
# Windows users are probably better off using the HTML help feature.
 
1132
# Since the tree basically has the same information as the tab index you
 
1133
# could consider to set DISABLE_INDEX to NO when enabling this option.
1031
1134
 
1032
1135
GENERATE_TREEVIEW      = NO
1033
1136
 
1034
 
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
1035
 
# and Class Hierarchy pages using a tree view instead of an ordered list.
 
1137
# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values
 
1138
# (range [0,1..20]) that doxygen will group on one line in the generated HTML
 
1139
# documentation. Note that a value of 0 will completely suppress the enum
 
1140
# values from appearing in the overview section.
1036
1141
 
1037
 
USE_INLINE_TREES       = NO
 
1142
ENUM_VALUES_PER_LINE   = 4
1038
1143
 
1039
1144
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
1040
1145
# used to set the initial width (in pixels) of the frame in which the tree
1063
1168
 
1064
1169
FORMULA_TRANSPARENT    = YES
1065
1170
 
 
1171
# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax
 
1172
# (see http://www.mathjax.org) which uses client side Javascript for the
 
1173
# rendering instead of using prerendered bitmaps. Use this if you do not
 
1174
# have LaTeX installed or if you want to formulas look prettier in the HTML
 
1175
# output. When enabled you may also need to install MathJax separately and
 
1176
# configure the path to it using the MATHJAX_RELPATH option.
 
1177
 
 
1178
USE_MATHJAX            = NO
 
1179
 
 
1180
# When MathJax is enabled you need to specify the location relative to the
 
1181
# HTML output directory using the MATHJAX_RELPATH option. The destination
 
1182
# directory should contain the MathJax.js script. For instance, if the mathjax
 
1183
# directory is located at the same level as the HTML output directory, then
 
1184
# MATHJAX_RELPATH should be ../mathjax. The default value points to
 
1185
# the MathJax Content Delivery Network so you can quickly see the result without
 
1186
# installing MathJax.
 
1187
# However, it is strongly recommended to install a local
 
1188
# copy of MathJax from http://www.mathjax.org before deployment.
 
1189
 
 
1190
MATHJAX_RELPATH        = http://cdn.mathjax.org/mathjax/latest
 
1191
 
 
1192
# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension
 
1193
# names that should be enabled during MathJax rendering.
 
1194
 
 
1195
MATHJAX_EXTENSIONS     =
 
1196
 
1066
1197
# When the SEARCHENGINE tag is enabled doxygen will generate a search box
1067
1198
# for the HTML output. The underlying search engine uses javascript
1068
1199
# and DHTML and should work on any modern browser. Note that when using
1078
1209
# using Javascript. Doxygen will generate the search PHP script and index
1079
1210
# file to put on the web server. The advantage of the server
1080
1211
# based approach is that it scales better to large projects and allows
1081
 
# full text search. The disadvances is that it is more difficult to setup
 
1212
# full text search. The disadvantages are that it is more difficult to setup
1082
1213
# and does not have live searching capabilities.
1083
1214
 
1084
1215
SERVER_BASED_SEARCH    = NO
1119
1250
COMPACT_LATEX          = NO
1120
1251
 
1121
1252
# The PAPER_TYPE tag can be used to set the paper type that is used
1122
 
# by the printer. Possible values are: a4, a4wide, letter, legal and
 
1253
# by the printer. Possible values are: a4, letter, legal and
1123
1254
# executive. If left blank a4wide will be used.
1124
1255
 
1125
1256
PAPER_TYPE             = a4wide
1137
1268
 
1138
1269
LATEX_HEADER           =
1139
1270
 
 
1271
# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for
 
1272
# the generated latex document. The footer should contain everything after
 
1273
# the last chapter. If it is left blank doxygen will generate a
 
1274
# standard footer. Notice: only use this tag if you know what you are doing!
 
1275
 
 
1276
LATEX_FOOTER           =
 
1277
 
1140
1278
# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
1141
1279
# is prepared for conversion to pdf (using ps2pdf). The pdf file will
1142
1280
# contain links (just like the HTML output) instead of page references
1170
1308
 
1171
1309
LATEX_SOURCE_CODE      = NO
1172
1310
 
 
1311
# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
 
1312
# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See
 
1313
# http://en.wikipedia.org/wiki/BibTeX for more info.
 
1314
 
 
1315
LATEX_BIB_STYLE        = plain
 
1316
 
1173
1317
#---------------------------------------------------------------------------
1174
1318
# configuration options related to the RTF output
1175
1319
#---------------------------------------------------------------------------
1201
1345
 
1202
1346
RTF_HYPERLINKS         = NO
1203
1347
 
1204
 
# Load stylesheet definitions from file. Syntax is similar to doxygen's
 
1348
# Load style sheet definitions from file. Syntax is similar to doxygen's
1205
1349
# config file, i.e. a series of assignments. You only have to provide
1206
1350
# replacements, missing definitions are set to their default value.
1207
1351
 
1346
1490
EXPAND_ONLY_PREDEF     = NO
1347
1491
 
1348
1492
# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
1349
 
# in the INCLUDE_PATH (see below) will be search if a #include is found.
 
1493
# pointed to by INCLUDE_PATH will be searched when a #include is found.
1350
1494
 
1351
1495
SEARCH_INCLUDES        = YES
1352
1496
 
1376
1520
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
1377
1521
# this tag can be used to specify a list of macro names that should be expanded.
1378
1522
# The macro definition that is found in the sources will be used.
1379
 
# Use the PREDEFINED tag if you want to use a different macro definition.
 
1523
# Use the PREDEFINED tag if you want to use a different macro definition that
 
1524
# overrules the definition found in the source code.
1380
1525
 
1381
1526
EXPAND_AS_DEFINED      =
1382
1527
 
1383
1528
# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
1384
 
# doxygen's preprocessor will remove all function-like macros that are alone
1385
 
# on a line, have an all uppercase name, and do not end with a semicolon. Such
1386
 
# function macros are typically used for boiler-plate code, and will confuse
1387
 
# the parser if not removed.
 
1529
# doxygen's preprocessor will remove all references to function-like macros
 
1530
# that are alone on a line, have an all uppercase name, and do not end with a
 
1531
# semicolon, because these will confuse the parser if not removed.
1388
1532
 
1389
1533
SKIP_FUNCTION_MACROS   = YES
1390
1534
 
1392
1536
# Configuration::additions related to external references
1393
1537
#---------------------------------------------------------------------------
1394
1538
 
1395
 
# The TAGFILES option can be used to specify one or more tagfiles.
1396
 
# Optionally an initial location of the external documentation
1397
 
# can be added for each tagfile. The format of a tag file without
1398
 
# this location is as follows:
 
1539
# The TAGFILES option can be used to specify one or more tagfiles. For each
 
1540
# tag file the location of the external documentation should be added. The
 
1541
# format of a tag file without this location is as follows:
1399
1542
#
1400
1543
# TAGFILES = file1 file2 ...
1401
1544
# Adding location for the tag files is done as follows:
1402
1545
#
1403
1546
# TAGFILES = file1=loc1 "file2 = loc2" ...
1404
 
# where "loc1" and "loc2" can be relative or absolute paths or
1405
 
# URLs. If a location is present for each tag, the installdox tool
1406
 
# does not have to be run to correct the links.
1407
 
# Note that each tag file must have a unique name
1408
 
# (where the name does NOT include the path)
1409
 
# If a tag file is not located in the directory in which doxygen
1410
 
# is run, you must also specify the path to the tagfile here.
 
1547
# where "loc1" and "loc2" can be relative or absolute paths
 
1548
# or URLs. Note that each tag file must have a unique name (where the name does
 
1549
# NOT include the path). If a tag file is not located in the directory in which
 
1550
# doxygen is run, you must also specify the path to the tagfile here.
1411
1551
 
1412
1552
TAGFILES               =
1413
1553
 
1440
1580
# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
1441
1581
# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
1442
1582
# or super classes. Setting the tag to NO turns the diagrams off. Note that
1443
 
# this option is superseded by the HAVE_DOT option below. This is only a
1444
 
# fallback. It is recommended to install and use dot, since it yields more
1445
 
# powerful graphs.
 
1583
# this option also works with HAVE_DOT disabled, but it is recommended to
 
1584
# install and use dot, since it yields more powerful graphs.
1446
1585
 
1447
1586
CLASS_DIAGRAMS         = YES
1448
1587
 
1476
1615
 
1477
1616
DOT_NUM_THREADS        = 0
1478
1617
 
1479
 
# By default doxygen will write a font called FreeSans.ttf to the output
1480
 
# directory and reference it in all dot files that doxygen generates. This
1481
 
# font does not include all possible unicode characters however, so when you need
1482
 
# these (or just want a differently looking font) you can specify the font name
1483
 
# using DOT_FONTNAME. You need need to make sure dot is able to find the font,
1484
 
# which can be done by putting it in a standard location or by setting the
1485
 
# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory
1486
 
# containing the font.
 
1618
# By default doxygen will use the Helvetica font for all dot files that
 
1619
# doxygen generates. When you want a differently looking font you can specify
 
1620
# the font name using DOT_FONTNAME. You need to make sure dot is able to find
 
1621
# the font, which can be done by putting it in a standard location or by setting
 
1622
# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the
 
1623
# directory containing the font.
1487
1624
 
1488
1625
DOT_FONTNAME           = FreeSans.ttf
1489
1626
 
1492
1629
 
1493
1630
DOT_FONTSIZE           = 10
1494
1631
 
1495
 
# By default doxygen will tell dot to use the output directory to look for the
1496
 
# FreeSans.ttf font (which doxygen will put there itself). If you specify a
1497
 
# different font using DOT_FONTNAME you can set the path where dot
1498
 
# can find it using this tag.
 
1632
# By default doxygen will tell dot to use the Helvetica font.
 
1633
# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to
 
1634
# set the path where dot can find it.
1499
1635
 
1500
1636
DOT_FONTPATH           =
1501
1637
 
1502
1638
# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
1503
1639
# will generate a graph for each documented class showing the direct and
1504
1640
# indirect inheritance relations. Setting this tag to YES will force the
1505
 
# the CLASS_DIAGRAMS tag to NO.
 
1641
# CLASS_DIAGRAMS tag to NO.
1506
1642
 
1507
1643
CLASS_GRAPH            = YES
1508
1644
 
1524
1660
 
1525
1661
UML_LOOK               = NO
1526
1662
 
 
1663
# If the UML_LOOK tag is enabled, the fields and methods are shown inside
 
1664
# the class node. If there are many fields or methods and many nodes the
 
1665
# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS
 
1666
# threshold limits the number of items for each type to make the size more
 
1667
# managable. Set this to 0 for no limit. Note that the threshold may be
 
1668
# exceeded by 50% before the limit is enforced.
 
1669
 
 
1670
UML_LIMIT_NUM_FIELDS   = 10
 
1671
 
1527
1672
# If set to YES, the inheritance and collaboration graphs will show the
1528
1673
# relations between templates and their instances.
1529
1674
 
1560
1705
CALLER_GRAPH           = NO
1561
1706
 
1562
1707
# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
1563
 
# will graphical hierarchy of all classes instead of a textual one.
 
1708
# will generate a graphical hierarchy of all classes instead of a textual one.
1564
1709
 
1565
1710
GRAPHICAL_HIERARCHY    = YES
1566
1711
 
1567
 
# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
 
1712
# If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES
1568
1713
# then doxygen will show the dependencies a directory has on other directories
1569
1714
# in a graphical way. The dependency relations are determined by the #include
1570
1715
# relations between the files in the directories.
1572
1717
DIRECTORY_GRAPH        = YES
1573
1718
 
1574
1719
# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
1575
 
# generated by dot. Possible values are png, jpg, or gif
1576
 
# If left blank png will be used.
 
1720
# generated by dot. Possible values are svg, png, jpg, or gif.
 
1721
# If left blank png will be used. If you choose svg you need to set
 
1722
# HTML_FILE_EXTENSION to xhtml in order to make the SVG files
 
1723
# visible in IE 9+ (other browsers do not have this requirement).
1577
1724
 
1578
1725
DOT_IMAGE_FORMAT       = png
1579
1726
 
 
1727
# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
 
1728
# enable generation of interactive SVG images that allow zooming and panning.
 
1729
# Note that this requires a modern browser other than Internet Explorer.
 
1730
# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you
 
1731
# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files
 
1732
# visible. Older versions of IE do not have SVG support.
 
1733
 
 
1734
INTERACTIVE_SVG        = NO
 
1735
 
1580
1736
# The tag DOT_PATH can be used to specify the path where the dot tool can be
1581
1737
# found. If left blank, it is assumed the dot tool can be found in the path.
1582
1738
 
1588
1744
 
1589
1745
DOTFILE_DIRS           =
1590
1746
 
 
1747
# The MSCFILE_DIRS tag can be used to specify one or more directories that
 
1748
# contain msc files that are included in the documentation (see the
 
1749
# \mscfile command).
 
1750
 
 
1751
MSCFILE_DIRS           =
 
1752
 
1591
1753
# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
1592
1754
# nodes that will be shown in the graph. If the number of nodes in a graph
1593
1755
# becomes larger than this value, doxygen will truncate the graph, which is