rice 1.5.1 → 1.5.2

Sign up to get free protection for your applications and to get access to all the features.
data/Doxyfile CHANGED
@@ -1,1253 +1,2280 @@
1
- # Doxyfile 1.4.7
1
+ # Doxyfile 1.8.5
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 double hash (##) is considered a comment and is placed in
7
+ # front of the TAG it is preceding.
8
+ #
9
+ # All text after a single hash (#) is considered a comment and will be ignored.
7
10
  # The format is:
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 (" ")
11
+ # TAG = value [value, ...]
12
+ # For lists, items can also be appended using:
13
+ # TAG += value [value, ...]
14
+ # Values that contain spaces should be placed between quotes (\" \").
12
15
 
13
16
  #---------------------------------------------------------------------------
14
17
  # Project related configuration options
15
18
  #---------------------------------------------------------------------------
16
19
 
17
- # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
18
- # by quotes) that should identify the project.
20
+ # This tag specifies the encoding used for all characters in the config file
21
+ # that follow. The default is UTF-8 which is also the encoding used for all text
22
+ # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
23
+ # built into libc) for the transcoding. See http://www.gnu.org/software/libiconv
24
+ # for the list of possible encodings.
25
+ # The default value is: UTF-8.
26
+
27
+ DOXYFILE_ENCODING = UTF-8
28
+
29
+ # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
30
+ # double-quotes, unless you are using Doxywizard) that should identify the
31
+ # project for which the documentation is generated. This name is used in the
32
+ # title of most generated pages and in a few other places.
33
+ # The default value is: My Project.
34
+
35
+ PROJECT_NAME = "Rice"
36
+
37
+ # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
38
+ # could be handy for archiving the generated documentation or if some version
39
+ # control system is used.
19
40
 
20
- PROJECT_NAME = Rice
41
+ PROJECT_NUMBER = 1.5.2
21
42
 
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.
43
+ # Using the PROJECT_BRIEF tag one can provide an optional one line description
44
+ # for a project that appears at the top of each page and should give viewer a
45
+ # quick idea about the purpose of the project. Keep the description short.
25
46
 
26
- PROJECT_NUMBER = 1.5.1
47
+ PROJECT_BRIEF =
27
48
 
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.
49
+ # With the PROJECT_LOGO tag one can specify an logo or icon that is included in
50
+ # the documentation. The maximum height of the logo should not exceed 55 pixels
51
+ # and the maximum width should not exceed 200 pixels. Doxygen will copy the logo
52
+ # to the output directory.
53
+
54
+ PROJECT_LOGO =
55
+
56
+ # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
57
+ # into which the generated documentation will be written. If a relative path is
58
+ # entered, it will be relative to the location where doxygen was started. If
59
+ # left blank the current directory will be used.
32
60
 
33
61
  OUTPUT_DIRECTORY = doc
34
62
 
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.
63
+ # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
64
+ # directories (in 2 levels) under the output directory of each output format and
65
+ # will distribute the generated files over these directories. Enabling this
66
+ # option can be useful when feeding doxygen a huge amount of source files, where
67
+ # putting all generated files in the same directory would otherwise causes
68
+ # performance problems for the file system.
69
+ # The default value is: NO.
41
70
 
42
71
  CREATE_SUBDIRS = NO
43
72
 
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.
73
+ # The OUTPUT_LANGUAGE tag is used to specify the language in which all
74
+ # documentation generated by doxygen is written. Doxygen will use this
75
+ # information to generate all constant output in the proper language.
76
+ # Possible values are: Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-
77
+ # Traditional, Croatian, Czech, Danish, Dutch, English, Esperanto, Farsi,
78
+ # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en,
79
+ # Korean, Korean-en, Latvian, Norwegian, Macedonian, Persian, Polish,
80
+ # Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish,
81
+ # Turkish, Ukrainian and Vietnamese.
82
+ # The default value is: English.
53
83
 
54
84
  OUTPUT_LANGUAGE = English
55
85
 
56
- # This tag can be used to specify the encoding used in the generated output.
57
- # The encoding is not always determined by the language that is chosen,
58
- # but also whether or not the output is meant for Windows or non-Windows users.
59
- # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
60
- # forces the Windows encoding (this is the default for the Windows binary),
61
- # whereas setting the tag to NO uses a Unix-style encoding (the default for
62
- # all platforms other than Windows).
63
-
64
- USE_WINDOWS_ENCODING = NO
65
-
66
- # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
67
- # include brief member descriptions after the members that are listed in
68
- # the file and class documentation (similar to JavaDoc).
69
- # Set to NO to disable this.
86
+ # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
87
+ # descriptions after the members that are listed in the file and class
88
+ # documentation (similar to Javadoc). Set to NO to disable this.
89
+ # The default value is: YES.
70
90
 
71
91
  BRIEF_MEMBER_DESC = YES
72
92
 
73
- # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
74
- # the brief description of a member or function before the detailed description.
75
- # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
93
+ # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
94
+ # description of a member or function before the detailed description
95
+ #
96
+ # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
76
97
  # brief descriptions will be completely suppressed.
98
+ # The default value is: YES.
77
99
 
78
100
  REPEAT_BRIEF = YES
79
101
 
80
- # This tag implements a quasi-intelligent brief description abbreviator
81
- # that is used to form the text in various listings. Each string
82
- # in this list, if found as the leading text of the brief description, will be
83
- # stripped from the text and the result after processing the whole list, is
84
- # used as the annotated text. Otherwise, the brief description is used as-is.
85
- # If left blank, the following values are used ("$name" is automatically
86
- # replaced with the name of the entity): "The $name class" "The $name widget"
87
- # "The $name file" "is" "provides" "specifies" "contains"
88
- # "represents" "a" "an" "the"
102
+ # This tag implements a quasi-intelligent brief description abbreviator that is
103
+ # used to form the text in various listings. Each string in this list, if found
104
+ # as the leading text of the brief description, will be stripped from the text
105
+ # and the result, after processing the whole list, is used as the annotated
106
+ # text. Otherwise, the brief description is used as-is. If left blank, the
107
+ # following values are used ($name is automatically replaced with the name of
108
+ # the entity):The $name class, The $name widget, The $name file, is, provides,
109
+ # specifies, contains, represents, a, an and the.
89
110
 
90
- ABBREVIATE_BRIEF =
111
+ ABBREVIATE_BRIEF =
91
112
 
92
- # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
93
- # Doxygen will generate a detailed section even if there is only a brief
113
+ # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
114
+ # doxygen will generate a detailed section even if there is only a brief
94
115
  # description.
116
+ # The default value is: NO.
95
117
 
96
118
  ALWAYS_DETAILED_SEC = NO
97
119
 
98
- # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
99
- # inherited members of a class in the documentation of that class as if those
100
- # members were ordinary class members. Constructors, destructors and assignment
120
+ # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
121
+ # inherited members of a class in the documentation of that class as if those
122
+ # members were ordinary class members. Constructors, destructors and assignment
101
123
  # operators of the base classes will not be shown.
124
+ # The default value is: NO.
102
125
 
103
126
  INLINE_INHERITED_MEMB = NO
104
127
 
105
- # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
106
- # path before files name in the file list and in the header files. If set
107
- # to NO the shortest path that makes the file name unique will be used.
128
+ # If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path
129
+ # before files name in the file list and in the header files. If set to NO the
130
+ # shortest path that makes the file name unique will be used
131
+ # The default value is: YES.
108
132
 
109
133
  FULL_PATH_NAMES = NO
110
134
 
111
- # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
112
- # can be used to strip a user-defined part of the path. Stripping is
113
- # only done if one of the specified strings matches the left-hand part of
114
- # the path. The tag can be used to show relative paths in the file list.
115
- # If left blank the directory from which doxygen is run is used as the
116
- # path to strip.
135
+ # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
136
+ # Stripping is only done if one of the specified strings matches the left-hand
137
+ # part of the path. The tag can be used to show relative paths in the file list.
138
+ # If left blank the directory from which doxygen is run is used as the path to
139
+ # strip.
140
+ #
141
+ # Note that you can specify absolute paths here, but also relative paths, which
142
+ # will be relative from the directory where doxygen is started.
143
+ # This tag requires that the tag FULL_PATH_NAMES is set to YES.
117
144
 
118
- STRIP_FROM_PATH =
145
+ STRIP_FROM_PATH =
119
146
 
120
- # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
121
- # the path mentioned in the documentation of a class, which tells
122
- # the reader which header file to include in order to use a class.
123
- # If left blank only the name of the header file containing the class
124
- # definition is used. Otherwise one should specify the include paths that
125
- # are normally passed to the compiler using the -I flag.
147
+ # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
148
+ # path mentioned in the documentation of a class, which tells the reader which
149
+ # header file to include in order to use a class. If left blank only the name of
150
+ # the header file containing the class definition is used. Otherwise one should
151
+ # specify the list of include paths that are normally passed to the compiler
152
+ # using the -I flag.
126
153
 
127
- STRIP_FROM_INC_PATH =
154
+ STRIP_FROM_INC_PATH =
128
155
 
129
- # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
130
- # (but less readable) file names. This can be useful is your file systems
131
- # doesn't support long names like on DOS, Mac, or CD-ROM.
156
+ # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
157
+ # less readable) file names. This can be useful is your file systems doesn't
158
+ # support long names like on DOS, Mac, or CD-ROM.
159
+ # The default value is: NO.
132
160
 
133
161
  SHORT_NAMES = NO
134
162
 
135
- # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
136
- # will interpret the first line (until the first dot) of a JavaDoc-style
137
- # comment as the brief description. If set to NO, the JavaDoc
138
- # comments will behave just like the Qt-style comments (thus requiring an
139
- # explicit @brief command for a brief description.
163
+ # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
164
+ # first line (until the first dot) of a Javadoc-style comment as the brief
165
+ # description. If set to NO, the Javadoc-style will behave just like regular Qt-
166
+ # style comments (thus requiring an explicit @brief command for a brief
167
+ # description.)
168
+ # The default value is: NO.
140
169
 
141
170
  JAVADOC_AUTOBRIEF = NO
142
171
 
143
- # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
144
- # treat a multi-line C++ special comment block (i.e. a block of //! or ///
145
- # comments) as a brief description. This used to be the default behaviour.
146
- # The new default is to treat a multi-line C++ comment block as a detailed
147
- # description. Set this tag to YES if you prefer the old behaviour instead.
172
+ # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
173
+ # line (until the first dot) of a Qt-style comment as the brief description. If
174
+ # set to NO, the Qt-style will behave just like regular Qt-style comments (thus
175
+ # requiring an explicit \brief command for a brief description.)
176
+ # The default value is: NO.
148
177
 
149
- MULTILINE_CPP_IS_BRIEF = NO
178
+ QT_AUTOBRIEF = NO
150
179
 
151
- # If the DETAILS_AT_TOP tag is set to YES then Doxygen
152
- # will output the detailed description near the top, like JavaDoc.
153
- # If set to NO, the detailed description appears after the member
154
- # documentation.
180
+ # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
181
+ # multi-line C++ special comment block (i.e. a block of //! or /// comments) as
182
+ # a brief description. This used to be the default behavior. The new default is
183
+ # to treat a multi-line C++ comment block as a detailed description. Set this
184
+ # tag to YES if you prefer the old behavior instead.
185
+ #
186
+ # Note that setting this tag to YES also means that rational rose comments are
187
+ # not recognized any more.
188
+ # The default value is: NO.
155
189
 
156
- DETAILS_AT_TOP = NO
190
+ MULTILINE_CPP_IS_BRIEF = NO
157
191
 
158
- # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
159
- # member inherits the documentation from any documented member that it
160
- # re-implements.
192
+ # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
193
+ # documentation from any documented member that it re-implements.
194
+ # The default value is: YES.
161
195
 
162
196
  INHERIT_DOCS = YES
163
197
 
164
- # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
165
- # a new page for each member. If set to NO, the documentation of a member will
166
- # be part of the file/class/namespace that contains it.
198
+ # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a
199
+ # new page for each member. If set to NO, the documentation of a member will be
200
+ # part of the file/class/namespace that contains it.
201
+ # The default value is: NO.
167
202
 
168
203
  SEPARATE_MEMBER_PAGES = NO
169
204
 
170
- # The TAB_SIZE tag can be used to set the number of spaces in a tab.
171
- # Doxygen uses this value to replace tabs by spaces in code fragments.
205
+ # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
206
+ # uses this value to replace tabs by spaces in code fragments.
207
+ # Minimum value: 1, maximum value: 16, default value: 4.
208
+
209
+ TAB_SIZE = 4
172
210
 
173
- TAB_SIZE = 8
211
+ # This tag can be used to specify a number of aliases that act as commands in
212
+ # the documentation. An alias has the form:
213
+ # name=value
214
+ # For example adding
215
+ # "sideeffect=@par Side Effects:\n"
216
+ # will allow you to put the command \sideeffect (or @sideeffect) in the
217
+ # documentation, which will result in a user-defined paragraph with heading
218
+ # "Side Effects:". You can put \n's in the value part of an alias to insert
219
+ # newlines.
174
220
 
175
- # This tag can be used to specify a number of aliases that acts
176
- # as commands in the documentation. An alias has the form "name=value".
177
- # For example adding "sideeffect=\par Side Effects:\n" will allow you to
178
- # put the command \sideeffect (or @sideeffect) in the documentation, which
179
- # will result in a user-defined paragraph with heading "Side Effects:".
180
- # You can put \n's in the value part of an alias to insert newlines.
221
+ ALIASES =
181
222
 
182
- ALIASES =
223
+ # This tag can be used to specify a number of word-keyword mappings (TCL only).
224
+ # A mapping has the form "name=value". For example adding "class=itcl::class"
225
+ # will allow you to use the command class in the itcl::class meaning.
183
226
 
184
- # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
185
- # sources only. Doxygen will then generate output that is more tailored for C.
186
- # For instance, some of the names that are used will be different. The list
187
- # of all members will be omitted, etc.
227
+ TCL_SUBST =
228
+
229
+ # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
230
+ # only. Doxygen will then generate output that is more tailored for C. For
231
+ # instance, some of the names that are used will be different. The list of all
232
+ # members will be omitted, etc.
233
+ # The default value is: NO.
188
234
 
189
235
  OPTIMIZE_OUTPUT_FOR_C = NO
190
236
 
191
- # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
192
- # sources only. Doxygen will then generate output that is more tailored for Java.
193
- # For instance, namespaces will be presented as packages, qualified scopes
194
- # will look different, etc.
237
+ # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
238
+ # Python sources only. Doxygen will then generate output that is more tailored
239
+ # for that language. For instance, namespaces will be presented as packages,
240
+ # qualified scopes will look different, etc.
241
+ # The default value is: NO.
195
242
 
196
243
  OPTIMIZE_OUTPUT_JAVA = NO
197
244
 
198
- # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to
199
- # include (a tag file for) the STL sources as input, then you should
200
- # set this tag to YES in order to let doxygen match functions declarations and
201
- # definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
202
- # func(std::string) {}). This also make the inheritance and collaboration
245
+ # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
246
+ # sources. Doxygen will then generate output that is tailored for Fortran.
247
+ # The default value is: NO.
248
+
249
+ OPTIMIZE_FOR_FORTRAN = NO
250
+
251
+ # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
252
+ # sources. Doxygen will then generate output that is tailored for VHDL.
253
+ # The default value is: NO.
254
+
255
+ OPTIMIZE_OUTPUT_VHDL = NO
256
+
257
+ # Doxygen selects the parser to use depending on the extension of the files it
258
+ # parses. With this tag you can assign which parser to use for a given
259
+ # extension. Doxygen has a built-in mapping, but you can override or extend it
260
+ # using this tag. The format is ext=language, where ext is a file extension, and
261
+ # language is one of the parsers supported by doxygen: IDL, Java, Javascript,
262
+ # C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make
263
+ # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
264
+ # (default is Fortran), use: inc=Fortran f=C.
265
+ #
266
+ # Note For files without extension you can use no_extension as a placeholder.
267
+ #
268
+ # Note that for custom extensions you also need to set FILE_PATTERNS otherwise
269
+ # the files are not read by doxygen.
270
+
271
+ EXTENSION_MAPPING =
272
+
273
+ # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
274
+ # according to the Markdown format, which allows for more readable
275
+ # documentation. See http://daringfireball.net/projects/markdown/ for details.
276
+ # The output of markdown processing is further processed by doxygen, so you can
277
+ # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
278
+ # case of backward compatibilities issues.
279
+ # The default value is: YES.
280
+
281
+ MARKDOWN_SUPPORT = YES
282
+
283
+ # When enabled doxygen tries to link words that correspond to documented
284
+ # classes, or namespaces to their corresponding documentation. Such a link can
285
+ # be prevented in individual cases by by putting a % sign in front of the word
286
+ # or globally by setting AUTOLINK_SUPPORT to NO.
287
+ # The default value is: YES.
288
+
289
+ AUTOLINK_SUPPORT = YES
290
+
291
+ # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
292
+ # to include (a tag file for) the STL sources as input, then you should set this
293
+ # tag to YES in order to let doxygen match functions declarations and
294
+ # definitions whose arguments contain STL classes (e.g. func(std::string);
295
+ # versus func(std::string) {}). This also make the inheritance and collaboration
203
296
  # diagrams that involve STL classes more complete and accurate.
297
+ # The default value is: NO.
204
298
 
205
299
  BUILTIN_STL_SUPPORT = NO
206
300
 
207
- # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
208
- # tag is set to YES, then doxygen will reuse the documentation of the first
209
- # member in the group (if any) for the other members of the group. By default
301
+ # If you use Microsoft's C++/CLI language, you should set this option to YES to
302
+ # enable parsing support.
303
+ # The default value is: NO.
304
+
305
+ CPP_CLI_SUPPORT = NO
306
+
307
+ # Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
308
+ # http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen
309
+ # will parse them like normal C++ but will assume all classes use public instead
310
+ # of private inheritance when no explicit protection keyword is present.
311
+ # The default value is: NO.
312
+
313
+ SIP_SUPPORT = NO
314
+
315
+ # For Microsoft's IDL there are propget and propput attributes to indicate
316
+ # getter and setter methods for a property. Setting this option to YES will make
317
+ # doxygen to replace the get and set methods by a property in the documentation.
318
+ # This will only work if the methods are indeed getting or setting a simple
319
+ # type. If this is not the case, or you want to show the methods anyway, you
320
+ # should set this option to NO.
321
+ # The default value is: YES.
322
+
323
+ IDL_PROPERTY_SUPPORT = YES
324
+
325
+ # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
326
+ # tag is set to YES, then doxygen will reuse the documentation of the first
327
+ # member in the group (if any) for the other members of the group. By default
210
328
  # all members of a group must be documented explicitly.
329
+ # The default value is: NO.
211
330
 
212
331
  DISTRIBUTE_GROUP_DOC = NO
213
332
 
214
- # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
215
- # the same type (for instance a group of public functions) to be put as a
216
- # subgroup of that type (e.g. under the Public Functions section). Set it to
217
- # NO to prevent subgrouping. Alternatively, this can be done per class using
218
- # the \nosubgrouping command.
333
+ # Set the SUBGROUPING tag to YES to allow class member groups of the same type
334
+ # (for instance a group of public functions) to be put as a subgroup of that
335
+ # type (e.g. under the Public Functions section). Set it to NO to prevent
336
+ # subgrouping. Alternatively, this can be done per class using the
337
+ # \nosubgrouping command.
338
+ # The default value is: YES.
219
339
 
220
340
  SUBGROUPING = YES
221
341
 
342
+ # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
343
+ # are shown inside the group in which they are included (e.g. using \ingroup)
344
+ # instead of on a separate page (for HTML and Man pages) or section (for LaTeX
345
+ # and RTF).
346
+ #
347
+ # Note that this feature does not work in combination with
348
+ # SEPARATE_MEMBER_PAGES.
349
+ # The default value is: NO.
350
+
351
+ INLINE_GROUPED_CLASSES = NO
352
+
353
+ # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
354
+ # with only public data fields or simple typedef fields will be shown inline in
355
+ # the documentation of the scope in which they are defined (i.e. file,
356
+ # namespace, or group documentation), provided this scope is documented. If set
357
+ # to NO, structs, classes, and unions are shown on a separate page (for HTML and
358
+ # Man pages) or section (for LaTeX and RTF).
359
+ # The default value is: NO.
360
+
361
+ INLINE_SIMPLE_STRUCTS = NO
362
+
363
+ # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
364
+ # enum is documented as struct, union, or enum with the name of the typedef. So
365
+ # typedef struct TypeS {} TypeT, will appear in the documentation as a struct
366
+ # with name TypeT. When disabled the typedef will appear as a member of a file,
367
+ # namespace, or class. And the struct will be named TypeS. This can typically be
368
+ # useful for C code in case the coding convention dictates that all compound
369
+ # types are typedef'ed and only the typedef is referenced, never the tag name.
370
+ # The default value is: NO.
371
+
372
+ TYPEDEF_HIDES_STRUCT = NO
373
+
374
+ # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
375
+ # cache is used to resolve symbols given their name and scope. Since this can be
376
+ # an expensive process and often the same symbol appears multiple times in the
377
+ # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
378
+ # doxygen will become slower. If the cache is too large, memory is wasted. The
379
+ # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
380
+ # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
381
+ # symbols. At the end of a run doxygen will report the cache usage and suggest
382
+ # the optimal cache size from a speed point of view.
383
+ # Minimum value: 0, maximum value: 9, default value: 0.
384
+
385
+ LOOKUP_CACHE_SIZE = 0
386
+
222
387
  #---------------------------------------------------------------------------
223
388
  # Build related configuration options
224
389
  #---------------------------------------------------------------------------
225
390
 
226
- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
227
- # documentation are documented, even if no documentation was available.
228
- # Private class members and static file members will be hidden unless
229
- # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
391
+ # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
392
+ # documentation are documented, even if no documentation was available. Private
393
+ # class members and static file members will be hidden unless the
394
+ # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
395
+ # Note: This will also disable the warnings about undocumented members that are
396
+ # normally produced when WARNINGS is set to YES.
397
+ # The default value is: NO.
230
398
 
231
399
  EXTRACT_ALL = NO
232
400
 
233
- # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
234
- # will be included in the documentation.
401
+ # If the EXTRACT_PRIVATE tag is set to YES all private members of a class will
402
+ # be included in the documentation.
403
+ # The default value is: NO.
235
404
 
236
405
  EXTRACT_PRIVATE = NO
237
406
 
238
- # If the EXTRACT_STATIC tag is set to YES all static members of a file
239
- # will be included in the documentation.
407
+ # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal
408
+ # scope will be included in the documentation.
409
+ # The default value is: NO.
410
+
411
+ EXTRACT_PACKAGE = NO
412
+
413
+ # If the EXTRACT_STATIC tag is set to YES all static members of a file will be
414
+ # included in the documentation.
415
+ # The default value is: NO.
240
416
 
241
417
  EXTRACT_STATIC = NO
242
418
 
243
- # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
244
- # defined locally in source files will be included in the documentation.
245
- # If set to NO only classes defined in header files are included.
419
+ # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined
420
+ # locally in source files will be included in the documentation. If set to NO
421
+ # only classes defined in header files are included. Does not have any effect
422
+ # for Java sources.
423
+ # The default value is: YES.
246
424
 
247
425
  EXTRACT_LOCAL_CLASSES = YES
248
426
 
249
- # This flag is only useful for Objective-C code. When set to YES local
250
- # methods, which are defined in the implementation section but not in
251
- # the interface are included in the documentation.
252
- # If set to NO (the default) only methods in the interface are included.
427
+ # This flag is only useful for Objective-C code. When set to YES local methods,
428
+ # which are defined in the implementation section but not in the interface are
429
+ # included in the documentation. If set to NO only methods in the interface are
430
+ # included.
431
+ # The default value is: NO.
253
432
 
254
433
  EXTRACT_LOCAL_METHODS = NO
255
434
 
256
- # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
257
- # undocumented members of documented classes, files or namespaces.
258
- # If set to NO (the default) these members will be included in the
259
- # various overviews, but no documentation section is generated.
260
- # This option has no effect if EXTRACT_ALL is enabled.
435
+ # If this flag is set to YES, the members of anonymous namespaces will be
436
+ # extracted and appear in the documentation as a namespace called
437
+ # 'anonymous_namespace{file}', where file will be replaced with the base name of
438
+ # the file that contains the anonymous namespace. By default anonymous namespace
439
+ # are hidden.
440
+ # The default value is: NO.
441
+
442
+ EXTRACT_ANON_NSPACES = NO
443
+
444
+ # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
445
+ # undocumented members inside documented classes or files. If set to NO these
446
+ # members will be included in the various overviews, but no documentation
447
+ # section is generated. This option has no effect if EXTRACT_ALL is enabled.
448
+ # The default value is: NO.
261
449
 
262
450
  HIDE_UNDOC_MEMBERS = NO
263
451
 
264
- # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
265
- # undocumented classes that are normally visible in the class hierarchy.
266
- # If set to NO (the default) these classes will be included in the various
267
- # overviews. This option has no effect if EXTRACT_ALL is enabled.
452
+ # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
453
+ # undocumented classes that are normally visible in the class hierarchy. If set
454
+ # to NO these classes will be included in the various overviews. This option has
455
+ # no effect if EXTRACT_ALL is enabled.
456
+ # The default value is: NO.
268
457
 
269
458
  HIDE_UNDOC_CLASSES = NO
270
459
 
271
- # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
272
- # friend (class|struct|union) declarations.
273
- # If set to NO (the default) these declarations will be included in the
274
- # documentation.
460
+ # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
461
+ # (class|struct|union) declarations. If set to NO these declarations will be
462
+ # included in the documentation.
463
+ # The default value is: NO.
275
464
 
276
465
  HIDE_FRIEND_COMPOUNDS = NO
277
466
 
278
- # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
279
- # documentation blocks found inside the body of a function.
280
- # If set to NO (the default) these blocks will be appended to the
281
- # function's detailed documentation block.
467
+ # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
468
+ # documentation blocks found inside the body of a function. If set to NO these
469
+ # blocks will be appended to the function's detailed documentation block.
470
+ # The default value is: NO.
282
471
 
283
472
  HIDE_IN_BODY_DOCS = NO
284
473
 
285
- # The INTERNAL_DOCS tag determines if documentation
286
- # that is typed after a \internal command is included. If the tag is set
287
- # to NO (the default) then the documentation will be excluded.
288
- # Set it to YES to include the internal documentation.
474
+ # The INTERNAL_DOCS tag determines if documentation that is typed after a
475
+ # \internal command is included. If the tag is set to NO then the documentation
476
+ # will be excluded. Set it to YES to include the internal documentation.
477
+ # The default value is: NO.
289
478
 
290
479
  INTERNAL_DOCS = NO
291
480
 
292
- # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
293
- # file names in lower-case letters. If set to YES upper-case letters are also
294
- # allowed. This is useful if you have classes or files whose names only differ
295
- # in case and if your file system supports case sensitive file names. Windows
481
+ # If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
482
+ # names in lower-case letters. If set to YES upper-case letters are also
483
+ # allowed. This is useful if you have classes or files whose names only differ
484
+ # in case and if your file system supports case sensitive file names. Windows
296
485
  # and Mac users are advised to set this option to NO.
486
+ # The default value is: system dependent.
297
487
 
298
488
  CASE_SENSE_NAMES = YES
299
489
 
300
- # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
301
- # will show members with their full class and namespace scopes in the
302
- # documentation. If set to YES the scope will be hidden.
490
+ # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
491
+ # their full class and namespace scopes in the documentation. If set to YES the
492
+ # scope will be hidden.
493
+ # The default value is: NO.
303
494
 
304
495
  HIDE_SCOPE_NAMES = NO
305
496
 
306
- # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
307
- # will put a list of the files that are included by a file in the documentation
308
- # of that file.
497
+ # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
498
+ # the files that are included by a file in the documentation of that file.
499
+ # The default value is: YES.
309
500
 
310
501
  SHOW_INCLUDE_FILES = YES
311
502
 
312
- # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
313
- # is inserted in the documentation for inline members.
503
+ # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
504
+ # files with double quotes in the documentation rather than with sharp brackets.
505
+ # The default value is: NO.
506
+
507
+ FORCE_LOCAL_INCLUDES = NO
508
+
509
+ # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
510
+ # documentation for inline members.
511
+ # The default value is: YES.
314
512
 
315
513
  INLINE_INFO = YES
316
514
 
317
- # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
318
- # will sort the (detailed) documentation of file and class members
319
- # alphabetically by member name. If set to NO the members will appear in
320
- # declaration order.
515
+ # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
516
+ # (detailed) documentation of file and class members alphabetically by member
517
+ # name. If set to NO the members will appear in declaration order.
518
+ # The default value is: YES.
321
519
 
322
520
  SORT_MEMBER_DOCS = YES
323
521
 
324
- # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
325
- # brief documentation of file, namespace and class members alphabetically
326
- # by member name. If set to NO (the default) the members will appear in
327
- # declaration order.
522
+ # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
523
+ # descriptions of file, namespace and class members alphabetically by member
524
+ # name. If set to NO the members will appear in declaration order.
525
+ # The default value is: NO.
328
526
 
329
527
  SORT_BRIEF_DOCS = NO
330
528
 
331
- # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
332
- # sorted by fully-qualified names, including namespaces. If set to
333
- # NO (the default), the class list will be sorted only by class name,
334
- # not including the namespace part.
529
+ # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
530
+ # (brief and detailed) documentation of class members so that constructors and
531
+ # destructors are listed first. If set to NO the constructors will appear in the
532
+ # respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
533
+ # Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
534
+ # member documentation.
535
+ # Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
536
+ # detailed member documentation.
537
+ # The default value is: NO.
538
+
539
+ SORT_MEMBERS_CTORS_1ST = NO
540
+
541
+ # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
542
+ # of group names into alphabetical order. If set to NO the group names will
543
+ # appear in their defined order.
544
+ # The default value is: NO.
545
+
546
+ SORT_GROUP_NAMES = NO
547
+
548
+ # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
549
+ # fully-qualified names, including namespaces. If set to NO, the class list will
550
+ # be sorted only by class name, not including the namespace part.
335
551
  # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
336
- # Note: This option applies only to the class list, not to the
337
- # alphabetical list.
552
+ # Note: This option applies only to the class list, not to the alphabetical
553
+ # list.
554
+ # The default value is: NO.
338
555
 
339
556
  SORT_BY_SCOPE_NAME = NO
340
557
 
341
- # The GENERATE_TODOLIST tag can be used to enable (YES) or
342
- # disable (NO) the todo list. This list is created by putting \todo
343
- # commands in the documentation.
558
+ # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
559
+ # type resolution of all parameters of a function it will reject a match between
560
+ # the prototype and the implementation of a member function even if there is
561
+ # only one candidate or it is obvious which candidate to choose by doing a
562
+ # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
563
+ # accept a match between prototype and implementation in such cases.
564
+ # The default value is: NO.
565
+
566
+ STRICT_PROTO_MATCHING = NO
567
+
568
+ # The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the
569
+ # todo list. This list is created by putting \todo commands in the
570
+ # documentation.
571
+ # The default value is: YES.
344
572
 
345
573
  GENERATE_TODOLIST = YES
346
574
 
347
- # The GENERATE_TESTLIST tag can be used to enable (YES) or
348
- # disable (NO) the test list. This list is created by putting \test
349
- # commands in the documentation.
575
+ # The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the
576
+ # test list. This list is created by putting \test commands in the
577
+ # documentation.
578
+ # The default value is: YES.
350
579
 
351
580
  GENERATE_TESTLIST = YES
352
581
 
353
- # The GENERATE_BUGLIST tag can be used to enable (YES) or
354
- # disable (NO) the bug list. This list is created by putting \bug
355
- # commands in the documentation.
582
+ # The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug
583
+ # list. This list is created by putting \bug commands in the documentation.
584
+ # The default value is: YES.
356
585
 
357
586
  GENERATE_BUGLIST = YES
358
587
 
359
- # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
360
- # disable (NO) the deprecated list. This list is created by putting
361
- # \deprecated commands in the documentation.
588
+ # The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO)
589
+ # the deprecated list. This list is created by putting \deprecated commands in
590
+ # the documentation.
591
+ # The default value is: YES.
362
592
 
363
593
  GENERATE_DEPRECATEDLIST= YES
364
594
 
365
- # The ENABLED_SECTIONS tag can be used to enable conditional
366
- # documentation sections, marked by \if sectionname ... \endif.
595
+ # The ENABLED_SECTIONS tag can be used to enable conditional documentation
596
+ # sections, marked by \if <section_label> ... \endif and \cond <section_label>
597
+ # ... \endcond blocks.
367
598
 
368
- ENABLED_SECTIONS =
599
+ ENABLED_SECTIONS =
369
600
 
370
- # The MAX_INITIALIZER_LINES tag determines the maximum number of lines
371
- # the initial value of a variable or define consists of for it to appear in
372
- # the documentation. If the initializer consists of more lines than specified
373
- # here it will be hidden. Use a value of 0 to hide initializers completely.
374
- # The appearance of the initializer of individual variables and defines in the
375
- # documentation can be controlled using \showinitializer or \hideinitializer
376
- # command in the documentation regardless of this setting.
601
+ # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
602
+ # initial value of a variable or macro / define can have for it to appear in the
603
+ # documentation. If the initializer consists of more lines than specified here
604
+ # it will be hidden. Use a value of 0 to hide initializers completely. The
605
+ # appearance of the value of individual variables and macros / defines can be
606
+ # controlled using \showinitializer or \hideinitializer command in the
607
+ # documentation regardless of this setting.
608
+ # Minimum value: 0, maximum value: 10000, default value: 30.
377
609
 
378
610
  MAX_INITIALIZER_LINES = 30
379
611
 
380
- # Set the SHOW_USED_FILES tag to NO to disable the list of files generated
381
- # at the bottom of the documentation of classes and structs. If set to YES the
382
- # list will mention the files that were used to generate the documentation.
612
+ # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
613
+ # the bottom of the documentation of classes and structs. If set to YES the list
614
+ # will mention the files that were used to generate the documentation.
615
+ # The default value is: YES.
383
616
 
384
617
  SHOW_USED_FILES = YES
385
618
 
386
- # If the sources in your project are distributed over multiple directories
387
- # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
388
- # in the documentation. The default is NO.
619
+ # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
620
+ # will remove the Files entry from the Quick Index and from the Folder Tree View
621
+ # (if specified).
622
+ # The default value is: YES.
623
+
624
+ SHOW_FILES = YES
625
+
626
+ # Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
627
+ # page. This will remove the Namespaces entry from the Quick Index and from the
628
+ # Folder Tree View (if specified).
629
+ # The default value is: YES.
389
630
 
390
- SHOW_DIRECTORIES = NO
631
+ SHOW_NAMESPACES = YES
391
632
 
392
- # The FILE_VERSION_FILTER tag can be used to specify a program or script that
393
- # doxygen should invoke to get the current version for each file (typically from the
394
- # version control system). Doxygen will invoke the program by executing (via
395
- # popen()) the command <command> <input-file>, where <command> is the value of
396
- # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
397
- # provided by doxygen. Whatever the program writes to standard output
398
- # is used as the file version. See the manual for examples.
633
+ # The FILE_VERSION_FILTER tag can be used to specify a program or script that
634
+ # doxygen should invoke to get the current version for each file (typically from
635
+ # the version control system). Doxygen will invoke the program by executing (via
636
+ # popen()) the command command input-file, where command is the value of the
637
+ # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
638
+ # by doxygen. Whatever the program writes to standard output is used as the file
639
+ # version. For an example see the documentation.
399
640
 
400
- FILE_VERSION_FILTER =
641
+ FILE_VERSION_FILTER =
642
+
643
+ # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
644
+ # by doxygen. The layout file controls the global structure of the generated
645
+ # output files in an output format independent way. To create the layout file
646
+ # that represents doxygen's defaults, run doxygen with the -l option. You can
647
+ # optionally specify a file name after the option, if omitted DoxygenLayout.xml
648
+ # will be used as the name of the layout file.
649
+ #
650
+ # Note that if you run doxygen from a directory containing a file called
651
+ # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
652
+ # tag is left empty.
653
+
654
+ LAYOUT_FILE =
655
+
656
+ # The CITE_BIB_FILES tag can be used to specify one or more bib files containing
657
+ # the reference definitions. This must be a list of .bib files. The .bib
658
+ # extension is automatically appended if omitted. This requires the bibtex tool
659
+ # to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info.
660
+ # For LaTeX the style of the bibliography can be controlled using
661
+ # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
662
+ # search path. Do not use file names with spaces, bibtex cannot handle them. See
663
+ # also \cite for info how to create references.
664
+
665
+ CITE_BIB_FILES =
401
666
 
402
667
  #---------------------------------------------------------------------------
403
- # configuration options related to warning and progress messages
668
+ # Configuration options related to warning and progress messages
404
669
  #---------------------------------------------------------------------------
405
670
 
406
- # The QUIET tag can be used to turn on/off the messages that are generated
407
- # by doxygen. Possible values are YES and NO. If left blank NO is used.
671
+ # The QUIET tag can be used to turn on/off the messages that are generated to
672
+ # standard output by doxygen. If QUIET is set to YES this implies that the
673
+ # messages are off.
674
+ # The default value is: NO.
408
675
 
409
676
  QUIET = NO
410
677
 
411
- # The WARNINGS tag can be used to turn on/off the warning messages that are
412
- # generated by doxygen. Possible values are YES and NO. If left blank
413
- # NO is used.
678
+ # The WARNINGS tag can be used to turn on/off the warning messages that are
679
+ # generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES
680
+ # this implies that the warnings are on.
681
+ #
682
+ # Tip: Turn warnings on while writing the documentation.
683
+ # The default value is: YES.
414
684
 
415
685
  WARNINGS = YES
416
686
 
417
- # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
418
- # for undocumented members. If EXTRACT_ALL is set to YES then this flag will
419
- # automatically be disabled.
687
+ # If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate
688
+ # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
689
+ # will automatically be disabled.
690
+ # The default value is: YES.
420
691
 
421
692
  WARN_IF_UNDOCUMENTED = YES
422
693
 
423
- # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
424
- # potential errors in the documentation, such as not documenting some
425
- # parameters in a documented function, or documenting parameters that
426
- # don't exist or using markup commands wrongly.
694
+ # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
695
+ # potential errors in the documentation, such as not documenting some parameters
696
+ # in a documented function, or documenting parameters that don't exist or using
697
+ # markup commands wrongly.
698
+ # The default value is: YES.
427
699
 
428
700
  WARN_IF_DOC_ERROR = YES
429
701
 
430
- # This WARN_NO_PARAMDOC option can be abled to get warnings for
431
- # functions that are documented, but have no documentation for their parameters
432
- # or return value. If set to NO (the default) doxygen will only warn about
433
- # wrong or incomplete parameter documentation, but not about the absence of
434
- # documentation.
702
+ # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
703
+ # are documented, but have no documentation for their parameters or return
704
+ # value. If set to NO doxygen will only warn about wrong or incomplete parameter
705
+ # documentation, but not about the absence of documentation.
706
+ # The default value is: NO.
435
707
 
436
708
  WARN_NO_PARAMDOC = NO
437
709
 
438
- # The WARN_FORMAT tag determines the format of the warning messages that
439
- # doxygen can produce. The string should contain the $file, $line, and $text
440
- # tags, which will be replaced by the file and line number from which the
441
- # warning originated and the warning text. Optionally the format may contain
442
- # $version, which will be replaced by the version of the file (if it could
443
- # be obtained via FILE_VERSION_FILTER)
710
+ # The WARN_FORMAT tag determines the format of the warning messages that doxygen
711
+ # can produce. The string should contain the $file, $line, and $text tags, which
712
+ # will be replaced by the file and line number from which the warning originated
713
+ # and the warning text. Optionally the format may contain $version, which will
714
+ # be replaced by the version of the file (if it could be obtained via
715
+ # FILE_VERSION_FILTER)
716
+ # The default value is: $file:$line: $text.
444
717
 
445
718
  WARN_FORMAT = "$file:$line: $text"
446
719
 
447
- # The WARN_LOGFILE tag can be used to specify a file to which warning
448
- # and error messages should be written. If left blank the output is written
449
- # to stderr.
720
+ # The WARN_LOGFILE tag can be used to specify a file to which warning and error
721
+ # messages should be written. If left blank the output is written to standard
722
+ # error (stderr).
450
723
 
451
- WARN_LOGFILE =
724
+ WARN_LOGFILE =
452
725
 
453
726
  #---------------------------------------------------------------------------
454
- # configuration options related to the input files
727
+ # Configuration options related to the input files
455
728
  #---------------------------------------------------------------------------
456
729
 
457
- # The INPUT tag can be used to specify the files and/or directories that contain
458
- # documented source files. You may enter file names like "myfile.cpp" or
459
- # directories like "/usr/src/myproject". Separate the files or directories
460
- # with spaces.
730
+ # The INPUT tag is used to specify the files and/or directories that contain
731
+ # documented source files. You may enter file names like myfile.cpp or
732
+ # directories like /usr/src/myproject. Separate the files or directories with
733
+ # spaces.
734
+ # Note: If this tag is empty the current directory is searched.
461
735
 
462
736
  INPUT = rice
463
737
 
464
- # If the value of the INPUT tag contains directories, you can use the
465
- # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
466
- # and *.h) to filter out the source-files in the directories. If left
467
- # blank the following patterns are tested:
468
- # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
469
- # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py
738
+ # This tag can be used to specify the character encoding of the source files
739
+ # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
740
+ # libiconv (or the iconv built into libc) for the transcoding. See the libiconv
741
+ # documentation (see: http://www.gnu.org/software/libiconv) for the list of
742
+ # possible encodings.
743
+ # The default value is: UTF-8.
744
+
745
+ INPUT_ENCODING = UTF-8
746
+
747
+ # If the value of the INPUT tag contains directories, you can use the
748
+ # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
749
+ # *.h) to filter out the source-files in the directories. If left blank the
750
+ # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii,
751
+ # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp,
752
+ # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown,
753
+ # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf,
754
+ # *.qsf, *.as and *.js.
470
755
 
471
756
  FILE_PATTERNS = *.hpp README.doxygen
472
757
 
473
- # The RECURSIVE tag can be used to turn specify whether or not subdirectories
474
- # should be searched for input files as well. Possible values are YES and NO.
475
- # If left blank NO is used.
758
+ # The RECURSIVE tag can be used to specify whether or not subdirectories should
759
+ # be searched for input files as well.
760
+ # The default value is: NO.
476
761
 
477
762
  RECURSIVE = NO
478
763
 
479
- # The EXCLUDE tag can be used to specify files and/or directories that should
480
- # excluded from the INPUT source files. This way you can easily exclude a
764
+ # The EXCLUDE tag can be used to specify files and/or directories that should be
765
+ # excluded from the INPUT source files. This way you can easily exclude a
481
766
  # subdirectory from a directory tree whose root is specified with the INPUT tag.
767
+ #
768
+ # Note that relative paths are relative to the directory from which doxygen is
769
+ # run.
482
770
 
483
- EXCLUDE =
771
+ EXCLUDE =
484
772
 
485
- # The EXCLUDE_SYMLINKS tag can be used select whether or not files or
486
- # directories that are symbolic links (a Unix filesystem feature) are excluded
773
+ # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
774
+ # directories that are symbolic links (a Unix file system feature) are excluded
487
775
  # from the input.
776
+ # The default value is: NO.
488
777
 
489
778
  EXCLUDE_SYMLINKS = NO
490
779
 
491
- # If the value of the INPUT tag contains directories, you can use the
492
- # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
493
- # certain files from those directories. Note that the wildcards are matched
494
- # against the file with absolute path, so to exclude all test directories
495
- # for example use the pattern */test/*
780
+ # If the value of the INPUT tag contains directories, you can use the
781
+ # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
782
+ # certain files from those directories.
783
+ #
784
+ # Note that the wildcards are matched against the file with absolute path, so to
785
+ # exclude all test directories for example use the pattern */test/*
496
786
 
497
- EXCLUDE_PATTERNS =
787
+ EXCLUDE_PATTERNS =
498
788
 
499
- # The EXAMPLE_PATH tag can be used to specify one or more files or
500
- # directories that contain example code fragments that are included (see
501
- # the \include command).
789
+ # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
790
+ # (namespaces, classes, functions, etc.) that should be excluded from the
791
+ # output. The symbol name can be a fully qualified name, a word, or if the
792
+ # wildcard * is used, a substring. Examples: ANamespace, AClass,
793
+ # AClass::ANamespace, ANamespace::*Test
794
+ #
795
+ # Note that the wildcards are matched against the file with absolute path, so to
796
+ # exclude all test directories use the pattern */test/*
797
+
798
+ EXCLUDE_SYMBOLS =
799
+
800
+ # The EXAMPLE_PATH tag can be used to specify one or more files or directories
801
+ # that contain example code fragments that are included (see the \include
802
+ # command).
502
803
 
503
804
  EXAMPLE_PATH = sample
504
805
 
505
- # If the value of the EXAMPLE_PATH tag contains directories, you can use the
506
- # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
507
- # and *.h) to filter out the source-files in the directories. If left
508
- # blank all files are included.
806
+ # If the value of the EXAMPLE_PATH tag contains directories, you can use the
807
+ # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
808
+ # *.h) to filter out the source-files in the directories. If left blank all
809
+ # files are included.
509
810
 
510
- EXAMPLE_PATTERNS =
811
+ EXAMPLE_PATTERNS =
511
812
 
512
- # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
513
- # searched for input files to be used with the \include or \dontinclude
514
- # commands irrespective of the value of the RECURSIVE tag.
515
- # Possible values are YES and NO. If left blank NO is used.
813
+ # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
814
+ # searched for input files to be used with the \include or \dontinclude commands
815
+ # irrespective of the value of the RECURSIVE tag.
816
+ # The default value is: NO.
516
817
 
517
818
  EXAMPLE_RECURSIVE = YES
518
819
 
519
- # The IMAGE_PATH tag can be used to specify one or more files or
520
- # directories that contain image that are included in the documentation (see
521
- # the \image command).
820
+ # The IMAGE_PATH tag can be used to specify one or more files or directories
821
+ # that contain images that are to be included in the documentation (see the
822
+ # \image command).
522
823
 
523
- IMAGE_PATH =
824
+ IMAGE_PATH =
524
825
 
525
- # The INPUT_FILTER tag can be used to specify a program that doxygen should
526
- # invoke to filter for each input file. Doxygen will invoke the filter program
527
- # by executing (via popen()) the command <filter> <input-file>, where <filter>
528
- # is the value of the INPUT_FILTER tag, and <input-file> is the name of an
529
- # input file. Doxygen will then use the output that the filter program writes
530
- # to standard output. If FILTER_PATTERNS is specified, this tag will be
531
- # ignored.
826
+ # The INPUT_FILTER tag can be used to specify a program that doxygen should
827
+ # invoke to filter for each input file. Doxygen will invoke the filter program
828
+ # by executing (via popen()) the command:
829
+ #
830
+ # <filter> <input-file>
831
+ #
832
+ # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
833
+ # name of an input file. Doxygen will then use the output that the filter
834
+ # program writes to standard output. If FILTER_PATTERNS is specified, this tag
835
+ # will be ignored.
836
+ #
837
+ # Note that the filter must not add or remove lines; it is applied before the
838
+ # code is scanned, but not when the output code is generated. If lines are added
839
+ # or removed, the anchors will not be placed correctly.
532
840
 
533
- INPUT_FILTER =
841
+ INPUT_FILTER =
534
842
 
535
- # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
536
- # basis. Doxygen will compare the file name with each pattern and apply the
537
- # filter if there is a match. The filters are a list of the form:
538
- # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
539
- # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
540
- # is applied to all files.
843
+ # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
844
+ # basis. Doxygen will compare the file name with each pattern and apply the
845
+ # filter if there is a match. The filters are a list of the form: pattern=filter
846
+ # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
847
+ # filters are used. If the FILTER_PATTERNS tag is empty or if none of the
848
+ # patterns match the file name, INPUT_FILTER is applied.
541
849
 
542
- FILTER_PATTERNS =
850
+ FILTER_PATTERNS =
543
851
 
544
- # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
545
- # INPUT_FILTER) will be used to filter the input files when producing source
546
- # files to browse (i.e. when SOURCE_BROWSER is set to YES).
852
+ # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
853
+ # INPUT_FILTER ) will also be used to filter the input files that are used for
854
+ # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
855
+ # The default value is: NO.
547
856
 
548
857
  FILTER_SOURCE_FILES = NO
549
858
 
859
+ # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
860
+ # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
861
+ # it is also possible to disable source filtering for a specific pattern using
862
+ # *.ext= (so without naming a filter).
863
+ # This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
864
+
865
+ FILTER_SOURCE_PATTERNS =
866
+
867
+ # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
868
+ # is part of the input, its contents will be placed on the main page
869
+ # (index.html). This can be useful if you have a project on for instance GitHub
870
+ # and want to reuse the introduction page also for the doxygen output.
871
+
872
+ USE_MDFILE_AS_MAINPAGE =
873
+
550
874
  #---------------------------------------------------------------------------
551
- # configuration options related to source browsing
875
+ # Configuration options related to source browsing
552
876
  #---------------------------------------------------------------------------
553
877
 
554
- # If the SOURCE_BROWSER tag is set to YES then a list of source files will
555
- # be generated. Documented entities will be cross-referenced with these sources.
556
- # Note: To get rid of all source code in the generated output, make sure also
557
- # VERBATIM_HEADERS is set to NO.
878
+ # If the SOURCE_BROWSER tag is set to YES then a list of source files will be
879
+ # generated. Documented entities will be cross-referenced with these sources.
880
+ #
881
+ # Note: To get rid of all source code in the generated output, make sure that
882
+ # also VERBATIM_HEADERS is set to NO.
883
+ # The default value is: NO.
558
884
 
559
885
  SOURCE_BROWSER = NO
560
886
 
561
- # Setting the INLINE_SOURCES tag to YES will include the body
562
- # of functions and classes directly in the documentation.
887
+ # Setting the INLINE_SOURCES tag to YES will include the body of functions,
888
+ # classes and enums directly into the documentation.
889
+ # The default value is: NO.
563
890
 
564
891
  INLINE_SOURCES = NO
565
892
 
566
- # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
567
- # doxygen to hide any special comment blocks from generated source code
568
- # fragments. Normal C and C++ comments will always remain visible.
893
+ # Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
894
+ # special comment blocks from generated source code fragments. Normal C, C++ and
895
+ # Fortran comments will always remain visible.
896
+ # The default value is: YES.
569
897
 
570
898
  STRIP_CODE_COMMENTS = YES
571
899
 
572
- # If the REFERENCED_BY_RELATION tag is set to YES (the default)
573
- # then for each documented function all documented
574
- # functions referencing it will be listed.
900
+ # If the REFERENCED_BY_RELATION tag is set to YES then for each documented
901
+ # function all documented functions referencing it will be listed.
902
+ # The default value is: NO.
575
903
 
576
904
  REFERENCED_BY_RELATION = YES
577
905
 
578
- # If the REFERENCES_RELATION tag is set to YES (the default)
579
- # then for each documented function all documented entities
580
- # called/used by that function will be listed.
906
+ # If the REFERENCES_RELATION tag is set to YES then for each documented function
907
+ # all documented entities called/used by that function will be listed.
908
+ # The default value is: NO.
581
909
 
582
910
  REFERENCES_RELATION = YES
583
911
 
584
- # If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
585
- # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
586
- # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
587
- # link to the source code. Otherwise they will link to the documentstion.
912
+ # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
913
+ # to YES, then the hyperlinks from functions in REFERENCES_RELATION and
914
+ # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
915
+ # link to the documentation.
916
+ # The default value is: YES.
588
917
 
589
918
  REFERENCES_LINK_SOURCE = YES
590
919
 
591
- # If the USE_HTAGS tag is set to YES then the references to source code
592
- # will point to the HTML generated by the htags(1) tool instead of doxygen
593
- # built-in source browser. The htags tool is part of GNU's global source
594
- # tagging system (see http://www.gnu.org/software/global/global.html). You
595
- # will need version 4.8.6 or higher.
920
+ # If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
921
+ # source code will show a tooltip with additional information such as prototype,
922
+ # brief description and links to the definition and documentation. Since this
923
+ # will make the HTML file larger and loading of large files a bit slower, you
924
+ # can opt to disable this feature.
925
+ # The default value is: YES.
926
+ # This tag requires that the tag SOURCE_BROWSER is set to YES.
927
+
928
+ SOURCE_TOOLTIPS = YES
929
+
930
+ # If the USE_HTAGS tag is set to YES then the references to source code will
931
+ # point to the HTML generated by the htags(1) tool instead of doxygen built-in
932
+ # source browser. The htags tool is part of GNU's global source tagging system
933
+ # (see http://www.gnu.org/software/global/global.html). You will need version
934
+ # 4.8.6 or higher.
935
+ #
936
+ # To use it do the following:
937
+ # - Install the latest version of global
938
+ # - Enable SOURCE_BROWSER and USE_HTAGS in the config file
939
+ # - Make sure the INPUT points to the root of the source tree
940
+ # - Run doxygen as normal
941
+ #
942
+ # Doxygen will invoke htags (and that will in turn invoke gtags), so these
943
+ # tools must be available from the command line (i.e. in the search path).
944
+ #
945
+ # The result: instead of the source browser generated by doxygen, the links to
946
+ # source code will now point to the output of htags.
947
+ # The default value is: NO.
948
+ # This tag requires that the tag SOURCE_BROWSER is set to YES.
596
949
 
597
950
  USE_HTAGS = NO
598
951
 
599
- # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
600
- # will generate a verbatim copy of the header file for each class for
601
- # which an include is specified. Set to NO to disable this.
952
+ # If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
953
+ # verbatim copy of the header file for each class for which an include is
954
+ # specified. Set to NO to disable this.
955
+ # See also: Section \class.
956
+ # The default value is: YES.
602
957
 
603
958
  VERBATIM_HEADERS = YES
604
959
 
605
960
  #---------------------------------------------------------------------------
606
- # configuration options related to the alphabetical class index
961
+ # Configuration options related to the alphabetical class index
607
962
  #---------------------------------------------------------------------------
608
963
 
609
- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
610
- # of all compounds will be generated. Enable this if the project
611
- # contains a lot of classes, structs, unions or interfaces.
964
+ # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
965
+ # compounds will be generated. Enable this if the project contains a lot of
966
+ # classes, structs, unions or interfaces.
967
+ # The default value is: YES.
612
968
 
613
969
  ALPHABETICAL_INDEX = NO
614
970
 
615
- # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
616
- # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
617
- # in which this list will be split (can be a number in the range [1..20])
971
+ # The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
972
+ # which the alphabetical index list will be split.
973
+ # Minimum value: 1, maximum value: 20, default value: 5.
974
+ # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
618
975
 
619
976
  COLS_IN_ALPHA_INDEX = 5
620
977
 
621
- # In case all classes in a project start with a common prefix, all
622
- # classes will be put under the same header in the alphabetical index.
623
- # The IGNORE_PREFIX tag can be used to specify one or more prefixes that
624
- # should be ignored while generating the index headers.
978
+ # In case all classes in a project start with a common prefix, all classes will
979
+ # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
980
+ # can be used to specify a prefix (or a list of prefixes) that should be ignored
981
+ # while generating the index headers.
982
+ # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
625
983
 
626
- IGNORE_PREFIX =
984
+ IGNORE_PREFIX =
627
985
 
628
986
  #---------------------------------------------------------------------------
629
- # configuration options related to the HTML output
987
+ # Configuration options related to the HTML output
630
988
  #---------------------------------------------------------------------------
631
989
 
632
- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
633
- # generate HTML output.
990
+ # If the GENERATE_HTML tag is set to YES doxygen will generate HTML output
991
+ # The default value is: YES.
634
992
 
635
993
  GENERATE_HTML = YES
636
994
 
637
- # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
638
- # If a relative path is entered the value of OUTPUT_DIRECTORY will be
639
- # put in front of it. If left blank `html' will be used as the default path.
995
+ # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
996
+ # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
997
+ # it.
998
+ # The default directory is: html.
999
+ # This tag requires that the tag GENERATE_HTML is set to YES.
640
1000
 
641
1001
  HTML_OUTPUT = html
642
1002
 
643
- # The HTML_FILE_EXTENSION tag can be used to specify the file extension for
644
- # each generated HTML page (for example: .htm,.php,.asp). If it is left blank
645
- # doxygen will generate files with .html extension.
1003
+ # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
1004
+ # generated HTML page (for example: .htm, .php, .asp).
1005
+ # The default value is: .html.
1006
+ # This tag requires that the tag GENERATE_HTML is set to YES.
646
1007
 
647
1008
  HTML_FILE_EXTENSION = .html
648
1009
 
649
- # The HTML_HEADER tag can be used to specify a personal HTML header for
650
- # each generated HTML page. If it is left blank doxygen will generate a
1010
+ # The HTML_HEADER tag can be used to specify a user-defined HTML header file for
1011
+ # each generated HTML page. If the tag is left blank doxygen will generate a
651
1012
  # standard header.
1013
+ #
1014
+ # To get valid HTML the header file that includes any scripts and style sheets
1015
+ # that doxygen needs, which is dependent on the configuration options used (e.g.
1016
+ # the setting GENERATE_TREEVIEW). It is highly recommended to start with a
1017
+ # default header using
1018
+ # doxygen -w html new_header.html new_footer.html new_stylesheet.css
1019
+ # YourConfigFile
1020
+ # and then modify the file new_header.html. See also section "Doxygen usage"
1021
+ # for information on how to generate the default header that doxygen normally
1022
+ # uses.
1023
+ # Note: The header is subject to change so you typically have to regenerate the
1024
+ # default header when upgrading to a newer version of doxygen. For a description
1025
+ # of the possible markers and block names see the documentation.
1026
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1027
+
1028
+ HTML_HEADER =
1029
+
1030
+ # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
1031
+ # generated HTML page. If the tag is left blank doxygen will generate a standard
1032
+ # footer. See HTML_HEADER for more information on how to generate a default
1033
+ # footer and what special commands can be used inside the footer. See also
1034
+ # section "Doxygen usage" for information on how to generate the default footer
1035
+ # that doxygen normally uses.
1036
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1037
+
1038
+ HTML_FOOTER =
1039
+
1040
+ # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
1041
+ # sheet that is used by each HTML page. It can be used to fine-tune the look of
1042
+ # the HTML output. If left blank doxygen will generate a default style sheet.
1043
+ # See also section "Doxygen usage" for information on how to generate the style
1044
+ # sheet that doxygen normally uses.
1045
+ # Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
1046
+ # it is more robust and this tag (HTML_STYLESHEET) will in the future become
1047
+ # obsolete.
1048
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1049
+
1050
+ HTML_STYLESHEET =
1051
+
1052
+ # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user-
1053
+ # defined cascading style sheet that is included after the standard style sheets
1054
+ # created by doxygen. Using this option one can overrule certain style aspects.
1055
+ # This is preferred over using HTML_STYLESHEET since it does not replace the
1056
+ # standard style sheet and is therefor more robust against future updates.
1057
+ # Doxygen will copy the style sheet file to the output directory. For an example
1058
+ # see the documentation.
1059
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1060
+
1061
+ HTML_EXTRA_STYLESHEET =
1062
+
1063
+ # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
1064
+ # other source files which should be copied to the HTML output directory. Note
1065
+ # that these files will be copied to the base HTML output directory. Use the
1066
+ # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
1067
+ # files. In the HTML_STYLESHEET file, use the file name only. Also note that the
1068
+ # files will be copied as-is; there are no commands or markers available.
1069
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1070
+
1071
+ HTML_EXTRA_FILES =
1072
+
1073
+ # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
1074
+ # will adjust the colors in the stylesheet and background images according to
1075
+ # this color. Hue is specified as an angle on a colorwheel, see
1076
+ # http://en.wikipedia.org/wiki/Hue for more information. For instance the value
1077
+ # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
1078
+ # purple, and 360 is red again.
1079
+ # Minimum value: 0, maximum value: 359, default value: 220.
1080
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1081
+
1082
+ HTML_COLORSTYLE_HUE = 220
1083
+
1084
+ # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
1085
+ # in the HTML output. For a value of 0 the output will use grayscales only. A
1086
+ # value of 255 will produce the most vivid colors.
1087
+ # Minimum value: 0, maximum value: 255, default value: 100.
1088
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1089
+
1090
+ HTML_COLORSTYLE_SAT = 100
1091
+
1092
+ # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
1093
+ # luminance component of the colors in the HTML output. Values below 100
1094
+ # gradually make the output lighter, whereas values above 100 make the output
1095
+ # darker. The value divided by 100 is the actual gamma applied, so 80 represents
1096
+ # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
1097
+ # change the gamma.
1098
+ # Minimum value: 40, maximum value: 240, default value: 80.
1099
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1100
+
1101
+ HTML_COLORSTYLE_GAMMA = 80
1102
+
1103
+ # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
1104
+ # page will contain the date and time when the page was generated. Setting this
1105
+ # to NO can help when comparing the output of multiple runs.
1106
+ # The default value is: YES.
1107
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1108
+
1109
+ HTML_TIMESTAMP = YES
1110
+
1111
+ # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
1112
+ # documentation will contain sections that can be hidden and shown after the
1113
+ # page has loaded.
1114
+ # The default value is: NO.
1115
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1116
+
1117
+ HTML_DYNAMIC_SECTIONS = NO
1118
+
1119
+ # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
1120
+ # shown in the various tree structured indices initially; the user can expand
1121
+ # and collapse entries dynamically later on. Doxygen will expand the tree to
1122
+ # such a level that at most the specified number of entries are visible (unless
1123
+ # a fully collapsed tree already exceeds this amount). So setting the number of
1124
+ # entries 1 will produce a full collapsed tree by default. 0 is a special value
1125
+ # representing an infinite number of entries and will result in a full expanded
1126
+ # tree by default.
1127
+ # Minimum value: 0, maximum value: 9999, default value: 100.
1128
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1129
+
1130
+ HTML_INDEX_NUM_ENTRIES = 100
1131
+
1132
+ # If the GENERATE_DOCSET tag is set to YES, additional index files will be
1133
+ # generated that can be used as input for Apple's Xcode 3 integrated development
1134
+ # environment (see: http://developer.apple.com/tools/xcode/), introduced with
1135
+ # OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a
1136
+ # Makefile in the HTML output directory. Running make will produce the docset in
1137
+ # that directory and running make install will install the docset in
1138
+ # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
1139
+ # startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
1140
+ # for more information.
1141
+ # The default value is: NO.
1142
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1143
+
1144
+ GENERATE_DOCSET = NO
1145
+
1146
+ # This tag determines the name of the docset feed. A documentation feed provides
1147
+ # an umbrella under which multiple documentation sets from a single provider
1148
+ # (such as a company or product suite) can be grouped.
1149
+ # The default value is: Doxygen generated docs.
1150
+ # This tag requires that the tag GENERATE_DOCSET is set to YES.
1151
+
1152
+ DOCSET_FEEDNAME = "Doxygen generated docs"
1153
+
1154
+ # This tag specifies a string that should uniquely identify the documentation
1155
+ # set bundle. This should be a reverse domain-name style string, e.g.
1156
+ # com.mycompany.MyDocSet. Doxygen will append .docset to the name.
1157
+ # The default value is: org.doxygen.Project.
1158
+ # This tag requires that the tag GENERATE_DOCSET is set to YES.
1159
+
1160
+ DOCSET_BUNDLE_ID = org.doxygen.Project
1161
+
1162
+ # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
1163
+ # the documentation publisher. This should be a reverse domain-name style
1164
+ # string, e.g. com.mycompany.MyDocSet.documentation.
1165
+ # The default value is: org.doxygen.Publisher.
1166
+ # This tag requires that the tag GENERATE_DOCSET is set to YES.
1167
+
1168
+ DOCSET_PUBLISHER_ID = org.doxygen.Publisher
1169
+
1170
+ # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
1171
+ # The default value is: Publisher.
1172
+ # This tag requires that the tag GENERATE_DOCSET is set to YES.
1173
+
1174
+ DOCSET_PUBLISHER_NAME = Publisher
1175
+
1176
+ # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
1177
+ # additional HTML index files: index.hhp, index.hhc, and index.hhk. The
1178
+ # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
1179
+ # (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on
1180
+ # Windows.
1181
+ #
1182
+ # The HTML Help Workshop contains a compiler that can convert all HTML output
1183
+ # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
1184
+ # files are now used as the Windows 98 help format, and will replace the old
1185
+ # Windows help format (.hlp) on all Windows platforms in the future. Compressed
1186
+ # HTML files also contain an index, a table of contents, and you can search for
1187
+ # words in the documentation. The HTML workshop also contains a viewer for
1188
+ # compressed HTML files.
1189
+ # The default value is: NO.
1190
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1191
+
1192
+ GENERATE_HTMLHELP = NO
1193
+
1194
+ # The CHM_FILE tag can be used to specify the file name of the resulting .chm
1195
+ # file. You can add a path in front of the file if the result should not be
1196
+ # written to the html output directory.
1197
+ # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
652
1198
 
653
- HTML_HEADER =
1199
+ CHM_FILE =
654
1200
 
655
- # The HTML_FOOTER tag can be used to specify a personal HTML footer for
656
- # each generated HTML page. If it is left blank doxygen will generate a
657
- # standard footer.
1201
+ # The HHC_LOCATION tag can be used to specify the location (absolute path
1202
+ # including file name) of the HTML help compiler ( hhc.exe). If non-empty
1203
+ # doxygen will try to run the HTML help compiler on the generated index.hhp.
1204
+ # The file has to be specified with full path.
1205
+ # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
658
1206
 
659
- HTML_FOOTER =
1207
+ HHC_LOCATION =
660
1208
 
661
- # The HTML_STYLESHEET tag can be used to specify a user-defined cascading
662
- # style sheet that is used by each HTML page. It can be used to
663
- # fine-tune the look of the HTML output. If the tag is left blank doxygen
664
- # will generate a default style sheet. Note that doxygen will try to copy
665
- # the style sheet file to the HTML output directory, so don't put your own
666
- # stylesheet in the HTML output directory as well, or it will be erased!
1209
+ # The GENERATE_CHI flag controls if a separate .chi index file is generated (
1210
+ # YES) or that it should be included in the master .chm file ( NO).
1211
+ # The default value is: NO.
1212
+ # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
667
1213
 
668
- HTML_STYLESHEET =
1214
+ GENERATE_CHI = NO
669
1215
 
670
- # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
671
- # files or namespaces will be aligned in HTML using tables. If set to
672
- # NO a bullet list will be used.
1216
+ # The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc)
1217
+ # and project file content.
1218
+ # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
673
1219
 
674
- HTML_ALIGN_MEMBERS = YES
1220
+ CHM_INDEX_ENCODING =
675
1221
 
676
- # If the GENERATE_HTMLHELP tag is set to YES, additional index files
677
- # will be generated that can be used as input for tools like the
678
- # Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
679
- # of the generated HTML documentation.
1222
+ # The BINARY_TOC flag controls whether a binary table of contents is generated (
1223
+ # YES) or a normal table of contents ( NO) in the .chm file.
1224
+ # The default value is: NO.
1225
+ # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
680
1226
 
681
- # GENERATE_HTMLHELP = NO
1227
+ BINARY_TOC = NO
682
1228
 
683
- # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
684
- # be used to specify the file name of the resulting .chm file. You
685
- # can add a path in front of the file if the result should not be
686
- # written to the html output directory.
1229
+ # The TOC_EXPAND flag can be set to YES to add extra items for group members to
1230
+ # the table of contents of the HTML help documentation and to the tree view.
1231
+ # The default value is: NO.
1232
+ # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
687
1233
 
688
- CHM_FILE =
1234
+ TOC_EXPAND = NO
689
1235
 
690
- # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
691
- # be used to specify the location (absolute path including file name) of
692
- # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
693
- # the HTML help compiler on the generated index.hhp.
1236
+ # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
1237
+ # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
1238
+ # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
1239
+ # (.qch) of the generated HTML documentation.
1240
+ # The default value is: NO.
1241
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1242
+
1243
+ GENERATE_QHP = NO
1244
+
1245
+ # If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
1246
+ # the file name of the resulting .qch file. The path specified is relative to
1247
+ # the HTML output folder.
1248
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1249
+
1250
+ QCH_FILE =
1251
+
1252
+ # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
1253
+ # Project output. For more information please see Qt Help Project / Namespace
1254
+ # (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace).
1255
+ # The default value is: org.doxygen.Project.
1256
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1257
+
1258
+ QHP_NAMESPACE = org.doxygen.Project
1259
+
1260
+ # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
1261
+ # Help Project output. For more information please see Qt Help Project / Virtual
1262
+ # Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual-
1263
+ # folders).
1264
+ # The default value is: doc.
1265
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1266
+
1267
+ QHP_VIRTUAL_FOLDER = doc
1268
+
1269
+ # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
1270
+ # filter to add. For more information please see Qt Help Project / Custom
1271
+ # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
1272
+ # filters).
1273
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1274
+
1275
+ QHP_CUST_FILTER_NAME =
1276
+
1277
+ # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
1278
+ # custom filter to add. For more information please see Qt Help Project / Custom
1279
+ # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
1280
+ # filters).
1281
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1282
+
1283
+ QHP_CUST_FILTER_ATTRS =
1284
+
1285
+ # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
1286
+ # project's filter section matches. Qt Help Project / Filter Attributes (see:
1287
+ # http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes).
1288
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1289
+
1290
+ QHP_SECT_FILTER_ATTRS =
1291
+
1292
+ # The QHG_LOCATION tag can be used to specify the location of Qt's
1293
+ # qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
1294
+ # generated .qhp file.
1295
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1296
+
1297
+ QHG_LOCATION =
1298
+
1299
+ # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
1300
+ # generated, together with the HTML files, they form an Eclipse help plugin. To
1301
+ # install this plugin and make it available under the help contents menu in
1302
+ # Eclipse, the contents of the directory containing the HTML and XML files needs
1303
+ # to be copied into the plugins directory of eclipse. The name of the directory
1304
+ # within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
1305
+ # After copying Eclipse needs to be restarted before the help appears.
1306
+ # The default value is: NO.
1307
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1308
+
1309
+ GENERATE_ECLIPSEHELP = NO
1310
+
1311
+ # A unique identifier for the Eclipse help plugin. When installing the plugin
1312
+ # the directory name containing the HTML and XML files should also have this
1313
+ # name. Each documentation set should have its own identifier.
1314
+ # The default value is: org.doxygen.Project.
1315
+ # This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
1316
+
1317
+ ECLIPSE_DOC_ID = org.doxygen.Project
1318
+
1319
+ # If you want full control over the layout of the generated HTML pages it might
1320
+ # be necessary to disable the index and replace it with your own. The
1321
+ # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
1322
+ # of each HTML page. A value of NO enables the index and the value YES disables
1323
+ # it. Since the tabs in the index contain the same information as the navigation
1324
+ # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
1325
+ # The default value is: NO.
1326
+ # This tag requires that the tag GENERATE_HTML is set to YES.
694
1327
 
695
- HHC_LOCATION =
1328
+ DISABLE_INDEX = NO
696
1329
 
697
- # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
698
- # controls if a separate .chi index file is generated (YES) or that
699
- # it should be included in the master .chm file (NO).
1330
+ # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
1331
+ # structure should be generated to display hierarchical information. If the tag
1332
+ # value is set to YES, a side panel will be generated containing a tree-like
1333
+ # index structure (just like the one that is generated for HTML Help). For this
1334
+ # to work a browser that supports JavaScript, DHTML, CSS and frames is required
1335
+ # (i.e. any modern browser). Windows users are probably better off using the
1336
+ # HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can
1337
+ # further fine-tune the look of the index. As an example, the default style
1338
+ # sheet generated by doxygen has an example that shows how to put an image at
1339
+ # the root of the tree instead of the PROJECT_NAME. Since the tree basically has
1340
+ # the same information as the tab index, you could consider setting
1341
+ # DISABLE_INDEX to YES when enabling this option.
1342
+ # The default value is: NO.
1343
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1344
+
1345
+ GENERATE_TREEVIEW = NO
1346
+
1347
+ # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
1348
+ # doxygen will group on one line in the generated HTML documentation.
1349
+ #
1350
+ # Note that a value of 0 will completely suppress the enum values from appearing
1351
+ # in the overview section.
1352
+ # Minimum value: 0, maximum value: 20, default value: 4.
1353
+ # This tag requires that the tag GENERATE_HTML is set to YES.
700
1354
 
701
- # GENERATE_CHI = NO
1355
+ ENUM_VALUES_PER_LINE = 4
702
1356
 
703
- # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
704
- # controls whether a binary table of contents is generated (YES) or a
705
- # normal table of contents (NO) in the .chm file.
1357
+ # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
1358
+ # to set the initial width (in pixels) of the frame in which the tree is shown.
1359
+ # Minimum value: 0, maximum value: 1500, default value: 250.
1360
+ # This tag requires that the tag GENERATE_HTML is set to YES.
706
1361
 
707
- BINARY_TOC = NO
1362
+ TREEVIEW_WIDTH = 250
708
1363
 
709
- # The TOC_EXPAND flag can be set to YES to add extra items for group members
710
- # to the contents of the HTML help documentation and to the tree view.
1364
+ # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to
1365
+ # external symbols imported via tag files in a separate window.
1366
+ # The default value is: NO.
1367
+ # This tag requires that the tag GENERATE_HTML is set to YES.
711
1368
 
712
- TOC_EXPAND = NO
1369
+ EXT_LINKS_IN_WINDOW = NO
713
1370
 
714
- # The DISABLE_INDEX tag can be used to turn on/off the condensed index at
715
- # top of each HTML page. The value NO (the default) enables the index and
716
- # the value YES disables it.
1371
+ # Use this tag to change the font size of LaTeX formulas included as images in
1372
+ # the HTML documentation. When you change the font size after a successful
1373
+ # doxygen run you need to manually remove any form_*.png images from the HTML
1374
+ # output directory to force them to be regenerated.
1375
+ # Minimum value: 8, maximum value: 50, default value: 10.
1376
+ # This tag requires that the tag GENERATE_HTML is set to YES.
717
1377
 
718
- DISABLE_INDEX = NO
1378
+ FORMULA_FONTSIZE = 10
719
1379
 
720
- # This tag can be used to set the number of enum values (range [1..20])
721
- # that doxygen will group on one line in the generated HTML documentation.
1380
+ # Use the FORMULA_TRANPARENT tag to determine whether or not the images
1381
+ # generated for formulas are transparent PNGs. Transparent PNGs are not
1382
+ # supported properly for IE 6.0, but are supported on all modern browsers.
1383
+ #
1384
+ # Note that when changing this option you need to delete any form_*.png files in
1385
+ # the HTML output directory before the changes have effect.
1386
+ # The default value is: YES.
1387
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1388
+
1389
+ FORMULA_TRANSPARENT = YES
1390
+
1391
+ # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
1392
+ # http://www.mathjax.org) which uses client side Javascript for the rendering
1393
+ # instead of using prerendered bitmaps. Use this if you do not have LaTeX
1394
+ # installed or if you want to formulas look prettier in the HTML output. When
1395
+ # enabled you may also need to install MathJax separately and configure the path
1396
+ # to it using the MATHJAX_RELPATH option.
1397
+ # The default value is: NO.
1398
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1399
+
1400
+ USE_MATHJAX = NO
1401
+
1402
+ # When MathJax is enabled you can set the default output format to be used for
1403
+ # the MathJax output. See the MathJax site (see:
1404
+ # http://docs.mathjax.org/en/latest/output.html) for more details.
1405
+ # Possible values are: HTML-CSS (which is slower, but has the best
1406
+ # compatibility), NativeMML (i.e. MathML) and SVG.
1407
+ # The default value is: HTML-CSS.
1408
+ # This tag requires that the tag USE_MATHJAX is set to YES.
1409
+
1410
+ MATHJAX_FORMAT = HTML-CSS
1411
+
1412
+ # When MathJax is enabled you need to specify the location relative to the HTML
1413
+ # output directory using the MATHJAX_RELPATH option. The destination directory
1414
+ # should contain the MathJax.js script. For instance, if the mathjax directory
1415
+ # is located at the same level as the HTML output directory, then
1416
+ # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
1417
+ # Content Delivery Network so you can quickly see the result without installing
1418
+ # MathJax. However, it is strongly recommended to install a local copy of
1419
+ # MathJax from http://www.mathjax.org before deployment.
1420
+ # The default value is: http://cdn.mathjax.org/mathjax/latest.
1421
+ # This tag requires that the tag USE_MATHJAX is set to YES.
1422
+
1423
+ MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest
1424
+
1425
+ # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
1426
+ # extension names that should be enabled during MathJax rendering. For example
1427
+ # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
1428
+ # This tag requires that the tag USE_MATHJAX is set to YES.
1429
+
1430
+ MATHJAX_EXTENSIONS =
1431
+
1432
+ # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
1433
+ # of code that will be used on startup of the MathJax code. See the MathJax site
1434
+ # (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an
1435
+ # example see the documentation.
1436
+ # This tag requires that the tag USE_MATHJAX is set to YES.
1437
+
1438
+ MATHJAX_CODEFILE =
1439
+
1440
+ # When the SEARCHENGINE tag is enabled doxygen will generate a search box for
1441
+ # the HTML output. The underlying search engine uses javascript and DHTML and
1442
+ # should work on any modern browser. Note that when using HTML help
1443
+ # (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
1444
+ # there is already a search function so this one should typically be disabled.
1445
+ # For large projects the javascript based search engine can be slow, then
1446
+ # enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
1447
+ # search using the keyboard; to jump to the search box use <access key> + S
1448
+ # (what the <access key> is depends on the OS and browser, but it is typically
1449
+ # <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
1450
+ # key> to jump into the search results window, the results can be navigated
1451
+ # using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
1452
+ # the search. The filter options can be selected when the cursor is inside the
1453
+ # search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
1454
+ # to select a filter and <Enter> or <escape> to activate or cancel the filter
1455
+ # option.
1456
+ # The default value is: YES.
1457
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1458
+
1459
+ SEARCHENGINE = YES
1460
+
1461
+ # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
1462
+ # implemented using a web server instead of a web client using Javascript. There
1463
+ # are two flavours of web server based searching depending on the
1464
+ # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for
1465
+ # searching and an index file used by the script. When EXTERNAL_SEARCH is
1466
+ # enabled the indexing and searching needs to be provided by external tools. See
1467
+ # the section "External Indexing and Searching" for details.
1468
+ # The default value is: NO.
1469
+ # This tag requires that the tag SEARCHENGINE is set to YES.
1470
+
1471
+ SERVER_BASED_SEARCH = NO
1472
+
1473
+ # When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
1474
+ # script for searching. Instead the search results are written to an XML file
1475
+ # which needs to be processed by an external indexer. Doxygen will invoke an
1476
+ # external search engine pointed to by the SEARCHENGINE_URL option to obtain the
1477
+ # search results.
1478
+ #
1479
+ # Doxygen ships with an example indexer ( doxyindexer) and search engine
1480
+ # (doxysearch.cgi) which are based on the open source search engine library
1481
+ # Xapian (see: http://xapian.org/).
1482
+ #
1483
+ # See the section "External Indexing and Searching" for details.
1484
+ # The default value is: NO.
1485
+ # This tag requires that the tag SEARCHENGINE is set to YES.
722
1486
 
723
- ENUM_VALUES_PER_LINE = 4
1487
+ EXTERNAL_SEARCH = NO
724
1488
 
725
- # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
726
- # generated containing a tree-like index structure (just like the one that
727
- # is generated for HTML Help). For this to work a browser that supports
728
- # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,
729
- # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
730
- # probably better off using the HTML help feature.
1489
+ # The SEARCHENGINE_URL should point to a search engine hosted by a web server
1490
+ # which will return the search results when EXTERNAL_SEARCH is enabled.
1491
+ #
1492
+ # Doxygen ships with an example indexer ( doxyindexer) and search engine
1493
+ # (doxysearch.cgi) which are based on the open source search engine library
1494
+ # Xapian (see: http://xapian.org/). See the section "External Indexing and
1495
+ # Searching" for details.
1496
+ # This tag requires that the tag SEARCHENGINE is set to YES.
731
1497
 
732
- GENERATE_TREEVIEW = YES
1498
+ SEARCHENGINE_URL =
733
1499
 
734
- # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
735
- # used to set the initial width (in pixels) of the frame in which the tree
736
- # is shown.
1500
+ # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
1501
+ # search data is written to a file for indexing by an external tool. With the
1502
+ # SEARCHDATA_FILE tag the name of this file can be specified.
1503
+ # The default file is: searchdata.xml.
1504
+ # This tag requires that the tag SEARCHENGINE is set to YES.
737
1505
 
738
- TREEVIEW_WIDTH = 250
1506
+ SEARCHDATA_FILE = searchdata.xml
1507
+
1508
+ # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
1509
+ # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
1510
+ # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
1511
+ # projects and redirect the results back to the right project.
1512
+ # This tag requires that the tag SEARCHENGINE is set to YES.
1513
+
1514
+ EXTERNAL_SEARCH_ID =
1515
+
1516
+ # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
1517
+ # projects other than the one defined by this configuration file, but that are
1518
+ # all added to the same external search index. Each project needs to have a
1519
+ # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
1520
+ # to a relative location where the documentation can be found. The format is:
1521
+ # EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
1522
+ # This tag requires that the tag SEARCHENGINE is set to YES.
1523
+
1524
+ EXTRA_SEARCH_MAPPINGS =
739
1525
 
740
1526
  #---------------------------------------------------------------------------
741
- # configuration options related to the LaTeX output
1527
+ # Configuration options related to the LaTeX output
742
1528
  #---------------------------------------------------------------------------
743
1529
 
744
- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
745
- # generate Latex output.
1530
+ # If the GENERATE_LATEX tag is set to YES doxygen will generate LaTeX output.
1531
+ # The default value is: YES.
746
1532
 
747
- # GENERATE_LATEX = YES
1533
+ GENERATE_LATEX = YES
748
1534
 
749
- # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
750
- # If a relative path is entered the value of OUTPUT_DIRECTORY will be
751
- # put in front of it. If left blank `latex' will be used as the default path.
1535
+ # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
1536
+ # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1537
+ # it.
1538
+ # The default directory is: latex.
1539
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
752
1540
 
753
1541
  LATEX_OUTPUT = latex
754
1542
 
755
- # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
756
- # invoked. If left blank `latex' will be used as the default command name.
1543
+ # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
1544
+ # invoked.
1545
+ #
1546
+ # Note that when enabling USE_PDFLATEX this option is only used for generating
1547
+ # bitmaps for formulas in the HTML output, but not in the Makefile that is
1548
+ # written to the output directory.
1549
+ # The default file is: latex.
1550
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
757
1551
 
758
1552
  LATEX_CMD_NAME = latex
759
1553
 
760
- # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
761
- # generate index for LaTeX. If left blank `makeindex' will be used as the
762
- # default command name.
1554
+ # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
1555
+ # index for LaTeX.
1556
+ # The default file is: makeindex.
1557
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
763
1558
 
764
1559
  MAKEINDEX_CMD_NAME = makeindex
765
1560
 
766
- # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
767
- # LaTeX documents. This may be useful for small projects and may help to
768
- # save some trees in general.
1561
+ # If the COMPACT_LATEX tag is set to YES doxygen generates more compact LaTeX
1562
+ # documents. This may be useful for small projects and may help to save some
1563
+ # trees in general.
1564
+ # The default value is: NO.
1565
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
769
1566
 
770
1567
  COMPACT_LATEX = NO
771
1568
 
772
- # The PAPER_TYPE tag can be used to set the paper type that is used
773
- # by the printer. Possible values are: a4, a4wide, letter, legal and
774
- # executive. If left blank a4wide will be used.
775
-
776
- PAPER_TYPE = a4wide
777
-
778
- # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
779
- # packages that should be included in the LaTeX output.
1569
+ # The PAPER_TYPE tag can be used to set the paper type that is used by the
1570
+ # printer.
1571
+ # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
1572
+ # 14 inches) and executive (7.25 x 10.5 inches).
1573
+ # The default value is: a4.
1574
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1575
+
1576
+ PAPER_TYPE = a4
1577
+
1578
+ # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
1579
+ # that should be included in the LaTeX output. To get the times font for
1580
+ # instance you can specify
1581
+ # EXTRA_PACKAGES=times
1582
+ # If left blank no extra packages will be included.
1583
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1584
+
1585
+ EXTRA_PACKAGES =
1586
+
1587
+ # The LATEX_HEADER tag can be used to specify a personal LaTeX header for the
1588
+ # generated LaTeX document. The header should contain everything until the first
1589
+ # chapter. If it is left blank doxygen will generate a standard header. See
1590
+ # section "Doxygen usage" for information on how to let doxygen write the
1591
+ # default header to a separate file.
1592
+ #
1593
+ # Note: Only use a user-defined header if you know what you are doing! The
1594
+ # following commands have a special meaning inside the header: $title,
1595
+ # $datetime, $date, $doxygenversion, $projectname, $projectnumber. Doxygen will
1596
+ # replace them by respectively the title of the page, the current date and time,
1597
+ # only the current date, the version number of doxygen, the project name (see
1598
+ # PROJECT_NAME), or the project number (see PROJECT_NUMBER).
1599
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1600
+
1601
+ LATEX_HEADER =
1602
+
1603
+ # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the
1604
+ # generated LaTeX document. The footer should contain everything after the last
1605
+ # chapter. If it is left blank doxygen will generate a standard footer.
1606
+ #
1607
+ # Note: Only use a user-defined footer if you know what you are doing!
1608
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
780
1609
 
781
- EXTRA_PACKAGES =
1610
+ LATEX_FOOTER =
782
1611
 
783
- # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
784
- # the generated latex document. The header should contain everything until
785
- # the first chapter. If it is left blank doxygen will generate a
786
- # standard header. Notice: only use this tag if you know what you are doing!
1612
+ # The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
1613
+ # other source files which should be copied to the LATEX_OUTPUT output
1614
+ # directory. Note that the files will be copied as-is; there are no commands or
1615
+ # markers available.
1616
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
787
1617
 
788
- LATEX_HEADER =
1618
+ LATEX_EXTRA_FILES =
789
1619
 
790
- # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
791
- # is prepared for conversion to pdf (using ps2pdf). The pdf file will
792
- # contain links (just like the HTML output) instead of page references
793
- # This makes the output suitable for online browsing using a pdf viewer.
1620
+ # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
1621
+ # prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
1622
+ # contain links (just like the HTML output) instead of page references. This
1623
+ # makes the output suitable for online browsing using a PDF viewer.
1624
+ # The default value is: YES.
1625
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
794
1626
 
795
1627
  PDF_HYPERLINKS = NO
796
1628
 
797
- # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
798
- # plain latex in the generated Makefile. Set this option to YES to get a
1629
+ # If the LATEX_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate
1630
+ # the PDF file directly from the LaTeX files. Set this option to YES to get a
799
1631
  # higher quality PDF documentation.
1632
+ # The default value is: YES.
1633
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
800
1634
 
801
1635
  USE_PDFLATEX = NO
802
1636
 
803
- # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
804
- # command to the generated LaTeX files. This will instruct LaTeX to keep
805
- # running if errors occur, instead of asking the user for help.
806
- # This option is also used when generating formulas in HTML.
1637
+ # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
1638
+ # command to the generated LaTeX files. This will instruct LaTeX to keep running
1639
+ # if errors occur, instead of asking the user for help. This option is also used
1640
+ # when generating formulas in HTML.
1641
+ # The default value is: NO.
1642
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
807
1643
 
808
1644
  LATEX_BATCHMODE = NO
809
1645
 
810
- # If LATEX_HIDE_INDICES is set to YES then doxygen will not
811
- # include the index chapters (such as File Index, Compound Index, etc.)
812
- # in the output.
1646
+ # If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
1647
+ # index chapters (such as File Index, Compound Index, etc.) in the output.
1648
+ # The default value is: NO.
1649
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
813
1650
 
814
1651
  LATEX_HIDE_INDICES = NO
815
1652
 
1653
+ # If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
1654
+ # code with syntax highlighting in the LaTeX output.
1655
+ #
1656
+ # Note that which sources are shown also depends on other settings such as
1657
+ # SOURCE_BROWSER.
1658
+ # The default value is: NO.
1659
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1660
+
1661
+ LATEX_SOURCE_CODE = NO
1662
+
1663
+ # The LATEX_BIB_STYLE tag can be used to specify the style to use for the
1664
+ # bibliography, e.g. plainnat, or ieeetr. See
1665
+ # http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
1666
+ # The default value is: plain.
1667
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1668
+
1669
+ LATEX_BIB_STYLE = plain
1670
+
816
1671
  #---------------------------------------------------------------------------
817
- # configuration options related to the RTF output
1672
+ # Configuration options related to the RTF output
818
1673
  #---------------------------------------------------------------------------
819
1674
 
820
- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
821
- # The RTF output is optimized for Word 97 and may not look very pretty with
822
- # other RTF readers or editors.
1675
+ # If the GENERATE_RTF tag is set to YES doxygen will generate RTF output. The
1676
+ # RTF output is optimized for Word 97 and may not look too pretty with other RTF
1677
+ # readers/editors.
1678
+ # The default value is: NO.
823
1679
 
824
- # GENERATE_RTF = NO
1680
+ GENERATE_RTF = NO
825
1681
 
826
- # The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
827
- # If a relative path is entered the value of OUTPUT_DIRECTORY will be
828
- # put in front of it. If left blank `rtf' will be used as the default path.
1682
+ # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
1683
+ # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1684
+ # it.
1685
+ # The default directory is: rtf.
1686
+ # This tag requires that the tag GENERATE_RTF is set to YES.
829
1687
 
830
1688
  RTF_OUTPUT = rtf
831
1689
 
832
- # If the COMPACT_RTF tag is set to YES Doxygen generates more compact
833
- # RTF documents. This may be useful for small projects and may help to
834
- # save some trees in general.
1690
+ # If the COMPACT_RTF tag is set to YES doxygen generates more compact RTF
1691
+ # documents. This may be useful for small projects and may help to save some
1692
+ # trees in general.
1693
+ # The default value is: NO.
1694
+ # This tag requires that the tag GENERATE_RTF is set to YES.
835
1695
 
836
1696
  COMPACT_RTF = NO
837
1697
 
838
- # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
839
- # will contain hyperlink fields. The RTF file will
840
- # contain links (just like the HTML output) instead of page references.
841
- # This makes the output suitable for online browsing using WORD or other
842
- # programs which support those fields.
843
- # Note: wordpad (write) and others do not support links.
1698
+ # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
1699
+ # contain hyperlink fields. The RTF file will contain links (just like the HTML
1700
+ # output) instead of page references. This makes the output suitable for online
1701
+ # browsing using Word or some other Word compatible readers that support those
1702
+ # fields.
1703
+ #
1704
+ # Note: WordPad (write) and others do not support links.
1705
+ # The default value is: NO.
1706
+ # This tag requires that the tag GENERATE_RTF is set to YES.
844
1707
 
845
1708
  RTF_HYPERLINKS = NO
846
1709
 
847
- # Load stylesheet definitions from file. Syntax is similar to doxygen's
848
- # config file, i.e. a series of assignments. You only have to provide
849
- # replacements, missing definitions are set to their default value.
1710
+ # Load stylesheet definitions from file. Syntax is similar to doxygen's config
1711
+ # file, i.e. a series of assignments. You only have to provide replacements,
1712
+ # missing definitions are set to their default value.
1713
+ #
1714
+ # See also section "Doxygen usage" for information on how to generate the
1715
+ # default style sheet that doxygen normally uses.
1716
+ # This tag requires that the tag GENERATE_RTF is set to YES.
850
1717
 
851
- RTF_STYLESHEET_FILE =
1718
+ RTF_STYLESHEET_FILE =
852
1719
 
853
- # Set optional variables used in the generation of an rtf document.
854
- # Syntax is similar to doxygen's config file.
1720
+ # Set optional variables used in the generation of an RTF document. Syntax is
1721
+ # similar to doxygen's config file. A template extensions file can be generated
1722
+ # using doxygen -e rtf extensionFile.
1723
+ # This tag requires that the tag GENERATE_RTF is set to YES.
855
1724
 
856
- RTF_EXTENSIONS_FILE =
1725
+ RTF_EXTENSIONS_FILE =
857
1726
 
858
1727
  #---------------------------------------------------------------------------
859
- # configuration options related to the man page output
1728
+ # Configuration options related to the man page output
860
1729
  #---------------------------------------------------------------------------
861
1730
 
862
- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
863
- # generate man pages
1731
+ # If the GENERATE_MAN tag is set to YES doxygen will generate man pages for
1732
+ # classes and files.
1733
+ # The default value is: NO.
864
1734
 
865
- # GENERATE_MAN = NO
1735
+ GENERATE_MAN = NO
866
1736
 
867
- # The MAN_OUTPUT tag is used to specify where the man pages will be put.
868
- # If a relative path is entered the value of OUTPUT_DIRECTORY will be
869
- # put in front of it. If left blank `man' will be used as the default path.
1737
+ # The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
1738
+ # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1739
+ # it. A directory man3 will be created inside the directory specified by
1740
+ # MAN_OUTPUT.
1741
+ # The default directory is: man.
1742
+ # This tag requires that the tag GENERATE_MAN is set to YES.
870
1743
 
871
1744
  MAN_OUTPUT = man
872
1745
 
873
- # The MAN_EXTENSION tag determines the extension that is added to
874
- # the generated man pages (default is the subroutine's section .3)
1746
+ # The MAN_EXTENSION tag determines the extension that is added to the generated
1747
+ # man pages. In case the manual section does not start with a number, the number
1748
+ # 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
1749
+ # optional.
1750
+ # The default value is: .3.
1751
+ # This tag requires that the tag GENERATE_MAN is set to YES.
875
1752
 
876
1753
  MAN_EXTENSION = .3
877
1754
 
878
- # If the MAN_LINKS tag is set to YES and Doxygen generates man output,
879
- # then it will generate one additional man file for each entity
880
- # documented in the real man page(s). These additional files
881
- # only source the real man page, but without them the man command
882
- # would be unable to find the correct page. The default is NO.
1755
+ # If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
1756
+ # will generate one additional man file for each entity documented in the real
1757
+ # man page(s). These additional files only source the real man page, but without
1758
+ # them the man command would be unable to find the correct page.
1759
+ # The default value is: NO.
1760
+ # This tag requires that the tag GENERATE_MAN is set to YES.
883
1761
 
884
1762
  MAN_LINKS = NO
885
1763
 
886
1764
  #---------------------------------------------------------------------------
887
- # configuration options related to the XML output
1765
+ # Configuration options related to the XML output
888
1766
  #---------------------------------------------------------------------------
889
1767
 
890
- # If the GENERATE_XML tag is set to YES Doxygen will
891
- # generate an XML file that captures the structure of
892
- # the code including all documentation.
1768
+ # If the GENERATE_XML tag is set to YES doxygen will generate an XML file that
1769
+ # captures the structure of the code including all documentation.
1770
+ # The default value is: NO.
893
1771
 
894
- # GENERATE_XML = NO
1772
+ GENERATE_XML = NO
895
1773
 
896
- # The XML_OUTPUT tag is used to specify where the XML pages will be put.
897
- # If a relative path is entered the value of OUTPUT_DIRECTORY will be
898
- # put in front of it. If left blank `xml' will be used as the default path.
1774
+ # The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
1775
+ # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1776
+ # it.
1777
+ # The default directory is: xml.
1778
+ # This tag requires that the tag GENERATE_XML is set to YES.
899
1779
 
900
1780
  XML_OUTPUT = xml
901
1781
 
902
- # The XML_SCHEMA tag can be used to specify an XML schema,
903
- # which can be used by a validating XML parser to check the
904
- # syntax of the XML files.
1782
+ # The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a
1783
+ # validating XML parser to check the syntax of the XML files.
1784
+ # This tag requires that the tag GENERATE_XML is set to YES.
905
1785
 
906
- XML_SCHEMA =
1786
+ XML_SCHEMA =
907
1787
 
908
- # The XML_DTD tag can be used to specify an XML DTD,
909
- # which can be used by a validating XML parser to check the
910
- # syntax of the XML files.
1788
+ # The XML_DTD tag can be used to specify a XML DTD, which can be used by a
1789
+ # validating XML parser to check the syntax of the XML files.
1790
+ # This tag requires that the tag GENERATE_XML is set to YES.
911
1791
 
912
- XML_DTD =
1792
+ XML_DTD =
913
1793
 
914
- # If the XML_PROGRAMLISTING tag is set to YES Doxygen will
915
- # dump the program listings (including syntax highlighting
916
- # and cross-referencing information) to the XML output. Note that
917
- # enabling this will significantly increase the size of the XML output.
1794
+ # If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program
1795
+ # listings (including syntax highlighting and cross-referencing information) to
1796
+ # the XML output. Note that enabling this will significantly increase the size
1797
+ # of the XML output.
1798
+ # The default value is: YES.
1799
+ # This tag requires that the tag GENERATE_XML is set to YES.
918
1800
 
919
1801
  XML_PROGRAMLISTING = YES
920
1802
 
921
1803
  #---------------------------------------------------------------------------
922
- # configuration options for the AutoGen Definitions output
1804
+ # Configuration options related to the DOCBOOK output
923
1805
  #---------------------------------------------------------------------------
924
1806
 
925
- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
926
- # generate an AutoGen Definitions (see autogen.sf.net) file
927
- # that captures the structure of the code including all
928
- # documentation. Note that this feature is still experimental
929
- # and incomplete at the moment.
1807
+ # If the GENERATE_DOCBOOK tag is set to YES doxygen will generate Docbook files
1808
+ # that can be used to generate PDF.
1809
+ # The default value is: NO.
1810
+
1811
+ GENERATE_DOCBOOK = NO
1812
+
1813
+ # The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
1814
+ # If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
1815
+ # front of it.
1816
+ # The default directory is: docbook.
1817
+ # This tag requires that the tag GENERATE_DOCBOOK is set to YES.
1818
+
1819
+ DOCBOOK_OUTPUT = docbook
1820
+
1821
+ #---------------------------------------------------------------------------
1822
+ # Configuration options for the AutoGen Definitions output
1823
+ #---------------------------------------------------------------------------
1824
+
1825
+ # If the GENERATE_AUTOGEN_DEF tag is set to YES doxygen will generate an AutoGen
1826
+ # Definitions (see http://autogen.sf.net) file that captures the structure of
1827
+ # the code including all documentation. Note that this feature is still
1828
+ # experimental and incomplete at the moment.
1829
+ # The default value is: NO.
930
1830
 
931
1831
  GENERATE_AUTOGEN_DEF = NO
932
1832
 
933
1833
  #---------------------------------------------------------------------------
934
- # configuration options related to the Perl module output
1834
+ # Configuration options related to the Perl module output
935
1835
  #---------------------------------------------------------------------------
936
1836
 
937
- # If the GENERATE_PERLMOD tag is set to YES Doxygen will
938
- # generate a Perl module file that captures the structure of
939
- # the code including all documentation. Note that this
940
- # feature is still experimental and incomplete at the
941
- # moment.
1837
+ # If the GENERATE_PERLMOD tag is set to YES doxygen will generate a Perl module
1838
+ # file that captures the structure of the code including all documentation.
1839
+ #
1840
+ # Note that this feature is still experimental and incomplete at the moment.
1841
+ # The default value is: NO.
942
1842
 
943
1843
  GENERATE_PERLMOD = NO
944
1844
 
945
- # If the PERLMOD_LATEX tag is set to YES Doxygen will generate
946
- # the necessary Makefile rules, Perl scripts and LaTeX code to be able
947
- # to generate PDF and DVI output from the Perl module output.
1845
+ # If the PERLMOD_LATEX tag is set to YES doxygen will generate the necessary
1846
+ # Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
1847
+ # output from the Perl module output.
1848
+ # The default value is: NO.
1849
+ # This tag requires that the tag GENERATE_PERLMOD is set to YES.
948
1850
 
949
1851
  PERLMOD_LATEX = NO
950
1852
 
951
- # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
952
- # nicely formatted so it can be parsed by a human reader. This is useful
953
- # if you want to understand what is going on. On the other hand, if this
954
- # tag is set to NO the size of the Perl module output will be much smaller
955
- # and Perl will parse it just the same.
1853
+ # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be nicely
1854
+ # formatted so it can be parsed by a human reader. This is useful if you want to
1855
+ # understand what is going on. On the other hand, if this tag is set to NO the
1856
+ # size of the Perl module output will be much smaller and Perl will parse it
1857
+ # just the same.
1858
+ # The default value is: YES.
1859
+ # This tag requires that the tag GENERATE_PERLMOD is set to YES.
956
1860
 
957
1861
  PERLMOD_PRETTY = YES
958
1862
 
959
- # The names of the make variables in the generated doxyrules.make file
960
- # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
961
- # This is useful so different doxyrules.make files included by the same
962
- # Makefile don't overwrite each other's variables.
1863
+ # The names of the make variables in the generated doxyrules.make file are
1864
+ # prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
1865
+ # so different doxyrules.make files included by the same Makefile don't
1866
+ # overwrite each other's variables.
1867
+ # This tag requires that the tag GENERATE_PERLMOD is set to YES.
963
1868
 
964
- PERLMOD_MAKEVAR_PREFIX =
1869
+ PERLMOD_MAKEVAR_PREFIX =
965
1870
 
966
1871
  #---------------------------------------------------------------------------
967
- # Configuration options related to the preprocessor
1872
+ # Configuration options related to the preprocessor
968
1873
  #---------------------------------------------------------------------------
969
1874
 
970
- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
971
- # evaluate all C-preprocessor directives found in the sources and include
972
- # files.
1875
+ # If the ENABLE_PREPROCESSING tag is set to YES doxygen will evaluate all
1876
+ # C-preprocessor directives found in the sources and include files.
1877
+ # The default value is: YES.
973
1878
 
974
1879
  ENABLE_PREPROCESSING = YES
975
1880
 
976
- # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
977
- # names in the source code. If set to NO (the default) only conditional
978
- # compilation will be performed. Macro expansion can be done in a controlled
979
- # way by setting EXPAND_ONLY_PREDEF to YES.
1881
+ # If the MACRO_EXPANSION tag is set to YES doxygen will expand all macro names
1882
+ # in the source code. If set to NO only conditional compilation will be
1883
+ # performed. Macro expansion can be done in a controlled way by setting
1884
+ # EXPAND_ONLY_PREDEF to YES.
1885
+ # The default value is: NO.
1886
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
980
1887
 
981
1888
  MACRO_EXPANSION = NO
982
1889
 
983
- # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
984
- # then the macro expansion is limited to the macros specified with the
985
- # PREDEFINED and EXPAND_AS_DEFINED tags.
1890
+ # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
1891
+ # the macro expansion is limited to the macros specified with the PREDEFINED and
1892
+ # EXPAND_AS_DEFINED tags.
1893
+ # The default value is: NO.
1894
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
986
1895
 
987
1896
  EXPAND_ONLY_PREDEF = NO
988
1897
 
989
- # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
990
- # in the INCLUDE_PATH (see below) will be search if a #include is found.
1898
+ # If the SEARCH_INCLUDES tag is set to YES the includes files in the
1899
+ # INCLUDE_PATH will be searched if a #include is found.
1900
+ # The default value is: YES.
1901
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
991
1902
 
992
1903
  SEARCH_INCLUDES = YES
993
1904
 
994
- # The INCLUDE_PATH tag can be used to specify one or more directories that
995
- # contain include files that are not input files but should be processed by
996
- # the preprocessor.
1905
+ # The INCLUDE_PATH tag can be used to specify one or more directories that
1906
+ # contain include files that are not input files but should be processed by the
1907
+ # preprocessor.
1908
+ # This tag requires that the tag SEARCH_INCLUDES is set to YES.
997
1909
 
998
- INCLUDE_PATH =
1910
+ INCLUDE_PATH =
999
1911
 
1000
- # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
1001
- # patterns (like *.h and *.hpp) to filter out the header-files in the
1002
- # directories. If left blank, the patterns specified with FILE_PATTERNS will
1003
- # be used.
1912
+ # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
1913
+ # patterns (like *.h and *.hpp) to filter out the header-files in the
1914
+ # directories. If left blank, the patterns specified with FILE_PATTERNS will be
1915
+ # used.
1916
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1004
1917
 
1005
- INCLUDE_FILE_PATTERNS = *.hpp \
1006
- *.ipp
1918
+ INCLUDE_FILE_PATTERNS = *.hpp *.ipp
1007
1919
 
1008
- # The PREDEFINED tag can be used to specify one or more macro names that
1009
- # are defined before the preprocessor is started (similar to the -D option of
1010
- # gcc). The argument of the tag is a list of macros of the form: name
1011
- # or name=definition (no spaces). If the definition and the = are
1012
- # omitted =1 is assumed. To prevent a macro definition from being
1013
- # undefined via #undef or recursively expanded use the := operator
1014
- # instead of the = operator.
1920
+ # The PREDEFINED tag can be used to specify one or more macro names that are
1921
+ # defined before the preprocessor is started (similar to the -D option of e.g.
1922
+ # gcc). The argument of the tag is a list of macros of the form: name or
1923
+ # name=definition (no spaces). If the definition and the "=" are omitted, "=1"
1924
+ # is assumed. To prevent a macro definition from being undefined via #undef or
1925
+ # recursively expanded use the := operator instead of the = operator.
1926
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1015
1927
 
1016
1928
  PREDEFINED = DOXYGEN
1017
1929
 
1018
- # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
1019
- # this tag can be used to specify a list of macro names that should be expanded.
1020
- # The macro definition that is found in the sources will be used.
1021
- # Use the PREDEFINED tag if you want to use a different macro definition.
1930
+ # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
1931
+ # tag can be used to specify a list of macro names that should be expanded. The
1932
+ # macro definition that is found in the sources will be used. Use the PREDEFINED
1933
+ # tag if you want to use a different macro definition that overrules the
1934
+ # definition found in the source code.
1935
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1022
1936
 
1023
- EXPAND_AS_DEFINED =
1937
+ EXPAND_AS_DEFINED =
1024
1938
 
1025
- # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
1026
- # doxygen's preprocessor will remove all function-like macros that are alone
1027
- # on a line, have an all uppercase name, and do not end with a semicolon. Such
1028
- # function macros are typically used for boiler-plate code, and will confuse
1029
- # the parser if not removed.
1939
+ # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
1940
+ # remove all refrences to function-like macros that are alone on a line, have an
1941
+ # all uppercase name, and do not end with a semicolon. Such function macros are
1942
+ # typically used for boiler-plate code, and will confuse the parser if not
1943
+ # removed.
1944
+ # The default value is: YES.
1945
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1030
1946
 
1031
1947
  SKIP_FUNCTION_MACROS = YES
1032
1948
 
1033
1949
  #---------------------------------------------------------------------------
1034
- # Configuration::additions related to external references
1950
+ # Configuration options related to external references
1035
1951
  #---------------------------------------------------------------------------
1036
1952
 
1037
- # The TAGFILES option can be used to specify one or more tagfiles.
1038
- # Optionally an initial location of the external documentation
1039
- # can be added for each tagfile. The format of a tag file without
1040
- # this location is as follows:
1041
- # TAGFILES = file1 file2 ...
1042
- # Adding location for the tag files is done as follows:
1043
- # TAGFILES = file1=loc1 "file2 = loc2" ...
1044
- # where "loc1" and "loc2" can be relative or absolute paths or
1045
- # URLs. If a location is present for each tag, the installdox tool
1046
- # does not have to be run to correct the links.
1047
- # Note that each tag file must have a unique name
1048
- # (where the name does NOT include the path)
1049
- # If a tag file is not located in the directory in which doxygen
1050
- # is run, you must also specify the path to the tagfile here.
1953
+ # The TAGFILES tag can be used to specify one or more tag files. For each tag
1954
+ # file the location of the external documentation should be added. The format of
1955
+ # a tag file without this location is as follows:
1956
+ # TAGFILES = file1 file2 ...
1957
+ # Adding location for the tag files is done as follows:
1958
+ # TAGFILES = file1=loc1 "file2 = loc2" ...
1959
+ # where loc1 and loc2 can be relative or absolute paths or URLs. See the
1960
+ # section "Linking to external documentation" for more information about the use
1961
+ # of tag files.
1962
+ # Note: Each tag file must have an unique name (where the name does NOT include
1963
+ # the path). If a tag file is not located in the directory in which doxygen is
1964
+ # run, you must also specify the path to the tagfile here.
1051
1965
 
1052
- TAGFILES =
1966
+ TAGFILES =
1053
1967
 
1054
- # When a file name is specified after GENERATE_TAGFILE, doxygen will create
1055
- # a tag file that is based on the input files it reads.
1968
+ # When a file name is specified after GENERATE_TAGFILE, doxygen will create a
1969
+ # tag file that is based on the input files it reads. See section "Linking to
1970
+ # external documentation" for more information about the usage of tag files.
1056
1971
 
1057
- GENERATE_TAGFILE =
1972
+ GENERATE_TAGFILE =
1058
1973
 
1059
- # If the ALLEXTERNALS tag is set to YES all external classes will be listed
1060
- # in the class index. If set to NO only the inherited external classes
1061
- # will be listed.
1974
+ # If the ALLEXTERNALS tag is set to YES all external class will be listed in the
1975
+ # class index. If set to NO only the inherited external classes will be listed.
1976
+ # The default value is: NO.
1062
1977
 
1063
1978
  ALLEXTERNALS = NO
1064
1979
 
1065
- # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
1066
- # in the modules index. If set to NO, only the current project's groups will
1067
- # be listed.
1980
+ # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed in
1981
+ # the modules index. If set to NO, only the current project's groups will be
1982
+ # listed.
1983
+ # The default value is: YES.
1068
1984
 
1069
1985
  EXTERNAL_GROUPS = YES
1070
1986
 
1071
- # The PERL_PATH should be the absolute path and name of the perl script
1072
- # interpreter (i.e. the result of `which perl').
1987
+ # If the EXTERNAL_PAGES tag is set to YES all external pages will be listed in
1988
+ # the related pages index. If set to NO, only the current project's pages will
1989
+ # be listed.
1990
+ # The default value is: YES.
1991
+
1992
+ EXTERNAL_PAGES = YES
1073
1993
 
1074
- # PERL_PATH = /usr/bin/perl
1994
+ # The PERL_PATH should be the absolute path and name of the perl script
1995
+ # interpreter (i.e. the result of 'which perl').
1996
+ # The default file (with absolute path) is: /usr/bin/perl.
1997
+
1998
+ PERL_PATH = /usr/bin/perl
1075
1999
 
1076
2000
  #---------------------------------------------------------------------------
1077
- # Configuration options related to the dot tool
2001
+ # Configuration options related to the dot tool
1078
2002
  #---------------------------------------------------------------------------
1079
2003
 
1080
- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
1081
- # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
1082
- # or super classes. Setting the tag to NO turns the diagrams off. Note that
1083
- # this option is superseded by the HAVE_DOT option below. This is only a
1084
- # fallback. It is recommended to install and use dot, since it yields more
2004
+ # If the CLASS_DIAGRAMS tag is set to YES doxygen will generate a class diagram
2005
+ # (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
2006
+ # NO turns the diagrams off. Note that this option also works with HAVE_DOT
2007
+ # disabled, but it is recommended to install and use dot, since it yields more
1085
2008
  # powerful graphs.
2009
+ # The default value is: YES.
1086
2010
 
1087
2011
  CLASS_DIAGRAMS = YES
1088
2012
 
1089
- # If set to YES, the inheritance and collaboration graphs will hide
1090
- # inheritance and usage relations if the target is undocumented
1091
- # or is not a class.
2013
+ # You can define message sequence charts within doxygen comments using the \msc
2014
+ # command. Doxygen will then run the mscgen tool (see:
2015
+ # http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the
2016
+ # documentation. The MSCGEN_PATH tag allows you to specify the directory where
2017
+ # the mscgen tool resides. If left empty the tool is assumed to be found in the
2018
+ # default search path.
2019
+
2020
+ MSCGEN_PATH =
2021
+
2022
+ # If set to YES, the inheritance and collaboration graphs will hide inheritance
2023
+ # and usage relations if the target is undocumented or is not a class.
2024
+ # The default value is: YES.
1092
2025
 
1093
2026
  HIDE_UNDOC_RELATIONS = YES
1094
2027
 
1095
- # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
1096
- # available from the path. This tool is part of Graphviz, a graph visualization
1097
- # toolkit from AT&T and Lucent Bell Labs. The other options in this section
1098
- # have no effect if this option is set to NO (the default)
2028
+ # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
2029
+ # available from the path. This tool is part of Graphviz (see:
2030
+ # http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
2031
+ # Bell Labs. The other options in this section have no effect if this option is
2032
+ # set to NO
2033
+ # The default value is: NO.
2034
+
2035
+ HAVE_DOT = NO
2036
+
2037
+ # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
2038
+ # to run in parallel. When set to 0 doxygen will base this on the number of
2039
+ # processors available in the system. You can set it explicitly to a value
2040
+ # larger than 0 to get control over the balance between CPU load and processing
2041
+ # speed.
2042
+ # Minimum value: 0, maximum value: 32, default value: 0.
2043
+ # This tag requires that the tag HAVE_DOT is set to YES.
2044
+
2045
+ DOT_NUM_THREADS = 0
1099
2046
 
1100
- # HAVE_DOT = YES
2047
+ # When you want a differently looking font n the dot files that doxygen
2048
+ # generates you can specify the font name using DOT_FONTNAME. You need to make
2049
+ # sure dot is able to find the font, which can be done by putting it in a
2050
+ # standard location or by setting the DOTFONTPATH environment variable or by
2051
+ # setting DOT_FONTPATH to the directory containing the font.
2052
+ # The default value is: Helvetica.
2053
+ # This tag requires that the tag HAVE_DOT is set to YES.
1101
2054
 
1102
- # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
1103
- # will generate a graph for each documented class showing the direct and
1104
- # indirect inheritance relations. Setting this tag to YES will force the
1105
- # the CLASS_DIAGRAMS tag to NO.
2055
+ DOT_FONTNAME = Helvetica
2056
+
2057
+ # The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
2058
+ # dot graphs.
2059
+ # Minimum value: 4, maximum value: 24, default value: 10.
2060
+ # This tag requires that the tag HAVE_DOT is set to YES.
2061
+
2062
+ DOT_FONTSIZE = 10
2063
+
2064
+ # By default doxygen will tell dot to use the default font as specified with
2065
+ # DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
2066
+ # the path where dot can find it using this tag.
2067
+ # This tag requires that the tag HAVE_DOT is set to YES.
2068
+
2069
+ DOT_FONTPATH =
2070
+
2071
+ # If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for
2072
+ # each documented class showing the direct and indirect inheritance relations.
2073
+ # Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.
2074
+ # The default value is: YES.
2075
+ # This tag requires that the tag HAVE_DOT is set to YES.
1106
2076
 
1107
2077
  CLASS_GRAPH = YES
1108
2078
 
1109
- # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
1110
- # will generate a graph for each documented class showing the direct and
1111
- # indirect implementation dependencies (inheritance, containment, and
1112
- # class references variables) of the class with other documented classes.
2079
+ # If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a
2080
+ # graph for each documented class showing the direct and indirect implementation
2081
+ # dependencies (inheritance, containment, and class references variables) of the
2082
+ # class with other documented classes.
2083
+ # The default value is: YES.
2084
+ # This tag requires that the tag HAVE_DOT is set to YES.
1113
2085
 
1114
2086
  COLLABORATION_GRAPH = YES
1115
2087
 
1116
- # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
1117
- # will generate a graph for groups, showing the direct groups dependencies
2088
+ # If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for
2089
+ # groups, showing the direct groups dependencies.
2090
+ # The default value is: YES.
2091
+ # This tag requires that the tag HAVE_DOT is set to YES.
1118
2092
 
1119
2093
  GROUP_GRAPHS = YES
1120
2094
 
1121
- # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
1122
- # collaboration diagrams in a style similar to the OMG's Unified Modeling
2095
+ # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
2096
+ # collaboration diagrams in a style similar to the OMG's Unified Modeling
1123
2097
  # Language.
2098
+ # The default value is: NO.
2099
+ # This tag requires that the tag HAVE_DOT is set to YES.
1124
2100
 
1125
2101
  UML_LOOK = NO
1126
2102
 
1127
- # If set to YES, the inheritance and collaboration graphs will show the
1128
- # relations between templates and their instances.
2103
+ # If the UML_LOOK tag is enabled, the fields and methods are shown inside the
2104
+ # class node. If there are many fields or methods and many nodes the graph may
2105
+ # become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
2106
+ # number of items for each type to make the size more manageable. Set this to 0
2107
+ # for no limit. Note that the threshold may be exceeded by 50% before the limit
2108
+ # is enforced. So when you set the threshold to 10, up to 15 fields may appear,
2109
+ # but if the number exceeds 15, the total amount of fields shown is limited to
2110
+ # 10.
2111
+ # Minimum value: 0, maximum value: 100, default value: 10.
2112
+ # This tag requires that the tag HAVE_DOT is set to YES.
2113
+
2114
+ UML_LIMIT_NUM_FIELDS = 10
2115
+
2116
+ # If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
2117
+ # collaboration graphs will show the relations between templates and their
2118
+ # instances.
2119
+ # The default value is: NO.
2120
+ # This tag requires that the tag HAVE_DOT is set to YES.
1129
2121
 
1130
2122
  TEMPLATE_RELATIONS = NO
1131
2123
 
1132
- # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
1133
- # tags are set to YES then doxygen will generate a graph for each documented
1134
- # file showing the direct and indirect include dependencies of the file with
1135
- # other documented files.
2124
+ # If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
2125
+ # YES then doxygen will generate a graph for each documented file showing the
2126
+ # direct and indirect include dependencies of the file with other documented
2127
+ # files.
2128
+ # The default value is: YES.
2129
+ # This tag requires that the tag HAVE_DOT is set to YES.
1136
2130
 
1137
2131
  INCLUDE_GRAPH = YES
1138
2132
 
1139
- # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
1140
- # HAVE_DOT tags are set to YES then doxygen will generate a graph for each
1141
- # documented header file showing the documented files that directly or
1142
- # indirectly include this file.
2133
+ # If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
2134
+ # set to YES then doxygen will generate a graph for each documented file showing
2135
+ # the direct and indirect include dependencies of the file with other documented
2136
+ # files.
2137
+ # The default value is: YES.
2138
+ # This tag requires that the tag HAVE_DOT is set to YES.
1143
2139
 
1144
2140
  INCLUDED_BY_GRAPH = YES
1145
2141
 
1146
- # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
1147
- # generate a call dependency graph for every global function or class method.
1148
- # Note that enabling this option will significantly increase the time of a run.
1149
- # So in most cases it will be better to enable call graphs for selected
2142
+ # If the CALL_GRAPH tag is set to YES then doxygen will generate a call
2143
+ # dependency graph for every global function or class method.
2144
+ #
2145
+ # Note that enabling this option will significantly increase the time of a run.
2146
+ # So in most cases it will be better to enable call graphs for selected
1150
2147
  # functions only using the \callgraph command.
2148
+ # The default value is: NO.
2149
+ # This tag requires that the tag HAVE_DOT is set to YES.
1151
2150
 
1152
2151
  CALL_GRAPH = NO
1153
2152
 
1154
- # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then doxygen will
1155
- # generate a caller dependency graph for every global function or class method.
1156
- # Note that enabling this option will significantly increase the time of a run.
1157
- # So in most cases it will be better to enable caller graphs for selected
2153
+ # If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
2154
+ # dependency graph for every global function or class method.
2155
+ #
2156
+ # Note that enabling this option will significantly increase the time of a run.
2157
+ # So in most cases it will be better to enable caller graphs for selected
1158
2158
  # functions only using the \callergraph command.
2159
+ # The default value is: NO.
2160
+ # This tag requires that the tag HAVE_DOT is set to YES.
1159
2161
 
1160
2162
  CALLER_GRAPH = NO
1161
2163
 
1162
- # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
1163
- # will graphical hierarchy of all classes instead of a textual one.
2164
+ # If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
2165
+ # hierarchy of all classes instead of a textual one.
2166
+ # The default value is: YES.
2167
+ # This tag requires that the tag HAVE_DOT is set to YES.
1164
2168
 
1165
2169
  GRAPHICAL_HIERARCHY = YES
1166
2170
 
1167
- # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
1168
- # then doxygen will show the dependencies a directory has on other directories
1169
- # in a graphical way. The dependency relations are determined by the #include
1170
- # relations between the files in the directories.
2171
+ # If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
2172
+ # dependencies a directory has on other directories in a graphical way. The
2173
+ # dependency relations are determined by the #include relations between the
2174
+ # files in the directories.
2175
+ # The default value is: YES.
2176
+ # This tag requires that the tag HAVE_DOT is set to YES.
1171
2177
 
1172
2178
  DIRECTORY_GRAPH = YES
1173
2179
 
1174
- # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
1175
- # generated by dot. Possible values are png, jpg, or gif
1176
- # If left blank png will be used.
2180
+ # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
2181
+ # generated by dot.
2182
+ # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
2183
+ # to make the SVG files visible in IE 9+ (other browsers do not have this
2184
+ # requirement).
2185
+ # Possible values are: png, jpg, gif and svg.
2186
+ # The default value is: png.
2187
+ # This tag requires that the tag HAVE_DOT is set to YES.
1177
2188
 
1178
2189
  DOT_IMAGE_FORMAT = png
1179
2190
 
1180
- # The tag DOT_PATH can be used to specify the path where the dot tool can be
2191
+ # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
2192
+ # enable generation of interactive SVG images that allow zooming and panning.
2193
+ #
2194
+ # Note that this requires a modern browser other than Internet Explorer. Tested
2195
+ # and working are Firefox, Chrome, Safari, and Opera.
2196
+ # Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
2197
+ # the SVG files visible. Older versions of IE do not have SVG support.
2198
+ # The default value is: NO.
2199
+ # This tag requires that the tag HAVE_DOT is set to YES.
2200
+
2201
+ INTERACTIVE_SVG = NO
2202
+
2203
+ # The DOT_PATH tag can be used to specify the path where the dot tool can be
1181
2204
  # found. If left blank, it is assumed the dot tool can be found in the path.
2205
+ # This tag requires that the tag HAVE_DOT is set to YES.
1182
2206
 
1183
- DOT_PATH =
2207
+ DOT_PATH =
1184
2208
 
1185
- # The DOTFILE_DIRS tag can be used to specify one or more directories that
1186
- # contain dot files that are included in the documentation (see the
1187
- # \dotfile command).
2209
+ # The DOTFILE_DIRS tag can be used to specify one or more directories that
2210
+ # contain dot files that are included in the documentation (see the \dotfile
2211
+ # command).
2212
+ # This tag requires that the tag HAVE_DOT is set to YES.
1188
2213
 
1189
- DOTFILE_DIRS =
2214
+ DOTFILE_DIRS =
1190
2215
 
1191
- # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width
1192
- # (in pixels) of the graphs generated by dot. If a graph becomes larger than
1193
- # this value, doxygen will try to truncate the graph, so that it fits within
1194
- # the specified constraint. Beware that most browsers cannot cope with very
1195
- # large images.
2216
+ # The MSCFILE_DIRS tag can be used to specify one or more directories that
2217
+ # contain msc files that are included in the documentation (see the \mscfile
2218
+ # command).
1196
2219
 
1197
- MAX_DOT_GRAPH_WIDTH = 1024
2220
+ MSCFILE_DIRS =
1198
2221
 
1199
- # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height
1200
- # (in pixels) of the graphs generated by dot. If a graph becomes larger than
1201
- # this value, doxygen will try to truncate the graph, so that it fits within
1202
- # the specified constraint. Beware that most browsers cannot cope with very
1203
- # large images.
2222
+ # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
2223
+ # that will be shown in the graph. If the number of nodes in a graph becomes
2224
+ # larger than this value, doxygen will truncate the graph, which is visualized
2225
+ # by representing a node as a red box. Note that doxygen if the number of direct
2226
+ # children of the root node in a graph is already larger than
2227
+ # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
2228
+ # the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
2229
+ # Minimum value: 0, maximum value: 10000, default value: 50.
2230
+ # This tag requires that the tag HAVE_DOT is set to YES.
1204
2231
 
1205
- MAX_DOT_GRAPH_HEIGHT = 1024
2232
+ DOT_GRAPH_MAX_NODES = 50
1206
2233
 
1207
- # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
1208
- # graphs generated by dot. A depth value of 3 means that only nodes reachable
1209
- # from the root by following a path via at most 3 edges will be shown. Nodes
1210
- # that lay further from the root node will be omitted. Note that setting this
1211
- # option to 1 or 2 may greatly reduce the computation time needed for large
1212
- # code bases. Also note that a graph may be further truncated if the graph's
1213
- # image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH
1214
- # and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default),
1215
- # the graph is not depth-constrained.
2234
+ # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
2235
+ # generated by dot. A depth value of 3 means that only nodes reachable from the
2236
+ # root by following a path via at most 3 edges will be shown. Nodes that lay
2237
+ # further from the root node will be omitted. Note that setting this option to 1
2238
+ # or 2 may greatly reduce the computation time needed for large code bases. Also
2239
+ # note that the size of a graph can be further restricted by
2240
+ # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
2241
+ # Minimum value: 0, maximum value: 1000, default value: 0.
2242
+ # This tag requires that the tag HAVE_DOT is set to YES.
1216
2243
 
1217
2244
  MAX_DOT_GRAPH_DEPTH = 0
1218
2245
 
1219
- # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
1220
- # background. This is disabled by default, which results in a white background.
1221
- # Warning: Depending on the platform used, enabling this option may lead to
1222
- # badly anti-aliased labels on the edges of a graph (i.e. they become hard to
2246
+ # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
2247
+ # background. This is disabled by default, because dot on Windows does not seem
2248
+ # to support this out of the box.
2249
+ #
2250
+ # Warning: Depending on the platform used, enabling this option may lead to
2251
+ # badly anti-aliased labels on the edges of a graph (i.e. they become hard to
1223
2252
  # read).
2253
+ # The default value is: NO.
2254
+ # This tag requires that the tag HAVE_DOT is set to YES.
1224
2255
 
1225
2256
  DOT_TRANSPARENT = NO
1226
2257
 
1227
- # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
1228
- # files in one run (i.e. multiple -o and -T options on the command line). This
1229
- # makes dot run faster, but since only newer versions of dot (>1.8.10)
1230
- # support this, this feature is disabled by default.
2258
+ # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
2259
+ # files in one run (i.e. multiple -o and -T options on the command line). This
2260
+ # makes dot run faster, but since only newer versions of dot (>1.8.10) support
2261
+ # this, this feature is disabled by default.
2262
+ # The default value is: NO.
2263
+ # This tag requires that the tag HAVE_DOT is set to YES.
1231
2264
 
1232
2265
  DOT_MULTI_TARGETS = NO
1233
2266
 
1234
- # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
1235
- # generate a legend page explaining the meaning of the various boxes and
1236
- # arrows in the dot generated graphs.
2267
+ # If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
2268
+ # explaining the meaning of the various boxes and arrows in the dot generated
2269
+ # graphs.
2270
+ # The default value is: YES.
2271
+ # This tag requires that the tag HAVE_DOT is set to YES.
1237
2272
 
1238
2273
  GENERATE_LEGEND = YES
1239
2274
 
1240
- # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
1241
- # remove the intermediate dot files that are used to generate
1242
- # the various graphs.
2275
+ # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot
2276
+ # files that are used to generate the various graphs.
2277
+ # The default value is: YES.
2278
+ # This tag requires that the tag HAVE_DOT is set to YES.
1243
2279
 
1244
2280
  DOT_CLEANUP = YES
1245
-
1246
- #---------------------------------------------------------------------------
1247
- # Configuration::additions related to the search engine
1248
- #---------------------------------------------------------------------------
1249
-
1250
- # The SEARCHENGINE tag specifies whether or not a search engine should be
1251
- # used. If set to NO the values of all tags below this one will be ignored.
1252
-
1253
- SEARCHENGINE = NO