unbound.doxygen revision 1.1.1.1.8.1 1 1.1 christos # Doxyfile 1.7.1
2 1.1 christos
3 1.1 christos # This file describes the settings to be used by the documentation system
4 1.1 christos # doxygen (www.doxygen.org) for a project
5 1.1 christos #
6 1.1 christos # All text after a hash (#) is considered a comment and will be ignored
7 1.1 christos # The format is:
8 1.1 christos # TAG = value [value, ...]
9 1.1 christos # For lists items can also be appended using:
10 1.1 christos # TAG += value [value, ...]
11 1.1 christos # Values that contain spaces should be placed between quotes (" ")
12 1.1 christos
13 1.1 christos #---------------------------------------------------------------------------
14 1.1 christos # Project related configuration options
15 1.1 christos #---------------------------------------------------------------------------
16 1.1 christos
17 1.1 christos # This tag specifies the encoding used for all characters in the config file
18 1.1 christos # that follow. The default is UTF-8 which is also the encoding used for all
19 1.1 christos # text before the first occurrence of this tag. Doxygen uses libiconv (or the
20 1.1 christos # iconv built into libc) for the transcoding. See
21 1.1 christos # http://www.gnu.org/software/libiconv for the list of possible encodings.
22 1.1 christos
23 1.1 christos DOXYFILE_ENCODING = UTF-8
24 1.1 christos
25 1.1 christos # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
26 1.1 christos # by quotes) that should identify the project.
27 1.1 christos
28 1.1 christos PROJECT_NAME = unbound
29 1.1 christos
30 1.1 christos # The PROJECT_NUMBER tag can be used to enter a project or revision number.
31 1.1 christos # This could be handy for archiving the generated documentation or
32 1.1 christos # if some version control system is used.
33 1.1 christos
34 1.1 christos PROJECT_NUMBER = 0.1
35 1.1 christos
36 1.1 christos # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
37 1.1 christos # base path where the generated documentation will be put.
38 1.1 christos # If a relative path is entered, it will be relative to the location
39 1.1 christos # where doxygen was started. If left blank the current directory will be used.
40 1.1 christos
41 1.1 christos OUTPUT_DIRECTORY = doc
42 1.1 christos
43 1.1 christos # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
44 1.1 christos # 4096 sub-directories (in 2 levels) under the output directory of each output
45 1.1 christos # format and will distribute the generated files over these directories.
46 1.1 christos # Enabling this option can be useful when feeding doxygen a huge amount of
47 1.1 christos # source files, where putting all generated files in the same directory would
48 1.1 christos # otherwise cause performance problems for the file system.
49 1.1 christos
50 1.1 christos CREATE_SUBDIRS = NO
51 1.1 christos
52 1.1 christos # The OUTPUT_LANGUAGE tag is used to specify the language in which all
53 1.1 christos # documentation generated by doxygen is written. Doxygen will use this
54 1.1 christos # information to generate all constant output in the proper language.
55 1.1 christos # The default language is English, other supported languages are:
56 1.1 christos # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
57 1.1 christos # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German,
58 1.1 christos # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English
59 1.1 christos # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian,
60 1.1 christos # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak,
61 1.1 christos # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.
62 1.1 christos
63 1.1 christos OUTPUT_LANGUAGE = English
64 1.1 christos
65 1.1 christos # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
66 1.1 christos # include brief member descriptions after the members that are listed in
67 1.1 christos # the file and class documentation (similar to JavaDoc).
68 1.1 christos # Set to NO to disable this.
69 1.1 christos
70 1.1 christos BRIEF_MEMBER_DESC = YES
71 1.1 christos
72 1.1 christos # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
73 1.1 christos # the brief description of a member or function before the detailed description.
74 1.1 christos # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
75 1.1 christos # brief descriptions will be completely suppressed.
76 1.1 christos
77 1.1 christos REPEAT_BRIEF = YES
78 1.1 christos
79 1.1 christos # This tag implements a quasi-intelligent brief description abbreviator
80 1.1 christos # that is used to form the text in various listings. Each string
81 1.1 christos # in this list, if found as the leading text of the brief description, will be
82 1.1 christos # stripped from the text and the result after processing the whole list, is
83 1.1 christos # used as the annotated text. Otherwise, the brief description is used as-is.
84 1.1 christos # If left blank, the following values are used ("$name" is automatically
85 1.1 christos # replaced with the name of the entity): "The $name class" "The $name widget"
86 1.1 christos # "The $name file" "is" "provides" "specifies" "contains"
87 1.1 christos # "represents" "a" "an" "the"
88 1.1 christos
89 1.1 christos ABBREVIATE_BRIEF =
90 1.1 christos
91 1.1 christos # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
92 1.1 christos # Doxygen will generate a detailed section even if there is only a brief
93 1.1 christos # description.
94 1.1 christos
95 1.1 christos ALWAYS_DETAILED_SEC = NO
96 1.1 christos
97 1.1 christos # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
98 1.1 christos # inherited members of a class in the documentation of that class as if those
99 1.1 christos # members were ordinary class members. Constructors, destructors and assignment
100 1.1 christos # operators of the base classes will not be shown.
101 1.1 christos
102 1.1 christos INLINE_INHERITED_MEMB = NO
103 1.1 christos
104 1.1 christos # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
105 1.1 christos # path before files name in the file list and in the header files. If set
106 1.1 christos # to NO the shortest path that makes the file name unique will be used.
107 1.1 christos
108 1.1 christos FULL_PATH_NAMES = YES
109 1.1 christos
110 1.1 christos # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
111 1.1 christos # can be used to strip a user-defined part of the path. Stripping is
112 1.1 christos # only done if one of the specified strings matches the left-hand part of
113 1.1 christos # the path. The tag can be used to show relative paths in the file list.
114 1.1 christos # If left blank the directory from which doxygen is run is used as the
115 1.1 christos # path to strip.
116 1.1 christos
117 1.1 christos STRIP_FROM_PATH =
118 1.1 christos
119 1.1 christos # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
120 1.1 christos # the path mentioned in the documentation of a class, which tells
121 1.1 christos # the reader which header file to include in order to use a class.
122 1.1 christos # If left blank only the name of the header file containing the class
123 1.1 christos # definition is used. Otherwise one should specify the include paths that
124 1.1 christos # are normally passed to the compiler using the -I flag.
125 1.1 christos
126 1.1 christos STRIP_FROM_INC_PATH =
127 1.1 christos
128 1.1 christos # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
129 1.1 christos # (but less readable) file names. This can be useful is your file systems
130 1.1 christos # doesn't support long names like on DOS, Mac, or CD-ROM.
131 1.1 christos
132 1.1 christos SHORT_NAMES = NO
133 1.1 christos
134 1.1 christos # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
135 1.1 christos # will interpret the first line (until the first dot) of a JavaDoc-style
136 1.1 christos # comment as the brief description. If set to NO, the JavaDoc
137 1.1 christos # comments will behave just like regular Qt-style comments
138 1.1 christos # (thus requiring an explicit @brief command for a brief description.)
139 1.1 christos
140 1.1 christos JAVADOC_AUTOBRIEF = YES
141 1.1 christos
142 1.1 christos # If the QT_AUTOBRIEF tag is set to YES then Doxygen will
143 1.1 christos # interpret the first line (until the first dot) of a Qt-style
144 1.1 christos # comment as the brief description. If set to NO, the comments
145 1.1 christos # will behave just like regular Qt-style comments (thus requiring
146 1.1 christos # an explicit \brief command for a brief description.)
147 1.1 christos
148 1.1 christos QT_AUTOBRIEF = NO
149 1.1 christos
150 1.1 christos # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
151 1.1 christos # treat a multi-line C++ special comment block (i.e. a block of //! or ///
152 1.1 christos # comments) as a brief description. This used to be the default behaviour.
153 1.1 christos # The new default is to treat a multi-line C++ comment block as a detailed
154 1.1 christos # description. Set this tag to YES if you prefer the old behaviour instead.
155 1.1 christos
156 1.1 christos MULTILINE_CPP_IS_BRIEF = NO
157 1.1 christos
158 1.1 christos # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
159 1.1 christos # member inherits the documentation from any documented member that it
160 1.1 christos # re-implements.
161 1.1 christos
162 1.1 christos INHERIT_DOCS = YES
163 1.1 christos
164 1.1 christos # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
165 1.1 christos # a new page for each member. If set to NO, the documentation of a member will
166 1.1 christos # be part of the file/class/namespace that contains it.
167 1.1 christos
168 1.1 christos SEPARATE_MEMBER_PAGES = NO
169 1.1 christos
170 1.1 christos # The TAB_SIZE tag can be used to set the number of spaces in a tab.
171 1.1 christos # Doxygen uses this value to replace tabs by spaces in code fragments.
172 1.1 christos
173 1.1 christos TAB_SIZE = 8
174 1.1 christos
175 1.1 christos # This tag can be used to specify a number of aliases that acts
176 1.1 christos # as commands in the documentation. An alias has the form "name=value".
177 1.1 christos # For example adding "sideeffect=\par Side Effects:\n" will allow you to
178 1.1 christos # put the command \sideeffect (or @sideeffect) in the documentation, which
179 1.1 christos # will result in a user-defined paragraph with heading "Side Effects:".
180 1.1 christos # You can put \n's in the value part of an alias to insert newlines.
181 1.1 christos
182 1.1 christos ALIASES =
183 1.1 christos
184 1.1 christos # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
185 1.1 christos # sources only. Doxygen will then generate output that is more tailored for C.
186 1.1 christos # For instance, some of the names that are used will be different. The list
187 1.1 christos # of all members will be omitted, etc.
188 1.1 christos
189 1.1 christos OPTIMIZE_OUTPUT_FOR_C = YES
190 1.1 christos
191 1.1 christos # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
192 1.1 christos # sources only. Doxygen will then generate output that is more tailored for
193 1.1 christos # Java. For instance, namespaces will be presented as packages, qualified
194 1.1 christos # scopes will look different, etc.
195 1.1 christos
196 1.1 christos OPTIMIZE_OUTPUT_JAVA = NO
197 1.1 christos
198 1.1 christos # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
199 1.1 christos # sources only. Doxygen will then generate output that is more tailored for
200 1.1 christos # Fortran.
201 1.1 christos
202 1.1 christos OPTIMIZE_FOR_FORTRAN = NO
203 1.1 christos
204 1.1 christos # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
205 1.1 christos # sources. Doxygen will then generate output that is tailored for
206 1.1 christos # VHDL.
207 1.1 christos
208 1.1 christos OPTIMIZE_OUTPUT_VHDL = NO
209 1.1 christos
210 1.1 christos # Doxygen selects the parser to use depending on the extension of the files it
211 1.1 christos # parses. With this tag you can assign which parser to use for a given extension.
212 1.1 christos # Doxygen has a built-in mapping, but you can override or extend it using this
213 1.1 christos # tag. The format is ext=language, where ext is a file extension, and language
214 1.1 christos # is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C,
215 1.1 christos # C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make
216 1.1 christos # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
217 1.1 christos # (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions
218 1.1 christos # you also need to set FILE_PATTERNS otherwise the files are not read by doxygen.
219 1.1 christos
220 1.1 christos EXTENSION_MAPPING =
221 1.1 christos
222 1.1 christos # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
223 1.1 christos # to include (a tag file for) the STL sources as input, then you should
224 1.1 christos # set this tag to YES in order to let doxygen match functions declarations and
225 1.1 christos # definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
226 1.1 christos # func(std::string) {}). This also make the inheritance and collaboration
227 1.1 christos # diagrams that involve STL classes more complete and accurate.
228 1.1 christos
229 1.1 christos BUILTIN_STL_SUPPORT = NO
230 1.1 christos
231 1.1 christos # If you use Microsoft's C++/CLI language, you should set this option to YES to
232 1.1 christos # enable parsing support.
233 1.1 christos
234 1.1 christos CPP_CLI_SUPPORT = NO
235 1.1 christos
236 1.1 christos # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
237 1.1 christos # Doxygen will parse them like normal C++ but will assume all classes use public
238 1.1 christos # instead of private inheritance when no explicit protection keyword is present.
239 1.1 christos
240 1.1 christos SIP_SUPPORT = NO
241 1.1 christos
242 1.1 christos # For Microsoft's IDL there are propget and propput attributes to indicate getter
243 1.1 christos # and setter methods for a property. Setting this option to YES (the default)
244 1.1 christos # will make doxygen to replace the get and set methods by a property in the
245 1.1 christos # documentation. This will only work if the methods are indeed getting or
246 1.1 christos # setting a simple type. If this is not the case, or you want to show the
247 1.1 christos # methods anyway, you should set this option to NO.
248 1.1 christos
249 1.1 christos IDL_PROPERTY_SUPPORT = YES
250 1.1 christos
251 1.1 christos # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
252 1.1 christos # tag is set to YES, then doxygen will reuse the documentation of the first
253 1.1 christos # member in the group (if any) for the other members of the group. By default
254 1.1 christos # all members of a group must be documented explicitly.
255 1.1 christos
256 1.1 christos DISTRIBUTE_GROUP_DOC = NO
257 1.1 christos
258 1.1 christos # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
259 1.1 christos # the same type (for instance a group of public functions) to be put as a
260 1.1 christos # subgroup of that type (e.g. under the Public Functions section). Set it to
261 1.1 christos # NO to prevent subgrouping. Alternatively, this can be done per class using
262 1.1 christos # the \nosubgrouping command.
263 1.1 christos
264 1.1 christos SUBGROUPING = YES
265 1.1 christos
266 1.1 christos # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
267 1.1 christos # is documented as struct, union, or enum with the name of the typedef. So
268 1.1 christos # typedef struct TypeS {} TypeT, will appear in the documentation as a struct
269 1.1 christos # with name TypeT. When disabled the typedef will appear as a member of a file,
270 1.1 christos # namespace, or class. And the struct will be named TypeS. This can typically
271 1.1 christos # be useful for C code in case the coding convention dictates that all compound
272 1.1 christos # types are typedef'ed and only the typedef is referenced, never the tag name.
273 1.1 christos
274 1.1 christos TYPEDEF_HIDES_STRUCT = NO
275 1.1 christos
276 1.1 christos # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to
277 1.1 christos # determine which symbols to keep in memory and which to flush to disk.
278 1.1 christos # When the cache is full, less often used symbols will be written to disk.
279 1.1 christos # For small to medium size projects (<1000 input files) the default value is
280 1.1 christos # probably good enough. For larger projects a too small cache size can cause
281 1.1 christos # doxygen to be busy swapping symbols to and from disk most of the time
282 1.1 christos # causing a significant performance penality.
283 1.1 christos # If the system has enough physical memory increasing the cache will improve the
284 1.1 christos # performance by keeping more symbols in memory. Note that the value works on
285 1.1 christos # a logarithmic scale so increasing the size by one will rougly double the
286 1.1 christos # memory usage. The cache size is given by this formula:
287 1.1 christos # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
288 1.1 christos # corresponding to a cache size of 2^16 = 65536 symbols
289 1.1 christos
290 1.1 christos #SYMBOL_CACHE_SIZE = 0
291 1.1 christos
292 1.1 christos #---------------------------------------------------------------------------
293 1.1 christos # Build related configuration options
294 1.1 christos #---------------------------------------------------------------------------
295 1.1 christos
296 1.1 christos # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
297 1.1 christos # documentation are documented, even if no documentation was available.
298 1.1 christos # Private class members and static file members will be hidden unless
299 1.1 christos # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
300 1.1 christos
301 1.1 christos EXTRACT_ALL = NO
302 1.1 christos
303 1.1 christos # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
304 1.1 christos # will be included in the documentation.
305 1.1 christos
306 1.1 christos EXTRACT_PRIVATE = YES
307 1.1 christos
308 1.1 christos # If the EXTRACT_STATIC tag is set to YES all static members of a file
309 1.1 christos # will be included in the documentation.
310 1.1 christos
311 1.1 christos EXTRACT_STATIC = YES
312 1.1 christos
313 1.1 christos # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
314 1.1 christos # defined locally in source files will be included in the documentation.
315 1.1 christos # If set to NO only classes defined in header files are included.
316 1.1 christos
317 1.1 christos EXTRACT_LOCAL_CLASSES = YES
318 1.1 christos
319 1.1 christos # This flag is only useful for Objective-C code. When set to YES local
320 1.1 christos # methods, which are defined in the implementation section but not in
321 1.1 christos # the interface are included in the documentation.
322 1.1 christos # If set to NO (the default) only methods in the interface are included.
323 1.1 christos
324 1.1 christos EXTRACT_LOCAL_METHODS = YES
325 1.1 christos
326 1.1 christos # If this flag is set to YES, the members of anonymous namespaces will be
327 1.1 christos # extracted and appear in the documentation as a namespace called
328 1.1 christos # 'anonymous_namespace{file}', where file will be replaced with the base
329 1.1 christos # name of the file that contains the anonymous namespace. By default
330 1.1 christos # anonymous namespace are hidden.
331 1.1 christos
332 1.1 christos EXTRACT_ANON_NSPACES = NO
333 1.1 christos
334 1.1 christos # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
335 1.1 christos # undocumented members of documented classes, files or namespaces.
336 1.1 christos # If set to NO (the default) these members will be included in the
337 1.1 christos # various overviews, but no documentation section is generated.
338 1.1 christos # This option has no effect if EXTRACT_ALL is enabled.
339 1.1 christos
340 1.1 christos HIDE_UNDOC_MEMBERS = NO
341 1.1 christos
342 1.1 christos # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
343 1.1 christos # undocumented classes that are normally visible in the class hierarchy.
344 1.1 christos # If set to NO (the default) these classes will be included in the various
345 1.1 christos # overviews. This option has no effect if EXTRACT_ALL is enabled.
346 1.1 christos
347 1.1 christos HIDE_UNDOC_CLASSES = NO
348 1.1 christos
349 1.1 christos # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
350 1.1 christos # friend (class|struct|union) declarations.
351 1.1 christos # If set to NO (the default) these declarations will be included in the
352 1.1 christos # documentation.
353 1.1 christos
354 1.1 christos HIDE_FRIEND_COMPOUNDS = NO
355 1.1 christos
356 1.1 christos # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
357 1.1 christos # documentation blocks found inside the body of a function.
358 1.1 christos # If set to NO (the default) these blocks will be appended to the
359 1.1 christos # function's detailed documentation block.
360 1.1 christos
361 1.1 christos HIDE_IN_BODY_DOCS = NO
362 1.1 christos
363 1.1 christos # The INTERNAL_DOCS tag determines if documentation
364 1.1 christos # that is typed after a \internal command is included. If the tag is set
365 1.1 christos # to NO (the default) then the documentation will be excluded.
366 1.1 christos # Set it to YES to include the internal documentation.
367 1.1 christos
368 1.1 christos INTERNAL_DOCS = NO
369 1.1 christos
370 1.1 christos # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
371 1.1 christos # file names in lower-case letters. If set to YES upper-case letters are also
372 1.1 christos # allowed. This is useful if you have classes or files whose names only differ
373 1.1 christos # in case and if your file system supports case sensitive file names. Windows
374 1.1 christos # and Mac users are advised to set this option to NO.
375 1.1 christos
376 1.1 christos CASE_SENSE_NAMES = YES
377 1.1 christos
378 1.1 christos # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
379 1.1 christos # will show members with their full class and namespace scopes in the
380 1.1 christos # documentation. If set to YES the scope will be hidden.
381 1.1 christos
382 1.1 christos HIDE_SCOPE_NAMES = NO
383 1.1 christos
384 1.1 christos # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
385 1.1 christos # will put a list of the files that are included by a file in the documentation
386 1.1 christos # of that file.
387 1.1 christos
388 1.1 christos SHOW_INCLUDE_FILES = YES
389 1.1 christos
390 1.1 christos # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen
391 1.1 christos # will list include files with double quotes in the documentation
392 1.1 christos # rather than with sharp brackets.
393 1.1 christos
394 1.1 christos FORCE_LOCAL_INCLUDES = NO
395 1.1 christos
396 1.1 christos # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
397 1.1 christos # is inserted in the documentation for inline members.
398 1.1 christos
399 1.1 christos INLINE_INFO = YES
400 1.1 christos
401 1.1 christos # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
402 1.1 christos # will sort the (detailed) documentation of file and class members
403 1.1 christos # alphabetically by member name. If set to NO the members will appear in
404 1.1 christos # declaration order.
405 1.1 christos
406 1.1 christos SORT_MEMBER_DOCS = NO
407 1.1 christos
408 1.1 christos # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
409 1.1 christos # brief documentation of file, namespace and class members alphabetically
410 1.1 christos # by member name. If set to NO (the default) the members will appear in
411 1.1 christos # declaration order.
412 1.1 christos
413 1.1 christos SORT_BRIEF_DOCS = NO
414 1.1 christos
415 1.1 christos # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen
416 1.1 christos # will sort the (brief and detailed) documentation of class members so that
417 1.1 christos # constructors and destructors are listed first. If set to NO (the default)
418 1.1 christos # the constructors will appear in the respective orders defined by
419 1.1 christos # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS.
420 1.1 christos # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO
421 1.1 christos # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.
422 1.1 christos
423 1.1 christos SORT_MEMBERS_CTORS_1ST = NO
424 1.1 christos
425 1.1 christos # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
426 1.1 christos # hierarchy of group names into alphabetical order. If set to NO (the default)
427 1.1 christos # the group names will appear in their defined order.
428 1.1 christos
429 1.1 christos SORT_GROUP_NAMES = NO
430 1.1 christos
431 1.1 christos # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
432 1.1 christos # sorted by fully-qualified names, including namespaces. If set to
433 1.1 christos # NO (the default), the class list will be sorted only by class name,
434 1.1 christos # not including the namespace part.
435 1.1 christos # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
436 1.1 christos # Note: This option applies only to the class list, not to the
437 1.1 christos # alphabetical list.
438 1.1 christos
439 1.1 christos SORT_BY_SCOPE_NAME = NO
440 1.1 christos
441 1.1 christos # The GENERATE_TODOLIST tag can be used to enable (YES) or
442 1.1 christos # disable (NO) the todo list. This list is created by putting \todo
443 1.1 christos # commands in the documentation.
444 1.1 christos
445 1.1 christos GENERATE_TODOLIST = YES
446 1.1 christos
447 1.1 christos # The GENERATE_TESTLIST tag can be used to enable (YES) or
448 1.1 christos # disable (NO) the test list. This list is created by putting \test
449 1.1 christos # commands in the documentation.
450 1.1 christos
451 1.1 christos GENERATE_TESTLIST = YES
452 1.1 christos
453 1.1 christos # The GENERATE_BUGLIST tag can be used to enable (YES) or
454 1.1 christos # disable (NO) the bug list. This list is created by putting \bug
455 1.1 christos # commands in the documentation.
456 1.1 christos
457 1.1 christos GENERATE_BUGLIST = YES
458 1.1 christos
459 1.1 christos # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
460 1.1 christos # disable (NO) the deprecated list. This list is created by putting
461 1.1 christos # \deprecated commands in the documentation.
462 1.1 christos
463 1.1 christos GENERATE_DEPRECATEDLIST= YES
464 1.1 christos
465 1.1 christos # The ENABLED_SECTIONS tag can be used to enable conditional
466 1.1 christos # documentation sections, marked by \if sectionname ... \endif.
467 1.1 christos
468 1.1 christos ENABLED_SECTIONS =
469 1.1 christos
470 1.1 christos # The MAX_INITIALIZER_LINES tag determines the maximum number of lines
471 1.1 christos # the initial value of a variable or define consists of for it to appear in
472 1.1 christos # the documentation. If the initializer consists of more lines than specified
473 1.1 christos # here it will be hidden. Use a value of 0 to hide initializers completely.
474 1.1 christos # The appearance of the initializer of individual variables and defines in the
475 1.1 christos # documentation can be controlled using \showinitializer or \hideinitializer
476 1.1 christos # command in the documentation regardless of this setting.
477 1.1 christos
478 1.1 christos MAX_INITIALIZER_LINES = 30
479 1.1 christos
480 1.1 christos # Set the SHOW_USED_FILES tag to NO to disable the list of files generated
481 1.1 christos # at the bottom of the documentation of classes and structs. If set to YES the
482 1.1 christos # list will mention the files that were used to generate the documentation.
483 1.1 christos
484 1.1 christos SHOW_USED_FILES = YES
485 1.1 christos
486 1.1 christos # If the sources in your project are distributed over multiple directories
487 1.1 christos # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
488 1.1 christos # in the documentation. The default is NO.
489 1.1 christos
490 1.1 christos #SHOW_DIRECTORIES = YES
491 1.1 christos
492 1.1 christos # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
493 1.1 christos # This will remove the Files entry from the Quick Index and from the
494 1.1 christos # Folder Tree View (if specified). The default is YES.
495 1.1 christos
496 1.1 christos SHOW_FILES = YES
497 1.1 christos
498 1.1 christos # Set the SHOW_NAMESPACES tag to NO to disable the generation of the
499 1.1 christos # Namespaces page.
500 1.1 christos # This will remove the Namespaces entry from the Quick Index
501 1.1 christos # and from the Folder Tree View (if specified). The default is YES.
502 1.1 christos
503 1.1 christos SHOW_NAMESPACES = YES
504 1.1 christos
505 1.1 christos # The FILE_VERSION_FILTER tag can be used to specify a program or script that
506 1.1 christos # doxygen should invoke to get the current version for each file (typically from
507 1.1 christos # the version control system). Doxygen will invoke the program by executing (via
508 1.1 christos # popen()) the command <command> <input-file>, where <command> is the value of
509 1.1 christos # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
510 1.1 christos # provided by doxygen. Whatever the program writes to standard output
511 1.1 christos # is used as the file version. See the manual for examples.
512 1.1 christos
513 1.1 christos FILE_VERSION_FILTER =
514 1.1 christos
515 1.1 christos # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
516 1.1 christos # by doxygen. The layout file controls the global structure of the generated
517 1.1 christos # output files in an output format independent way. The create the layout file
518 1.1 christos # that represents doxygen's defaults, run doxygen with the -l option.
519 1.1 christos # You can optionally specify a file name after the option, if omitted
520 1.1 christos # DoxygenLayout.xml will be used as the name of the layout file.
521 1.1 christos
522 1.1 christos LAYOUT_FILE =
523 1.1 christos
524 1.1 christos #---------------------------------------------------------------------------
525 1.1 christos # configuration options related to warning and progress messages
526 1.1 christos #---------------------------------------------------------------------------
527 1.1 christos
528 1.1 christos # The QUIET tag can be used to turn on/off the messages that are generated
529 1.1 christos # by doxygen. Possible values are YES and NO. If left blank NO is used.
530 1.1 christos
531 1.1 christos QUIET = YES
532 1.1 christos
533 1.1 christos # The WARNINGS tag can be used to turn on/off the warning messages that are
534 1.1 christos # generated by doxygen. Possible values are YES and NO. If left blank
535 1.1 christos # NO is used.
536 1.1 christos
537 1.1 christos WARNINGS = YES
538 1.1 christos
539 1.1 christos # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
540 1.1 christos # for undocumented members. If EXTRACT_ALL is set to YES then this flag will
541 1.1 christos # automatically be disabled.
542 1.1 christos
543 1.1 christos WARN_IF_UNDOCUMENTED = NO
544 1.1 christos
545 1.1 christos # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
546 1.1 christos # potential errors in the documentation, such as not documenting some
547 1.1 christos # parameters in a documented function, or documenting parameters that
548 1.1 christos # don't exist or using markup commands wrongly.
549 1.1 christos
550 1.1 christos WARN_IF_DOC_ERROR = YES
551 1.1 christos
552 1.1 christos # This WARN_NO_PARAMDOC option can be abled to get warnings for
553 1.1 christos # functions that are documented, but have no documentation for their parameters
554 1.1 christos # or return value. If set to NO (the default) doxygen will only warn about
555 1.1 christos # wrong or incomplete parameter documentation, but not about the absence of
556 1.1 christos # documentation.
557 1.1 christos
558 1.1 christos WARN_NO_PARAMDOC = YES
559 1.1 christos
560 1.1 christos # The WARN_FORMAT tag determines the format of the warning messages that
561 1.1 christos # doxygen can produce. The string should contain the $file, $line, and $text
562 1.1 christos # tags, which will be replaced by the file and line number from which the
563 1.1 christos # warning originated and the warning text. Optionally the format may contain
564 1.1 christos # $version, which will be replaced by the version of the file (if it could
565 1.1 christos # be obtained via FILE_VERSION_FILTER)
566 1.1 christos
567 1.1 christos WARN_FORMAT = "$file:$line: $text"
568 1.1 christos
569 1.1 christos # The WARN_LOGFILE tag can be used to specify a file to which warning
570 1.1 christos # and error messages should be written. If left blank the output is written
571 1.1 christos # to stderr.
572 1.1 christos
573 1.1 christos WARN_LOGFILE =
574 1.1 christos
575 1.1 christos #---------------------------------------------------------------------------
576 1.1 christos # configuration options related to the input files
577 1.1 christos #---------------------------------------------------------------------------
578 1.1 christos
579 1.1 christos # The INPUT tag can be used to specify the files and/or directories that contain
580 1.1 christos # documented source files. You may enter file names like "myfile.cpp" or
581 1.1 christos # directories like "/usr/src/myproject". Separate the files or directories
582 1.1 christos # with spaces.
583 1.1 christos
584 1.1 christos INPUT = .
585 1.1 christos
586 1.1 christos # This tag can be used to specify the character encoding of the source files
587 1.1 christos # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
588 1.1 christos # also the default input encoding. Doxygen uses libiconv (or the iconv built
589 1.1 christos # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for
590 1.1 christos # the list of possible encodings.
591 1.1 christos
592 1.1 christos INPUT_ENCODING = UTF-8
593 1.1 christos
594 1.1 christos # If the value of the INPUT tag contains directories, you can use the
595 1.1 christos # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
596 1.1 christos # and *.h) to filter out the source-files in the directories. If left
597 1.1 christos # blank the following patterns are tested:
598 1.1 christos # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
599 1.1 christos # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
600 1.1 christos
601 1.1 christos FILE_PATTERNS =
602 1.1 christos
603 1.1 christos # The RECURSIVE tag can be used to turn specify whether or not subdirectories
604 1.1 christos # should be searched for input files as well. Possible values are YES and NO.
605 1.1 christos # If left blank NO is used.
606 1.1 christos
607 1.1 christos RECURSIVE = YES
608 1.1 christos
609 1.1 christos # The EXCLUDE tag can be used to specify files and/or directories that should
610 1.1 christos # excluded from the INPUT source files. This way you can easily exclude a
611 1.1 christos # subdirectory from a directory tree whose root is specified with the INPUT tag.
612 1.1 christos
613 1.1 christos EXCLUDE = ./build \
614 1.1 christos ./compat \
615 1.1 christos util/configparser.c \
616 1.1 christos util/configparser.h \
617 1.1 christos util/configlexer.c \
618 1.1 christos util/locks.h \
619 1.1 christos pythonmod/unboundmodule.py \
620 1.1 christos pythonmod/interface.h \
621 1.1 christos pythonmod/examples/resgen.py \
622 1.1 christos pythonmod/examples/resmod.py \
623 1.1 christos pythonmod/examples/resip.py \
624 1.1 christos libunbound/python/unbound.py \
625 1.1 christos libunbound/python/libunbound_wrap.c \
626 1.1.1.1.8.1 msaitoh ./ldns-src \
627 1.1.1.1.8.1 msaitoh doc/control_proto_spec.txt \
628 1.1.1.1.8.1 msaitoh doc/requirements.txt
629 1.1 christos
630 1.1 christos # The EXCLUDE_SYMLINKS tag can be used select whether or not files or
631 1.1 christos # directories that are symbolic links (a Unix filesystem feature) are excluded
632 1.1 christos # from the input.
633 1.1 christos
634 1.1 christos EXCLUDE_SYMLINKS = NO
635 1.1 christos
636 1.1 christos # If the value of the INPUT tag contains directories, you can use the
637 1.1 christos # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
638 1.1 christos # certain files from those directories. Note that the wildcards are matched
639 1.1 christos # against the file with absolute path, so to exclude all test directories
640 1.1 christos # for example use the pattern */test/*
641 1.1 christos
642 1.1 christos EXCLUDE_PATTERNS =
643 1.1 christos
644 1.1 christos # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
645 1.1 christos # (namespaces, classes, functions, etc.) that should be excluded from the
646 1.1 christos # output. The symbol name can be a fully qualified name, a word, or if the
647 1.1 christos # wildcard * is used, a substring. Examples: ANamespace, AClass,
648 1.1 christos # AClass::ANamespace, ANamespace::*Test
649 1.1 christos
650 1.1 christos EXCLUDE_SYMBOLS =
651 1.1 christos
652 1.1 christos # The EXAMPLE_PATH tag can be used to specify one or more files or
653 1.1 christos # directories that contain example code fragments that are included (see
654 1.1 christos # the \include command).
655 1.1 christos
656 1.1 christos EXAMPLE_PATH =
657 1.1 christos
658 1.1 christos # If the value of the EXAMPLE_PATH tag contains directories, you can use the
659 1.1 christos # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
660 1.1 christos # and *.h) to filter out the source-files in the directories. If left
661 1.1 christos # blank all files are included.
662 1.1 christos
663 1.1 christos EXAMPLE_PATTERNS =
664 1.1 christos
665 1.1 christos # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
666 1.1 christos # searched for input files to be used with the \include or \dontinclude
667 1.1 christos # commands irrespective of the value of the RECURSIVE tag.
668 1.1 christos # Possible values are YES and NO. If left blank NO is used.
669 1.1 christos
670 1.1 christos EXAMPLE_RECURSIVE = NO
671 1.1 christos
672 1.1 christos # The IMAGE_PATH tag can be used to specify one or more files or
673 1.1 christos # directories that contain image that are included in the documentation (see
674 1.1 christos # the \image command).
675 1.1 christos
676 1.1 christos IMAGE_PATH =
677 1.1 christos
678 1.1 christos # The INPUT_FILTER tag can be used to specify a program that doxygen should
679 1.1 christos # invoke to filter for each input file. Doxygen will invoke the filter program
680 1.1 christos # by executing (via popen()) the command <filter> <input-file>, where <filter>
681 1.1 christos # is the value of the INPUT_FILTER tag, and <input-file> is the name of an
682 1.1 christos # input file. Doxygen will then use the output that the filter program writes
683 1.1 christos # to standard output.
684 1.1 christos # If FILTER_PATTERNS is specified, this tag will be
685 1.1 christos # ignored.
686 1.1 christos
687 1.1 christos INPUT_FILTER =
688 1.1 christos
689 1.1 christos # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
690 1.1 christos # basis.
691 1.1 christos # Doxygen will compare the file name with each pattern and apply the
692 1.1 christos # filter if there is a match.
693 1.1 christos # The filters are a list of the form:
694 1.1 christos # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
695 1.1 christos # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
696 1.1 christos # is applied to all files.
697 1.1 christos
698 1.1 christos FILTER_PATTERNS =
699 1.1 christos
700 1.1 christos # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
701 1.1 christos # INPUT_FILTER) will be used to filter the input files when producing source
702 1.1 christos # files to browse (i.e. when SOURCE_BROWSER is set to YES).
703 1.1 christos
704 1.1 christos FILTER_SOURCE_FILES = NO
705 1.1 christos
706 1.1 christos #---------------------------------------------------------------------------
707 1.1 christos # configuration options related to source browsing
708 1.1 christos #---------------------------------------------------------------------------
709 1.1 christos
710 1.1 christos # If the SOURCE_BROWSER tag is set to YES then a list of source files will
711 1.1 christos # be generated. Documented entities will be cross-referenced with these sources.
712 1.1 christos # Note: To get rid of all source code in the generated output, make sure also
713 1.1 christos # VERBATIM_HEADERS is set to NO.
714 1.1 christos
715 1.1 christos SOURCE_BROWSER = NO
716 1.1 christos
717 1.1 christos # Setting the INLINE_SOURCES tag to YES will include the body
718 1.1 christos # of functions and classes directly in the documentation.
719 1.1 christos
720 1.1 christos INLINE_SOURCES = NO
721 1.1 christos
722 1.1 christos # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
723 1.1 christos # doxygen to hide any special comment blocks from generated source code
724 1.1 christos # fragments. Normal C and C++ comments will always remain visible.
725 1.1 christos
726 1.1 christos STRIP_CODE_COMMENTS = YES
727 1.1 christos
728 1.1 christos # If the REFERENCED_BY_RELATION tag is set to YES
729 1.1 christos # then for each documented function all documented
730 1.1 christos # functions referencing it will be listed.
731 1.1 christos
732 1.1 christos REFERENCED_BY_RELATION = YES
733 1.1 christos
734 1.1 christos # If the REFERENCES_RELATION tag is set to YES
735 1.1 christos # then for each documented function all documented entities
736 1.1 christos # called/used by that function will be listed.
737 1.1 christos
738 1.1 christos REFERENCES_RELATION = YES
739 1.1 christos
740 1.1 christos # If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
741 1.1 christos # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
742 1.1 christos # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
743 1.1 christos # link to the source code.
744 1.1 christos # Otherwise they will link to the documentation.
745 1.1 christos
746 1.1 christos REFERENCES_LINK_SOURCE = YES
747 1.1 christos
748 1.1 christos # If the USE_HTAGS tag is set to YES then the references to source code
749 1.1 christos # will point to the HTML generated by the htags(1) tool instead of doxygen
750 1.1 christos # built-in source browser. The htags tool is part of GNU's global source
751 1.1 christos # tagging system (see http://www.gnu.org/software/global/global.html). You
752 1.1 christos # will need version 4.8.6 or higher.
753 1.1 christos
754 1.1 christos USE_HTAGS = NO
755 1.1 christos
756 1.1 christos # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
757 1.1 christos # will generate a verbatim copy of the header file for each class for
758 1.1 christos # which an include is specified. Set to NO to disable this.
759 1.1 christos
760 1.1 christos VERBATIM_HEADERS = NO
761 1.1 christos
762 1.1 christos #---------------------------------------------------------------------------
763 1.1 christos # configuration options related to the alphabetical class index
764 1.1 christos #---------------------------------------------------------------------------
765 1.1 christos
766 1.1 christos # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
767 1.1 christos # of all compounds will be generated. Enable this if the project
768 1.1 christos # contains a lot of classes, structs, unions or interfaces.
769 1.1 christos
770 1.1 christos ALPHABETICAL_INDEX = YES
771 1.1 christos
772 1.1 christos # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
773 1.1 christos # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
774 1.1 christos # in which this list will be split (can be a number in the range [1..20])
775 1.1 christos
776 1.1 christos COLS_IN_ALPHA_INDEX = 5
777 1.1 christos
778 1.1 christos # In case all classes in a project start with a common prefix, all
779 1.1 christos # classes will be put under the same header in the alphabetical index.
780 1.1 christos # The IGNORE_PREFIX tag can be used to specify one or more prefixes that
781 1.1 christos # should be ignored while generating the index headers.
782 1.1 christos
783 1.1 christos IGNORE_PREFIX =
784 1.1 christos
785 1.1 christos #---------------------------------------------------------------------------
786 1.1 christos # configuration options related to the HTML output
787 1.1 christos #---------------------------------------------------------------------------
788 1.1 christos
789 1.1 christos # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
790 1.1 christos # generate HTML output.
791 1.1 christos
792 1.1 christos GENERATE_HTML = YES
793 1.1 christos
794 1.1 christos # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
795 1.1 christos # If a relative path is entered the value of OUTPUT_DIRECTORY will be
796 1.1 christos # put in front of it. If left blank `html' will be used as the default path.
797 1.1 christos
798 1.1 christos HTML_OUTPUT = html
799 1.1 christos
800 1.1 christos # The HTML_FILE_EXTENSION tag can be used to specify the file extension for
801 1.1 christos # each generated HTML page (for example: .htm,.php,.asp). If it is left blank
802 1.1 christos # doxygen will generate files with .html extension.
803 1.1 christos
804 1.1 christos HTML_FILE_EXTENSION = .html
805 1.1 christos
806 1.1 christos # The HTML_HEADER tag can be used to specify a personal HTML header for
807 1.1 christos # each generated HTML page. If it is left blank doxygen will generate a
808 1.1 christos # standard header.
809 1.1 christos
810 1.1 christos HTML_HEADER =
811 1.1 christos
812 1.1 christos # The HTML_FOOTER tag can be used to specify a personal HTML footer for
813 1.1 christos # each generated HTML page. If it is left blank doxygen will generate a
814 1.1 christos # standard footer.
815 1.1 christos
816 1.1 christos HTML_FOOTER =
817 1.1 christos
818 1.1 christos # If the HTML_TIMESTAMP tag is set to YES then the generated HTML
819 1.1 christos # documentation will contain the timesstamp.
820 1.1 christos
821 1.1 christos HTML_TIMESTAMP = NO
822 1.1 christos
823 1.1 christos # The HTML_STYLESHEET tag can be used to specify a user-defined cascading
824 1.1 christos # style sheet that is used by each HTML page. It can be used to
825 1.1 christos # fine-tune the look of the HTML output. If the tag is left blank doxygen
826 1.1 christos # will generate a default style sheet. Note that doxygen will try to copy
827 1.1 christos # the style sheet file to the HTML output directory, so don't put your own
828 1.1 christos # stylesheet in the HTML output directory as well, or it will be erased!
829 1.1 christos
830 1.1 christos HTML_STYLESHEET =
831 1.1 christos
832 1.1 christos # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output.
833 1.1 christos # Doxygen will adjust the colors in the stylesheet and background images
834 1.1 christos # according to this color. Hue is specified as an angle on a colorwheel,
835 1.1 christos # see http://en.wikipedia.org/wiki/Hue for more information.
836 1.1 christos # For instance the value 0 represents red, 60 is yellow, 120 is green,
837 1.1 christos # 180 is cyan, 240 is blue, 300 purple, and 360 is red again.
838 1.1 christos # The allowed range is 0 to 359.
839 1.1 christos
840 1.1 christos #HTML_COLORSTYLE_HUE = 220
841 1.1 christos
842 1.1 christos # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of
843 1.1 christos # the colors in the HTML output. For a value of 0 the output will use
844 1.1 christos # grayscales only. A value of 255 will produce the most vivid colors.
845 1.1 christos
846 1.1 christos #HTML_COLORSTYLE_SAT = 100
847 1.1 christos
848 1.1 christos # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to
849 1.1 christos # the luminance component of the colors in the HTML output. Values below
850 1.1 christos # 100 gradually make the output lighter, whereas values above 100 make
851 1.1 christos # the output darker. The value divided by 100 is the actual gamma applied,
852 1.1 christos # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2,
853 1.1 christos # and 100 does not change the gamma.
854 1.1 christos
855 1.1 christos #HTML_COLORSTYLE_GAMMA = 80
856 1.1 christos
857 1.1 christos # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
858 1.1 christos # page will contain the date and time when the page was generated. Setting
859 1.1 christos # this to NO can help when comparing the output of multiple runs.
860 1.1 christos
861 1.1 christos HTML_TIMESTAMP = YES
862 1.1 christos
863 1.1 christos # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
864 1.1 christos # files or namespaces will be aligned in HTML using tables. If set to
865 1.1 christos # NO a bullet list will be used.
866 1.1 christos
867 1.1 christos #HTML_ALIGN_MEMBERS = YES
868 1.1 christos
869 1.1 christos # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
870 1.1 christos # documentation will contain sections that can be hidden and shown after the
871 1.1 christos # page has loaded. For this to work a browser that supports
872 1.1 christos # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
873 1.1 christos # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
874 1.1 christos
875 1.1 christos HTML_DYNAMIC_SECTIONS = NO
876 1.1 christos
877 1.1 christos # If the GENERATE_DOCSET tag is set to YES, additional index files
878 1.1 christos # will be generated that can be used as input for Apple's Xcode 3
879 1.1 christos # integrated development environment, introduced with OSX 10.5 (Leopard).
880 1.1 christos # To create a documentation set, doxygen will generate a Makefile in the
881 1.1 christos # HTML output directory. Running make will produce the docset in that
882 1.1 christos # directory and running "make install" will install the docset in
883 1.1 christos # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find
884 1.1 christos # it at startup.
885 1.1 christos # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
886 1.1 christos # for more information.
887 1.1 christos
888 1.1 christos GENERATE_DOCSET = NO
889 1.1 christos
890 1.1 christos # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the
891 1.1 christos # feed. A documentation feed provides an umbrella under which multiple
892 1.1 christos # documentation sets from a single provider (such as a company or product suite)
893 1.1 christos # can be grouped.
894 1.1 christos
895 1.1 christos DOCSET_FEEDNAME = "Doxygen generated docs"
896 1.1 christos
897 1.1 christos # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that
898 1.1 christos # should uniquely identify the documentation set bundle. This should be a
899 1.1 christos # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen
900 1.1 christos # will append .docset to the name.
901 1.1 christos
902 1.1 christos DOCSET_BUNDLE_ID = org.doxygen.Project
903 1.1 christos
904 1.1 christos # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify
905 1.1 christos # the documentation publisher. This should be a reverse domain-name style
906 1.1 christos # string, e.g. com.mycompany.MyDocSet.documentation.
907 1.1 christos
908 1.1 christos #DOCSET_PUBLISHER_ID = org.doxygen.Publisher
909 1.1 christos
910 1.1 christos # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher.
911 1.1 christos
912 1.1 christos #DOCSET_PUBLISHER_NAME = Publisher
913 1.1 christos
914 1.1 christos # If the GENERATE_HTMLHELP tag is set to YES, additional index files
915 1.1 christos # will be generated that can be used as input for tools like the
916 1.1 christos # Microsoft HTML help workshop to generate a compiled HTML help file (.chm)
917 1.1 christos # of the generated HTML documentation.
918 1.1 christos
919 1.1 christos GENERATE_HTMLHELP = NO
920 1.1 christos
921 1.1 christos # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
922 1.1 christos # be used to specify the file name of the resulting .chm file. You
923 1.1 christos # can add a path in front of the file if the result should not be
924 1.1 christos # written to the html output directory.
925 1.1 christos
926 1.1 christos CHM_FILE =
927 1.1 christos
928 1.1 christos # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
929 1.1 christos # be used to specify the location (absolute path including file name) of
930 1.1 christos # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
931 1.1 christos # the HTML help compiler on the generated index.hhp.
932 1.1 christos
933 1.1 christos HHC_LOCATION =
934 1.1 christos
935 1.1 christos # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
936 1.1 christos # controls if a separate .chi index file is generated (YES) or that
937 1.1 christos # it should be included in the master .chm file (NO).
938 1.1 christos
939 1.1 christos GENERATE_CHI = NO
940 1.1 christos
941 1.1 christos # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING
942 1.1 christos # is used to encode HtmlHelp index (hhk), content (hhc) and project file
943 1.1 christos # content.
944 1.1 christos
945 1.1 christos CHM_INDEX_ENCODING =
946 1.1 christos
947 1.1 christos # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
948 1.1 christos # controls whether a binary table of contents is generated (YES) or a
949 1.1 christos # normal table of contents (NO) in the .chm file.
950 1.1 christos
951 1.1 christos BINARY_TOC = NO
952 1.1 christos
953 1.1 christos # The TOC_EXPAND flag can be set to YES to add extra items for group members
954 1.1 christos # to the contents of the HTML help documentation and to the tree view.
955 1.1 christos
956 1.1 christos TOC_EXPAND = NO
957 1.1 christos
958 1.1 christos # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
959 1.1 christos # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated
960 1.1 christos # that can be used as input for Qt's qhelpgenerator to generate a
961 1.1 christos # Qt Compressed Help (.qch) of the generated HTML documentation.
962 1.1 christos
963 1.1 christos GENERATE_QHP = NO
964 1.1 christos
965 1.1 christos # If the QHG_LOCATION tag is specified, the QCH_FILE tag can
966 1.1 christos # be used to specify the file name of the resulting .qch file.
967 1.1 christos # The path specified is relative to the HTML output folder.
968 1.1 christos
969 1.1 christos QCH_FILE =
970 1.1 christos
971 1.1 christos # The QHP_NAMESPACE tag specifies the namespace to use when generating
972 1.1 christos # Qt Help Project output. For more information please see
973 1.1 christos # http://doc.trolltech.com/qthelpproject.html#namespace
974 1.1 christos
975 1.1 christos QHP_NAMESPACE = org.doxygen.Project
976 1.1 christos
977 1.1 christos # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating
978 1.1 christos # Qt Help Project output. For more information please see
979 1.1 christos # http://doc.trolltech.com/qthelpproject.html#virtual-folders
980 1.1 christos
981 1.1 christos QHP_VIRTUAL_FOLDER = doc
982 1.1 christos
983 1.1 christos # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to
984 1.1 christos # add. For more information please see
985 1.1 christos # http://doc.trolltech.com/qthelpproject.html#custom-filters
986 1.1 christos
987 1.1 christos QHP_CUST_FILTER_NAME =
988 1.1 christos
989 1.1 christos # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the
990 1.1 christos # custom filter to add. For more information please see
991 1.1 christos # <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters">
992 1.1 christos # Qt Help Project / Custom Filters</a>.
993 1.1 christos
994 1.1 christos QHP_CUST_FILTER_ATTRS =
995 1.1 christos
996 1.1 christos # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
997 1.1 christos # project's
998 1.1 christos # filter section matches.
999 1.1 christos # <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes">
1000 1.1 christos # Qt Help Project / Filter Attributes</a>.
1001 1.1 christos
1002 1.1 christos QHP_SECT_FILTER_ATTRS =
1003 1.1 christos
1004 1.1 christos # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can
1005 1.1 christos # be used to specify the location of Qt's qhelpgenerator.
1006 1.1 christos # If non-empty doxygen will try to run qhelpgenerator on the generated
1007 1.1 christos # .qhp file.
1008 1.1 christos
1009 1.1 christos QHG_LOCATION =
1010 1.1 christos
1011 1.1 christos # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files
1012 1.1 christos # will be generated, which together with the HTML files, form an Eclipse help
1013 1.1 christos # plugin. To install this plugin and make it available under the help contents
1014 1.1 christos # menu in Eclipse, the contents of the directory containing the HTML and XML
1015 1.1 christos # files needs to be copied into the plugins directory of eclipse. The name of
1016 1.1 christos # the directory within the plugins directory should be the same as
1017 1.1 christos # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before
1018 1.1 christos # the help appears.
1019 1.1 christos
1020 1.1 christos GENERATE_ECLIPSEHELP = NO
1021 1.1 christos
1022 1.1 christos # A unique identifier for the eclipse help plugin. When installing the plugin
1023 1.1 christos # the directory name containing the HTML and XML files should also have
1024 1.1 christos # this name.
1025 1.1 christos
1026 1.1 christos ECLIPSE_DOC_ID = org.doxygen.Project
1027 1.1 christos
1028 1.1 christos # The DISABLE_INDEX tag can be used to turn on/off the condensed index at
1029 1.1 christos # top of each HTML page. The value NO (the default) enables the index and
1030 1.1 christos # the value YES disables it.
1031 1.1 christos
1032 1.1 christos DISABLE_INDEX = NO
1033 1.1 christos
1034 1.1 christos # This tag can be used to set the number of enum values (range [1..20])
1035 1.1 christos # that doxygen will group on one line in the generated HTML documentation.
1036 1.1 christos
1037 1.1 christos ENUM_VALUES_PER_LINE = 4
1038 1.1 christos
1039 1.1 christos # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
1040 1.1 christos # structure should be generated to display hierarchical information.
1041 1.1 christos # If the tag value is set to YES, a side panel will be generated
1042 1.1 christos # containing a tree-like index structure (just like the one that
1043 1.1 christos # is generated for HTML Help). For this to work a browser that supports
1044 1.1 christos # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser).
1045 1.1 christos # Windows users are probably better off using the HTML help feature.
1046 1.1 christos
1047 1.1 christos GENERATE_TREEVIEW = NO
1048 1.1 christos
1049 1.1 christos # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
1050 1.1 christos # and Class Hierarchy pages using a tree view instead of an ordered list.
1051 1.1 christos
1052 1.1 christos #USE_INLINE_TREES = NO
1053 1.1 christos
1054 1.1 christos # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
1055 1.1 christos # used to set the initial width (in pixels) of the frame in which the tree
1056 1.1 christos # is shown.
1057 1.1 christos
1058 1.1 christos TREEVIEW_WIDTH = 250
1059 1.1 christos
1060 1.1 christos # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open
1061 1.1 christos # links to external symbols imported via tag files in a separate window.
1062 1.1 christos
1063 1.1 christos #EXT_LINKS_IN_WINDOW = NO
1064 1.1 christos
1065 1.1 christos # Use this tag to change the font size of Latex formulas included
1066 1.1 christos # as images in the HTML documentation. The default is 10. Note that
1067 1.1 christos # when you change the font size after a successful doxygen run you need
1068 1.1 christos # to manually remove any form_*.png images from the HTML output directory
1069 1.1 christos # to force them to be regenerated.
1070 1.1 christos
1071 1.1 christos FORMULA_FONTSIZE = 10
1072 1.1 christos
1073 1.1 christos # Use the FORMULA_TRANPARENT tag to determine whether or not the images
1074 1.1 christos # generated for formulas are transparent PNGs. Transparent PNGs are
1075 1.1 christos # not supported properly for IE 6.0, but are supported on all modern browsers.
1076 1.1 christos # Note that when changing this option you need to delete any form_*.png files
1077 1.1 christos # in the HTML output before the changes have effect.
1078 1.1 christos
1079 1.1 christos #FORMULA_TRANSPARENT = YES
1080 1.1 christos
1081 1.1 christos # When the SEARCHENGINE tag is enabled doxygen will generate a search box
1082 1.1 christos # for the HTML output. The underlying search engine uses javascript
1083 1.1 christos # and DHTML and should work on any modern browser. Note that when using
1084 1.1 christos # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets
1085 1.1 christos # (GENERATE_DOCSET) there is already a search function so this one should
1086 1.1 christos # typically be disabled. For large projects the javascript based search engine
1087 1.1 christos # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.
1088 1.1 christos
1089 1.1 christos SEARCHENGINE = NO
1090 1.1 christos
1091 1.1 christos # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
1092 1.1 christos # implemented using a PHP enabled web server instead of at the web client
1093 1.1 christos # using Javascript. Doxygen will generate the search PHP script and index
1094 1.1 christos # file to put on the web server. The advantage of the server
1095 1.1 christos # based approach is that it scales better to large projects and allows
1096 1.1 christos # full text search. The disadvances is that it is more difficult to setup
1097 1.1 christos # and does not have live searching capabilities.
1098 1.1 christos
1099 1.1 christos SERVER_BASED_SEARCH = NO
1100 1.1 christos
1101 1.1 christos #---------------------------------------------------------------------------
1102 1.1 christos # configuration options related to the LaTeX output
1103 1.1 christos #---------------------------------------------------------------------------
1104 1.1 christos
1105 1.1 christos # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
1106 1.1 christos # generate Latex output.
1107 1.1 christos
1108 1.1 christos GENERATE_LATEX = NO
1109 1.1 christos
1110 1.1 christos # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
1111 1.1 christos # If a relative path is entered the value of OUTPUT_DIRECTORY will be
1112 1.1 christos # put in front of it. If left blank `latex' will be used as the default path.
1113 1.1 christos
1114 1.1 christos LATEX_OUTPUT = latex
1115 1.1 christos
1116 1.1 christos # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
1117 1.1 christos # invoked. If left blank `latex' will be used as the default command name.
1118 1.1 christos # Note that when enabling USE_PDFLATEX this option is only used for
1119 1.1 christos # generating bitmaps for formulas in the HTML output, but not in the
1120 1.1 christos # Makefile that is written to the output directory.
1121 1.1 christos
1122 1.1 christos LATEX_CMD_NAME = latex
1123 1.1 christos
1124 1.1 christos # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
1125 1.1 christos # generate index for LaTeX. If left blank `makeindex' will be used as the
1126 1.1 christos # default command name.
1127 1.1 christos
1128 1.1 christos MAKEINDEX_CMD_NAME = makeindex
1129 1.1 christos
1130 1.1 christos # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
1131 1.1 christos # LaTeX documents. This may be useful for small projects and may help to
1132 1.1 christos # save some trees in general.
1133 1.1 christos
1134 1.1 christos COMPACT_LATEX = NO
1135 1.1 christos
1136 1.1 christos # The PAPER_TYPE tag can be used to set the paper type that is used
1137 1.1 christos # by the printer. Possible values are: a4, a4wide, letter, legal and
1138 1.1 christos # executive. If left blank a4wide will be used.
1139 1.1 christos
1140 1.1 christos PAPER_TYPE = a4wide
1141 1.1 christos
1142 1.1 christos # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
1143 1.1 christos # packages that should be included in the LaTeX output.
1144 1.1 christos
1145 1.1 christos EXTRA_PACKAGES =
1146 1.1 christos
1147 1.1 christos # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
1148 1.1 christos # the generated latex document. The header should contain everything until
1149 1.1 christos # the first chapter. If it is left blank doxygen will generate a
1150 1.1 christos # standard header. Notice: only use this tag if you know what you are doing!
1151 1.1 christos
1152 1.1 christos LATEX_HEADER =
1153 1.1 christos
1154 1.1 christos # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
1155 1.1 christos # is prepared for conversion to pdf (using ps2pdf). The pdf file will
1156 1.1 christos # contain links (just like the HTML output) instead of page references
1157 1.1 christos # This makes the output suitable for online browsing using a pdf viewer.
1158 1.1 christos
1159 1.1 christos PDF_HYPERLINKS = NO
1160 1.1 christos
1161 1.1 christos # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
1162 1.1 christos # plain latex in the generated Makefile. Set this option to YES to get a
1163 1.1 christos # higher quality PDF documentation.
1164 1.1 christos
1165 1.1 christos USE_PDFLATEX = NO
1166 1.1 christos
1167 1.1 christos # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
1168 1.1 christos # command to the generated LaTeX files. This will instruct LaTeX to keep
1169 1.1 christos # running if errors occur, instead of asking the user for help.
1170 1.1 christos # This option is also used when generating formulas in HTML.
1171 1.1 christos
1172 1.1 christos LATEX_BATCHMODE = NO
1173 1.1 christos
1174 1.1 christos # If LATEX_HIDE_INDICES is set to YES then doxygen will not
1175 1.1 christos # include the index chapters (such as File Index, Compound Index, etc.)
1176 1.1 christos # in the output.
1177 1.1 christos
1178 1.1 christos LATEX_HIDE_INDICES = NO
1179 1.1 christos
1180 1.1 christos # If LATEX_SOURCE_CODE is set to YES then doxygen will include
1181 1.1 christos # source code with syntax highlighting in the LaTeX output.
1182 1.1 christos # Note that which sources are shown also depends on other settings
1183 1.1 christos # such as SOURCE_BROWSER.
1184 1.1 christos
1185 1.1 christos LATEX_SOURCE_CODE = NO
1186 1.1 christos
1187 1.1 christos #---------------------------------------------------------------------------
1188 1.1 christos # configuration options related to the RTF output
1189 1.1 christos #---------------------------------------------------------------------------
1190 1.1 christos
1191 1.1 christos # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
1192 1.1 christos # The RTF output is optimized for Word 97 and may not look very pretty with
1193 1.1 christos # other RTF readers or editors.
1194 1.1 christos
1195 1.1 christos GENERATE_RTF = NO
1196 1.1 christos
1197 1.1 christos # The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
1198 1.1 christos # If a relative path is entered the value of OUTPUT_DIRECTORY will be
1199 1.1 christos # put in front of it. If left blank `rtf' will be used as the default path.
1200 1.1 christos
1201 1.1 christos RTF_OUTPUT = rtf
1202 1.1 christos
1203 1.1 christos # If the COMPACT_RTF tag is set to YES Doxygen generates more compact
1204 1.1 christos # RTF documents. This may be useful for small projects and may help to
1205 1.1 christos # save some trees in general.
1206 1.1 christos
1207 1.1 christos COMPACT_RTF = NO
1208 1.1 christos
1209 1.1 christos # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
1210 1.1 christos # will contain hyperlink fields. The RTF file will
1211 1.1 christos # contain links (just like the HTML output) instead of page references.
1212 1.1 christos # This makes the output suitable for online browsing using WORD or other
1213 1.1 christos # programs which support those fields.
1214 1.1 christos # Note: wordpad (write) and others do not support links.
1215 1.1 christos
1216 1.1 christos RTF_HYPERLINKS = NO
1217 1.1 christos
1218 1.1 christos # Load stylesheet definitions from file. Syntax is similar to doxygen's
1219 1.1 christos # config file, i.e. a series of assignments. You only have to provide
1220 1.1 christos # replacements, missing definitions are set to their default value.
1221 1.1 christos
1222 1.1 christos RTF_STYLESHEET_FILE =
1223 1.1 christos
1224 1.1 christos # Set optional variables used in the generation of an rtf document.
1225 1.1 christos # Syntax is similar to doxygen's config file.
1226 1.1 christos
1227 1.1 christos RTF_EXTENSIONS_FILE =
1228 1.1 christos
1229 1.1 christos #---------------------------------------------------------------------------
1230 1.1 christos # configuration options related to the man page output
1231 1.1 christos #---------------------------------------------------------------------------
1232 1.1 christos
1233 1.1 christos # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
1234 1.1 christos # generate man pages
1235 1.1 christos
1236 1.1 christos GENERATE_MAN = NO
1237 1.1 christos
1238 1.1 christos # The MAN_OUTPUT tag is used to specify where the man pages will be put.
1239 1.1 christos # If a relative path is entered the value of OUTPUT_DIRECTORY will be
1240 1.1 christos # put in front of it. If left blank `man' will be used as the default path.
1241 1.1 christos
1242 1.1 christos MAN_OUTPUT = man
1243 1.1 christos
1244 1.1 christos # The MAN_EXTENSION tag determines the extension that is added to
1245 1.1 christos # the generated man pages (default is the subroutine's section .3)
1246 1.1 christos
1247 1.1 christos MAN_EXTENSION = .3
1248 1.1 christos
1249 1.1 christos # If the MAN_LINKS tag is set to YES and Doxygen generates man output,
1250 1.1 christos # then it will generate one additional man file for each entity
1251 1.1 christos # documented in the real man page(s). These additional files
1252 1.1 christos # only source the real man page, but without them the man command
1253 1.1 christos # would be unable to find the correct page. The default is NO.
1254 1.1 christos
1255 1.1 christos MAN_LINKS = NO
1256 1.1 christos
1257 1.1 christos #---------------------------------------------------------------------------
1258 1.1 christos # configuration options related to the XML output
1259 1.1 christos #---------------------------------------------------------------------------
1260 1.1 christos
1261 1.1 christos # If the GENERATE_XML tag is set to YES Doxygen will
1262 1.1 christos # generate an XML file that captures the structure of
1263 1.1 christos # the code including all documentation.
1264 1.1 christos
1265 1.1 christos GENERATE_XML = YES
1266 1.1 christos
1267 1.1 christos # The XML_OUTPUT tag is used to specify where the XML pages will be put.
1268 1.1 christos # If a relative path is entered the value of OUTPUT_DIRECTORY will be
1269 1.1 christos # put in front of it. If left blank `xml' will be used as the default path.
1270 1.1 christos
1271 1.1 christos XML_OUTPUT = xml
1272 1.1 christos
1273 1.1 christos # The XML_SCHEMA tag can be used to specify an XML schema,
1274 1.1 christos # which can be used by a validating XML parser to check the
1275 1.1 christos # syntax of the XML files.
1276 1.1 christos
1277 1.1 christos #XML_SCHEMA =
1278 1.1 christos
1279 1.1 christos # The XML_DTD tag can be used to specify an XML DTD,
1280 1.1 christos # which can be used by a validating XML parser to check the
1281 1.1 christos # syntax of the XML files.
1282 1.1 christos
1283 1.1 christos #XML_DTD =
1284 1.1 christos
1285 1.1 christos # If the XML_PROGRAMLISTING tag is set to YES Doxygen will
1286 1.1 christos # dump the program listings (including syntax highlighting
1287 1.1 christos # and cross-referencing information) to the XML output. Note that
1288 1.1 christos # enabling this will significantly increase the size of the XML output.
1289 1.1 christos
1290 1.1 christos XML_PROGRAMLISTING = YES
1291 1.1 christos
1292 1.1 christos #---------------------------------------------------------------------------
1293 1.1 christos # configuration options for the AutoGen Definitions output
1294 1.1 christos #---------------------------------------------------------------------------
1295 1.1 christos
1296 1.1 christos # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
1297 1.1 christos # generate an AutoGen Definitions (see autogen.sf.net) file
1298 1.1 christos # that captures the structure of the code including all
1299 1.1 christos # documentation. Note that this feature is still experimental
1300 1.1 christos # and incomplete at the moment.
1301 1.1 christos
1302 1.1 christos GENERATE_AUTOGEN_DEF = NO
1303 1.1 christos
1304 1.1 christos #---------------------------------------------------------------------------
1305 1.1 christos # configuration options related to the Perl module output
1306 1.1 christos #---------------------------------------------------------------------------
1307 1.1 christos
1308 1.1 christos # If the GENERATE_PERLMOD tag is set to YES Doxygen will
1309 1.1 christos # generate a Perl module file that captures the structure of
1310 1.1 christos # the code including all documentation. Note that this
1311 1.1 christos # feature is still experimental and incomplete at the
1312 1.1 christos # moment.
1313 1.1 christos
1314 1.1 christos GENERATE_PERLMOD = NO
1315 1.1 christos
1316 1.1 christos # If the PERLMOD_LATEX tag is set to YES Doxygen will generate
1317 1.1 christos # the necessary Makefile rules, Perl scripts and LaTeX code to be able
1318 1.1 christos # to generate PDF and DVI output from the Perl module output.
1319 1.1 christos
1320 1.1 christos PERLMOD_LATEX = NO
1321 1.1 christos
1322 1.1 christos # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
1323 1.1 christos # nicely formatted so it can be parsed by a human reader.
1324 1.1 christos # This is useful
1325 1.1 christos # if you want to understand what is going on.
1326 1.1 christos # On the other hand, if this
1327 1.1 christos # tag is set to NO the size of the Perl module output will be much smaller
1328 1.1 christos # and Perl will parse it just the same.
1329 1.1 christos
1330 1.1 christos PERLMOD_PRETTY = YES
1331 1.1 christos
1332 1.1 christos # The names of the make variables in the generated doxyrules.make file
1333 1.1 christos # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
1334 1.1 christos # This is useful so different doxyrules.make files included by the same
1335 1.1 christos # Makefile don't overwrite each other's variables.
1336 1.1 christos
1337 1.1 christos PERLMOD_MAKEVAR_PREFIX =
1338 1.1 christos
1339 1.1 christos #---------------------------------------------------------------------------
1340 1.1 christos # Configuration options related to the preprocessor
1341 1.1 christos #---------------------------------------------------------------------------
1342 1.1 christos
1343 1.1 christos # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
1344 1.1 christos # evaluate all C-preprocessor directives found in the sources and include
1345 1.1 christos # files.
1346 1.1 christos
1347 1.1 christos ENABLE_PREPROCESSING = YES
1348 1.1 christos
1349 1.1 christos # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
1350 1.1 christos # names in the source code. If set to NO (the default) only conditional
1351 1.1 christos # compilation will be performed. Macro expansion can be done in a controlled
1352 1.1 christos # way by setting EXPAND_ONLY_PREDEF to YES.
1353 1.1 christos
1354 1.1 christos MACRO_EXPANSION = YES
1355 1.1 christos
1356 1.1 christos # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
1357 1.1 christos # then the macro expansion is limited to the macros specified with the
1358 1.1 christos # PREDEFINED and EXPAND_AS_DEFINED tags.
1359 1.1 christos
1360 1.1 christos EXPAND_ONLY_PREDEF = YES
1361 1.1 christos
1362 1.1 christos # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
1363 1.1 christos # in the INCLUDE_PATH (see below) will be search if a #include is found.
1364 1.1 christos
1365 1.1 christos SEARCH_INCLUDES = YES
1366 1.1 christos
1367 1.1 christos # The INCLUDE_PATH tag can be used to specify one or more directories that
1368 1.1 christos # contain include files that are not input files but should be processed by
1369 1.1 christos # the preprocessor.
1370 1.1 christos
1371 1.1 christos INCLUDE_PATH =
1372 1.1 christos
1373 1.1 christos # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
1374 1.1 christos # patterns (like *.h and *.hpp) to filter out the header-files in the
1375 1.1 christos # directories. If left blank, the patterns specified with FILE_PATTERNS will
1376 1.1 christos # be used.
1377 1.1 christos
1378 1.1 christos INCLUDE_FILE_PATTERNS = *.h
1379 1.1 christos
1380 1.1 christos # The PREDEFINED tag can be used to specify one or more macro names that
1381 1.1 christos # are defined before the preprocessor is started (similar to the -D option of
1382 1.1 christos # gcc). The argument of the tag is a list of macros of the form: name
1383 1.1 christos # or name=definition (no spaces). If the definition and the = are
1384 1.1 christos # omitted =1 is assumed. To prevent a macro definition from being
1385 1.1 christos # undefined via #undef or recursively expanded use the := operator
1386 1.1 christos # instead of the = operator.
1387 1.1 christos
1388 1.1 christos PREDEFINED = DOXYGEN
1389 1.1 christos
1390 1.1 christos # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
1391 1.1 christos # this tag can be used to specify a list of macro names that should be expanded.
1392 1.1 christos # The macro definition that is found in the sources will be used.
1393 1.1 christos # Use the PREDEFINED tag if you want to use a different macro definition.
1394 1.1 christos
1395 1.1 christos EXPAND_AS_DEFINED = ATTR_UNUSED
1396 1.1 christos
1397 1.1 christos # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
1398 1.1 christos # doxygen's preprocessor will remove all function-like macros that are alone
1399 1.1 christos # on a line, have an all uppercase name, and do not end with a semicolon. Such
1400 1.1 christos # function macros are typically used for boiler-plate code, and will confuse
1401 1.1 christos # the parser if not removed.
1402 1.1 christos
1403 1.1 christos SKIP_FUNCTION_MACROS = YES
1404 1.1 christos
1405 1.1 christos #---------------------------------------------------------------------------
1406 1.1 christos # Configuration::additions related to external references
1407 1.1 christos #---------------------------------------------------------------------------
1408 1.1 christos
1409 1.1 christos # The TAGFILES option can be used to specify one or more tagfiles.
1410 1.1 christos # Optionally an initial location of the external documentation
1411 1.1 christos # can be added for each tagfile. The format of a tag file without
1412 1.1 christos # this location is as follows:
1413 1.1 christos #
1414 1.1 christos # TAGFILES = file1 file2 ...
1415 1.1 christos # Adding location for the tag files is done as follows:
1416 1.1 christos #
1417 1.1 christos # TAGFILES = file1=loc1 "file2 = loc2" ...
1418 1.1 christos # where "loc1" and "loc2" can be relative or absolute paths or
1419 1.1 christos # URLs. If a location is present for each tag, the installdox tool
1420 1.1 christos # does not have to be run to correct the links.
1421 1.1 christos # Note that each tag file must have a unique name
1422 1.1 christos # (where the name does NOT include the path)
1423 1.1 christos # If a tag file is not located in the directory in which doxygen
1424 1.1 christos # is run, you must also specify the path to the tagfile here.
1425 1.1 christos
1426 1.1 christos TAGFILES =
1427 1.1 christos
1428 1.1 christos # When a file name is specified after GENERATE_TAGFILE, doxygen will create
1429 1.1 christos # a tag file that is based on the input files it reads.
1430 1.1 christos
1431 1.1 christos GENERATE_TAGFILE =
1432 1.1 christos
1433 1.1 christos # If the ALLEXTERNALS tag is set to YES all external classes will be listed
1434 1.1 christos # in the class index. If set to NO only the inherited external classes
1435 1.1 christos # will be listed.
1436 1.1 christos
1437 1.1 christos ALLEXTERNALS = NO
1438 1.1 christos
1439 1.1 christos # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
1440 1.1 christos # in the modules index. If set to NO, only the current project's groups will
1441 1.1 christos # be listed.
1442 1.1 christos
1443 1.1 christos EXTERNAL_GROUPS = YES
1444 1.1 christos
1445 1.1 christos # The PERL_PATH should be the absolute path and name of the perl script
1446 1.1 christos # interpreter (i.e. the result of `which perl').
1447 1.1 christos
1448 1.1 christos PERL_PATH = /usr/bin/perl
1449 1.1 christos
1450 1.1 christos #---------------------------------------------------------------------------
1451 1.1 christos # Configuration options related to the dot tool
1452 1.1 christos #---------------------------------------------------------------------------
1453 1.1 christos
1454 1.1 christos # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
1455 1.1 christos # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
1456 1.1 christos # or super classes. Setting the tag to NO turns the diagrams off. Note that
1457 1.1 christos # this option is superseded by the HAVE_DOT option below. This is only a
1458 1.1 christos # fallback. It is recommended to install and use dot, since it yields more
1459 1.1 christos # powerful graphs.
1460 1.1 christos
1461 1.1 christos CLASS_DIAGRAMS = YES
1462 1.1 christos
1463 1.1 christos # You can define message sequence charts within doxygen comments using the \msc
1464 1.1 christos # command. Doxygen will then run the mscgen tool (see
1465 1.1 christos # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the
1466 1.1 christos # documentation. The MSCGEN_PATH tag allows you to specify the directory where
1467 1.1 christos # the mscgen tool resides. If left empty the tool is assumed to be found in the
1468 1.1 christos # default search path.
1469 1.1 christos
1470 1.1 christos MSCGEN_PATH =
1471 1.1 christos
1472 1.1 christos # If set to YES, the inheritance and collaboration graphs will hide
1473 1.1 christos # inheritance and usage relations if the target is undocumented
1474 1.1 christos # or is not a class.
1475 1.1 christos
1476 1.1 christos HIDE_UNDOC_RELATIONS = YES
1477 1.1 christos
1478 1.1 christos # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
1479 1.1 christos # available from the path. This tool is part of Graphviz, a graph visualization
1480 1.1 christos # toolkit from AT&T and Lucent Bell Labs. The other options in this section
1481 1.1 christos # have no effect if this option is set to NO (the default)
1482 1.1 christos
1483 1.1 christos HAVE_DOT = NO
1484 1.1 christos
1485 1.1 christos # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is
1486 1.1 christos # allowed to run in parallel. When set to 0 (the default) doxygen will
1487 1.1 christos # base this on the number of processors available in the system. You can set it
1488 1.1 christos # explicitly to a value larger than 0 to get control over the balance
1489 1.1 christos # between CPU load and processing speed.
1490 1.1 christos
1491 1.1 christos #DOT_NUM_THREADS = 0
1492 1.1 christos
1493 1.1 christos # By default doxygen will write a font called FreeSans.ttf to the output
1494 1.1 christos # directory and reference it in all dot files that doxygen generates. This
1495 1.1 christos # font does not include all possible unicode characters however, so when you need
1496 1.1 christos # these (or just want a differently looking font) you can specify the font name
1497 1.1 christos # using DOT_FONTNAME. You need need to make sure dot is able to find the font,
1498 1.1 christos # which can be done by putting it in a standard location or by setting the
1499 1.1 christos # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory
1500 1.1 christos # containing the font.
1501 1.1 christos
1502 1.1 christos #DOT_FONTNAME = FreeSans.ttf
1503 1.1 christos
1504 1.1 christos # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs.
1505 1.1 christos # The default size is 10pt.
1506 1.1 christos
1507 1.1 christos DOT_FONTSIZE = 10
1508 1.1 christos
1509 1.1 christos # By default doxygen will tell dot to use the output directory to look for the
1510 1.1 christos # FreeSans.ttf font (which doxygen will put there itself). If you specify a
1511 1.1 christos # different font using DOT_FONTNAME you can set the path where dot
1512 1.1 christos # can find it using this tag.
1513 1.1 christos
1514 1.1 christos DOT_FONTPATH =
1515 1.1 christos
1516 1.1 christos # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
1517 1.1 christos # will generate a graph for each documented class showing the direct and
1518 1.1 christos # indirect inheritance relations. Setting this tag to YES will force the
1519 1.1 christos # the CLASS_DIAGRAMS tag to NO.
1520 1.1 christos
1521 1.1 christos CLASS_GRAPH = YES
1522 1.1 christos
1523 1.1 christos # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
1524 1.1 christos # will generate a graph for each documented class showing the direct and
1525 1.1 christos # indirect implementation dependencies (inheritance, containment, and
1526 1.1 christos # class references variables) of the class with other documented classes.
1527 1.1 christos
1528 1.1 christos COLLABORATION_GRAPH = YES
1529 1.1 christos
1530 1.1 christos # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
1531 1.1 christos # will generate a graph for groups, showing the direct groups dependencies
1532 1.1 christos
1533 1.1 christos GROUP_GRAPHS = YES
1534 1.1 christos
1535 1.1 christos # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
1536 1.1 christos # collaboration diagrams in a style similar to the OMG's Unified Modeling
1537 1.1 christos # Language.
1538 1.1 christos
1539 1.1 christos UML_LOOK = NO
1540 1.1 christos
1541 1.1 christos # If set to YES, the inheritance and collaboration graphs will show the
1542 1.1 christos # relations between templates and their instances.
1543 1.1 christos
1544 1.1 christos TEMPLATE_RELATIONS = NO
1545 1.1 christos
1546 1.1 christos # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
1547 1.1 christos # tags are set to YES then doxygen will generate a graph for each documented
1548 1.1 christos # file showing the direct and indirect include dependencies of the file with
1549 1.1 christos # other documented files.
1550 1.1 christos
1551 1.1 christos INCLUDE_GRAPH = YES
1552 1.1 christos
1553 1.1 christos # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
1554 1.1 christos # HAVE_DOT tags are set to YES then doxygen will generate a graph for each
1555 1.1 christos # documented header file showing the documented files that directly or
1556 1.1 christos # indirectly include this file.
1557 1.1 christos
1558 1.1 christos INCLUDED_BY_GRAPH = YES
1559 1.1 christos
1560 1.1 christos # If the CALL_GRAPH and HAVE_DOT options are set to YES then
1561 1.1 christos # doxygen will generate a call dependency graph for every global function
1562 1.1 christos # or class method. Note that enabling this option will significantly increase
1563 1.1 christos # the time of a run. So in most cases it will be better to enable call graphs
1564 1.1 christos # for selected functions only using the \callgraph command.
1565 1.1 christos
1566 1.1 christos CALL_GRAPH = NO
1567 1.1 christos
1568 1.1 christos # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then
1569 1.1 christos # doxygen will generate a caller dependency graph for every global function
1570 1.1 christos # or class method. Note that enabling this option will significantly increase
1571 1.1 christos # the time of a run. So in most cases it will be better to enable caller
1572 1.1 christos # graphs for selected functions only using the \callergraph command.
1573 1.1 christos
1574 1.1 christos CALLER_GRAPH = NO
1575 1.1 christos
1576 1.1 christos # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
1577 1.1 christos # will graphical hierarchy of all classes instead of a textual one.
1578 1.1 christos
1579 1.1 christos GRAPHICAL_HIERARCHY = YES
1580 1.1 christos
1581 1.1 christos # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
1582 1.1 christos # then doxygen will show the dependencies a directory has on other directories
1583 1.1 christos # in a graphical way. The dependency relations are determined by the #include
1584 1.1 christos # relations between the files in the directories.
1585 1.1 christos
1586 1.1 christos DIRECTORY_GRAPH = YES
1587 1.1 christos
1588 1.1 christos # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
1589 1.1 christos # generated by dot. Possible values are png, jpg, or gif
1590 1.1 christos # If left blank png will be used.
1591 1.1 christos
1592 1.1 christos DOT_IMAGE_FORMAT = png
1593 1.1 christos
1594 1.1 christos # The tag DOT_PATH can be used to specify the path where the dot tool can be
1595 1.1 christos # found. If left blank, it is assumed the dot tool can be found in the path.
1596 1.1 christos
1597 1.1 christos DOT_PATH =
1598 1.1 christos
1599 1.1 christos # The DOTFILE_DIRS tag can be used to specify one or more directories that
1600 1.1 christos # contain dot files that are included in the documentation (see the
1601 1.1 christos # \dotfile command).
1602 1.1 christos
1603 1.1 christos DOTFILE_DIRS =
1604 1.1 christos
1605 1.1 christos # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
1606 1.1 christos # nodes that will be shown in the graph. If the number of nodes in a graph
1607 1.1 christos # becomes larger than this value, doxygen will truncate the graph, which is
1608 1.1 christos # visualized by representing a node as a red box. Note that doxygen if the
1609 1.1 christos # number of direct children of the root node in a graph is already larger than
1610 1.1 christos # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
1611 1.1 christos # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
1612 1.1 christos
1613 1.1 christos DOT_GRAPH_MAX_NODES = 50
1614 1.1 christos
1615 1.1 christos # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
1616 1.1 christos # graphs generated by dot. A depth value of 3 means that only nodes reachable
1617 1.1 christos # from the root by following a path via at most 3 edges will be shown. Nodes
1618 1.1 christos # that lay further from the root node will be omitted. Note that setting this
1619 1.1 christos # option to 1 or 2 may greatly reduce the computation time needed for large
1620 1.1 christos # code bases. Also note that the size of a graph can be further restricted by
1621 1.1 christos # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
1622 1.1 christos
1623 1.1 christos MAX_DOT_GRAPH_DEPTH = 0
1624 1.1 christos
1625 1.1 christos # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
1626 1.1 christos # background. This is disabled by default, because dot on Windows does not
1627 1.1 christos # seem to support this out of the box. Warning: Depending on the platform used,
1628 1.1 christos # enabling this option may lead to badly anti-aliased labels on the edges of
1629 1.1 christos # a graph (i.e. they become hard to read).
1630 1.1 christos
1631 1.1 christos DOT_TRANSPARENT = NO
1632 1.1 christos
1633 1.1 christos # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
1634 1.1 christos # files in one run (i.e. multiple -o and -T options on the command line). This
1635 1.1 christos # makes dot run faster, but since only newer versions of dot (>1.8.10)
1636 1.1 christos # support this, this feature is disabled by default.
1637 1.1 christos
1638 1.1 christos DOT_MULTI_TARGETS = NO
1639 1.1 christos
1640 1.1 christos # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
1641 1.1 christos # generate a legend page explaining the meaning of the various boxes and
1642 1.1 christos # arrows in the dot generated graphs.
1643 1.1 christos
1644 1.1 christos GENERATE_LEGEND = YES
1645 1.1 christos
1646 1.1 christos # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
1647 1.1 christos # remove the intermediate dot files that are used to generate
1648 1.1 christos # the various graphs.
1649 1.1 christos
1650 1.1 christos DOT_CLEANUP = YES
1651