|
1 # Doxyfile 1.5.3 |
|
2 |
|
3 # This file describes the settings to be used by the documentation system |
|
4 # doxygen (www.doxygen.org) for a project |
|
5 # |
|
6 # All text after a hash (#) is considered a comment and will be ignored |
|
7 # The format is: |
|
8 # TAG = value [value, ...] |
|
9 # For lists items can also be appended using: |
|
10 # TAG += value [value, ...] |
|
11 # Values that contain spaces should be placed between quotes (" ") |
|
12 |
|
13 #--------------------------------------------------------------------------- |
|
14 # Project related configuration options |
|
15 #--------------------------------------------------------------------------- |
|
16 |
|
17 # This tag specifies the encoding used for all characters in the config file that |
|
18 # follow. The default is UTF-8 which is also the encoding used for all text before |
|
19 # the first occurrence of this tag. Doxygen uses libiconv (or the iconv built into |
|
20 # libc) for the transcoding. See http://www.gnu.org/software/libiconv for the list of |
|
21 # possible encodings. |
|
22 |
|
23 DOXYFILE_ENCODING = UTF-8 |
|
24 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded |
|
25 # by quotes) that should identify the project. |
|
26 |
|
27 PROJECT_NAME = Push |
|
28 |
|
29 # The PROJECT_NUMBER tag can be used to enter a project or revision number. |
|
30 # This could be handy for archiving the generated documentation or |
|
31 # if some version control system is used. |
|
32 |
|
33 PROJECT_NUMBER = |
|
34 |
|
35 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) |
|
36 # base path where the generated documentation will be put. |
|
37 # If a relative path is entered, it will be relative to the location |
|
38 # where doxygen was started. If left blank the current directory will be used. |
|
39 |
|
40 OUTPUT_DIRECTORY = $(JAVA_BIN_ROOT)/doxygen |
|
41 |
|
42 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create |
|
43 # 4096 sub-directories (in 2 levels) under the output directory of each output |
|
44 # format and will distribute the generated files over these directories. |
|
45 # Enabling this option can be useful when feeding doxygen a huge amount of |
|
46 # source files, where putting all generated files in the same directory would |
|
47 # otherwise cause performance problems for the file system. |
|
48 |
|
49 CREATE_SUBDIRS = NO |
|
50 |
|
51 # The OUTPUT_LANGUAGE tag is used to specify the language in which all |
|
52 # documentation generated by doxygen is written. Doxygen will use this |
|
53 # information to generate all constant output in the proper language. |
|
54 # The default language is English, other supported languages are: |
|
55 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, |
|
56 # Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, |
|
57 # Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, |
|
58 # Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, |
|
59 # Swedish, and Ukrainian. |
|
60 |
|
61 OUTPUT_LANGUAGE = English |
|
62 |
|
63 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will |
|
64 # include brief member descriptions after the members that are listed in |
|
65 # the file and class documentation (similar to JavaDoc). |
|
66 # Set to NO to disable this. |
|
67 |
|
68 BRIEF_MEMBER_DESC = YES |
|
69 |
|
70 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend |
|
71 # the brief description of a member or function before the detailed description. |
|
72 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the |
|
73 # brief descriptions will be completely suppressed. |
|
74 |
|
75 REPEAT_BRIEF = YES |
|
76 |
|
77 # This tag implements a quasi-intelligent brief description abbreviator |
|
78 # that is used to form the text in various listings. Each string |
|
79 # in this list, if found as the leading text of the brief description, will be |
|
80 # stripped from the text and the result after processing the whole list, is |
|
81 # used as the annotated text. Otherwise, the brief description is used as-is. |
|
82 # If left blank, the following values are used ("$name" is automatically |
|
83 # replaced with the name of the entity): "The $name class" "The $name widget" |
|
84 # "The $name file" "is" "provides" "specifies" "contains" |
|
85 # "represents" "a" "an" "the" |
|
86 |
|
87 ABBREVIATE_BRIEF = |
|
88 |
|
89 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then |
|
90 # Doxygen will generate a detailed section even if there is only a brief |
|
91 # description. |
|
92 |
|
93 ALWAYS_DETAILED_SEC = NO |
|
94 |
|
95 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all |
|
96 # inherited members of a class in the documentation of that class as if those |
|
97 # members were ordinary class members. Constructors, destructors and assignment |
|
98 # operators of the base classes will not be shown. |
|
99 |
|
100 INLINE_INHERITED_MEMB = NO |
|
101 |
|
102 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full |
|
103 # path before files name in the file list and in the header files. If set |
|
104 # to NO the shortest path that makes the file name unique will be used. |
|
105 |
|
106 FULL_PATH_NAMES = YES |
|
107 |
|
108 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag |
|
109 # can be used to strip a user-defined part of the path. Stripping is |
|
110 # only done if one of the specified strings matches the left-hand part of |
|
111 # the path. The tag can be used to show relative paths in the file list. |
|
112 # If left blank the directory from which doxygen is run is used as the |
|
113 # path to strip. |
|
114 |
|
115 STRIP_FROM_PATH = |
|
116 |
|
117 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of |
|
118 # the path mentioned in the documentation of a class, which tells |
|
119 # the reader which header file to include in order to use a class. |
|
120 # If left blank only the name of the header file containing the class |
|
121 # definition is used. Otherwise one should specify the include paths that |
|
122 # are normally passed to the compiler using the -I flag. |
|
123 |
|
124 STRIP_FROM_INC_PATH = |
|
125 |
|
126 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter |
|
127 # (but less readable) file names. This can be useful is your file systems |
|
128 # doesn't support long names like on DOS, Mac, or CD-ROM. |
|
129 |
|
130 SHORT_NAMES = NO |
|
131 |
|
132 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen |
|
133 # will interpret the first line (until the first dot) of a JavaDoc-style |
|
134 # comment as the brief description. If set to NO, the JavaDoc |
|
135 # comments will behave just like the Qt-style comments (thus requiring an |
|
136 # explicit @brief command for a brief description. |
|
137 |
|
138 JAVADOC_AUTOBRIEF = NO |
|
139 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will |
|
140 # interpret the first line (until the first dot) of a Qt-style |
|
141 # comment as the brief description. If set to NO, the comments |
|
142 # will behave just like regular Qt-style comments (thus requiring |
|
143 # an explicit \brief command for a brief description.) |
|
144 |
|
145 QT_AUTOBRIEF = NO |
|
146 |
|
147 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen |
|
148 # treat a multi-line C++ special comment block (i.e. a block of //! or /// |
|
149 # comments) as a brief description. This used to be the default behaviour. |
|
150 # The new default is to treat a multi-line C++ comment block as a detailed |
|
151 # description. Set this tag to YES if you prefer the old behaviour instead. |
|
152 |
|
153 MULTILINE_CPP_IS_BRIEF = NO |
|
154 |
|
155 # If the DETAILS_AT_TOP tag is set to YES then Doxygen |
|
156 # will output the detailed description near the top, like JavaDoc. |
|
157 # If set to NO, the detailed description appears after the member |
|
158 # documentation. |
|
159 |
|
160 DETAILS_AT_TOP = YES |
|
161 |
|
162 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented |
|
163 # member inherits the documentation from any documented member that it |
|
164 # re-implements. |
|
165 |
|
166 INHERIT_DOCS = YES |
|
167 |
|
168 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce |
|
169 # a new page for each member. If set to NO, the documentation of a member will |
|
170 # be part of the file/class/namespace that contains it. |
|
171 |
|
172 SEPARATE_MEMBER_PAGES = NO |
|
173 |
|
174 # The TAB_SIZE tag can be used to set the number of spaces in a tab. |
|
175 # Doxygen uses this value to replace tabs by spaces in code fragments. |
|
176 |
|
177 TAB_SIZE = 8 |
|
178 |
|
179 # This tag can be used to specify a number of aliases that acts |
|
180 # as commands in the documentation. An alias has the form "name=value". |
|
181 # For example adding "sideeffect=\par Side Effects:\n" will allow you to |
|
182 # put the command \sideeffect (or @sideeffect) in the documentation, which |
|
183 # will result in a user-defined paragraph with heading "Side Effects:". |
|
184 # You can put \n's in the value part of an alias to insert newlines. |
|
185 |
|
186 ALIASES = |
|
187 |
|
188 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C |
|
189 # sources only. Doxygen will then generate output that is more tailored for C. |
|
190 # For instance, some of the names that are used will be different. The list |
|
191 # of all members will be omitted, etc. |
|
192 |
|
193 OPTIMIZE_OUTPUT_FOR_C = NO |
|
194 |
|
195 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java |
|
196 # sources only. Doxygen will then generate output that is more tailored for Java. |
|
197 # For instance, namespaces will be presented as packages, qualified scopes |
|
198 # will look different, etc. |
|
199 |
|
200 OPTIMIZE_OUTPUT_JAVA = YES |
|
201 |
|
202 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to |
|
203 # include (a tag file for) the STL sources as input, then you should |
|
204 # set this tag to YES in order to let doxygen match functions declarations and |
|
205 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. |
|
206 # func(std::string) {}). This also make the inheritance and collaboration |
|
207 # diagrams that involve STL classes more complete and accurate. |
|
208 |
|
209 BUILTIN_STL_SUPPORT = NO |
|
210 # If you use Microsoft's C++/CLI language, you should set this option to YES to |
|
211 # enable parsing support. |
|
212 |
|
213 CPP_CLI_SUPPORT = NO |
|
214 |
|
215 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC |
|
216 # tag is set to YES, then doxygen will reuse the documentation of the first |
|
217 # member in the group (if any) for the other members of the group. By default |
|
218 # all members of a group must be documented explicitly. |
|
219 |
|
220 DISTRIBUTE_GROUP_DOC = NO |
|
221 |
|
222 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of |
|
223 # the same type (for instance a group of public functions) to be put as a |
|
224 # subgroup of that type (e.g. under the Public Functions section). Set it to |
|
225 # NO to prevent subgrouping. Alternatively, this can be done per class using |
|
226 # the \nosubgrouping command. |
|
227 |
|
228 SUBGROUPING = YES |
|
229 |
|
230 #--------------------------------------------------------------------------- |
|
231 # Build related configuration options |
|
232 #--------------------------------------------------------------------------- |
|
233 |
|
234 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in |
|
235 # documentation are documented, even if no documentation was available. |
|
236 # Private class members and static file members will be hidden unless |
|
237 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES |
|
238 |
|
239 EXTRACT_ALL = NO |
|
240 |
|
241 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class |
|
242 # will be included in the documentation. |
|
243 |
|
244 EXTRACT_PRIVATE = NO |
|
245 |
|
246 # If the EXTRACT_STATIC tag is set to YES all static members of a file |
|
247 # will be included in the documentation. |
|
248 |
|
249 EXTRACT_STATIC = NO |
|
250 |
|
251 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) |
|
252 # defined locally in source files will be included in the documentation. |
|
253 # If set to NO only classes defined in header files are included. |
|
254 |
|
255 EXTRACT_LOCAL_CLASSES = YES |
|
256 |
|
257 # This flag is only useful for Objective-C code. When set to YES local |
|
258 # methods, which are defined in the implementation section but not in |
|
259 # the interface are included in the documentation. |
|
260 # If set to NO (the default) only methods in the interface are included. |
|
261 |
|
262 EXTRACT_LOCAL_METHODS = NO |
|
263 |
|
264 # If this flag is set to YES, the members of anonymous namespaces will be extracted |
|
265 # and appear in the documentation as a namespace called 'anonymous_namespace{file}', |
|
266 # where file will be replaced with the base name of the file that contains the anonymous |
|
267 # namespace. By default anonymous namespace are hidden. |
|
268 |
|
269 EXTRACT_ANON_NSPACES = NO |
|
270 |
|
271 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all |
|
272 # undocumented members of documented classes, files or namespaces. |
|
273 # If set to NO (the default) these members will be included in the |
|
274 # various overviews, but no documentation section is generated. |
|
275 # This option has no effect if EXTRACT_ALL is enabled. |
|
276 |
|
277 HIDE_UNDOC_MEMBERS = NO |
|
278 |
|
279 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all |
|
280 # undocumented classes that are normally visible in the class hierarchy. |
|
281 # If set to NO (the default) these classes will be included in the various |
|
282 # overviews. This option has no effect if EXTRACT_ALL is enabled. |
|
283 |
|
284 HIDE_UNDOC_CLASSES = NO |
|
285 |
|
286 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all |
|
287 # friend (class|struct|union) declarations. |
|
288 # If set to NO (the default) these declarations will be included in the |
|
289 # documentation. |
|
290 |
|
291 HIDE_FRIEND_COMPOUNDS = NO |
|
292 |
|
293 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any |
|
294 # documentation blocks found inside the body of a function. |
|
295 # If set to NO (the default) these blocks will be appended to the |
|
296 # function's detailed documentation block. |
|
297 |
|
298 HIDE_IN_BODY_DOCS = NO |
|
299 |
|
300 # The INTERNAL_DOCS tag determines if documentation |
|
301 # that is typed after a \internal command is included. If the tag is set |
|
302 # to NO (the default) then the documentation will be excluded. |
|
303 # Set it to YES to include the internal documentation. |
|
304 |
|
305 INTERNAL_DOCS = NO |
|
306 |
|
307 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate |
|
308 # file names in lower-case letters. If set to YES upper-case letters are also |
|
309 # allowed. This is useful if you have classes or files whose names only differ |
|
310 # in case and if your file system supports case sensitive file names. Windows |
|
311 # and Mac users are advised to set this option to NO. |
|
312 |
|
313 CASE_SENSE_NAMES = YES |
|
314 |
|
315 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen |
|
316 # will show members with their full class and namespace scopes in the |
|
317 # documentation. If set to YES the scope will be hidden. |
|
318 |
|
319 HIDE_SCOPE_NAMES = NO |
|
320 |
|
321 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen |
|
322 # will put a list of the files that are included by a file in the documentation |
|
323 # of that file. |
|
324 |
|
325 SHOW_INCLUDE_FILES = YES |
|
326 |
|
327 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] |
|
328 # is inserted in the documentation for inline members. |
|
329 |
|
330 INLINE_INFO = YES |
|
331 |
|
332 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen |
|
333 # will sort the (detailed) documentation of file and class members |
|
334 # alphabetically by member name. If set to NO the members will appear in |
|
335 # declaration order. |
|
336 |
|
337 SORT_MEMBER_DOCS = YES |
|
338 |
|
339 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the |
|
340 # brief documentation of file, namespace and class members alphabetically |
|
341 # by member name. If set to NO (the default) the members will appear in |
|
342 # declaration order. |
|
343 |
|
344 SORT_BRIEF_DOCS = NO |
|
345 |
|
346 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be |
|
347 # sorted by fully-qualified names, including namespaces. If set to |
|
348 # NO (the default), the class list will be sorted only by class name, |
|
349 # not including the namespace part. |
|
350 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. |
|
351 # Note: This option applies only to the class list, not to the |
|
352 # alphabetical list. |
|
353 |
|
354 SORT_BY_SCOPE_NAME = NO |
|
355 |
|
356 # The GENERATE_TODOLIST tag can be used to enable (YES) or |
|
357 # disable (NO) the todo list. This list is created by putting \todo |
|
358 # commands in the documentation. |
|
359 |
|
360 GENERATE_TODOLIST = YES |
|
361 |
|
362 # The GENERATE_TESTLIST tag can be used to enable (YES) or |
|
363 # disable (NO) the test list. This list is created by putting \test |
|
364 # commands in the documentation. |
|
365 |
|
366 GENERATE_TESTLIST = YES |
|
367 |
|
368 # The GENERATE_BUGLIST tag can be used to enable (YES) or |
|
369 # disable (NO) the bug list. This list is created by putting \bug |
|
370 # commands in the documentation. |
|
371 |
|
372 GENERATE_BUGLIST = YES |
|
373 |
|
374 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or |
|
375 # disable (NO) the deprecated list. This list is created by putting |
|
376 # \deprecated commands in the documentation. |
|
377 |
|
378 GENERATE_DEPRECATEDLIST= YES |
|
379 |
|
380 # The ENABLED_SECTIONS tag can be used to enable conditional |
|
381 # documentation sections, marked by \if sectionname ... \endif. |
|
382 |
|
383 ENABLED_SECTIONS = |
|
384 |
|
385 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines |
|
386 # the initial value of a variable or define consists of for it to appear in |
|
387 # the documentation. If the initializer consists of more lines than specified |
|
388 # here it will be hidden. Use a value of 0 to hide initializers completely. |
|
389 # The appearance of the initializer of individual variables and defines in the |
|
390 # documentation can be controlled using \showinitializer or \hideinitializer |
|
391 # command in the documentation regardless of this setting. |
|
392 |
|
393 MAX_INITIALIZER_LINES = 30 |
|
394 |
|
395 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated |
|
396 # at the bottom of the documentation of classes and structs. If set to YES the |
|
397 # list will mention the files that were used to generate the documentation. |
|
398 |
|
399 SHOW_USED_FILES = YES |
|
400 |
|
401 # If the sources in your project are distributed over multiple directories |
|
402 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy |
|
403 # in the documentation. The default is NO. |
|
404 |
|
405 SHOW_DIRECTORIES = NO |
|
406 |
|
407 # The FILE_VERSION_FILTER tag can be used to specify a program or script that |
|
408 # doxygen should invoke to get the current version for each file (typically from the |
|
409 # version control system). Doxygen will invoke the program by executing (via |
|
410 # popen()) the command <command> <input-file>, where <command> is the value of |
|
411 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file |
|
412 # provided by doxygen. Whatever the program writes to standard output |
|
413 # is used as the file version. See the manual for examples. |
|
414 |
|
415 FILE_VERSION_FILTER = |
|
416 |
|
417 #--------------------------------------------------------------------------- |
|
418 # configuration options related to warning and progress messages |
|
419 #--------------------------------------------------------------------------- |
|
420 |
|
421 # The QUIET tag can be used to turn on/off the messages that are generated |
|
422 # by doxygen. Possible values are YES and NO. If left blank NO is used. |
|
423 |
|
424 QUIET = NO |
|
425 |
|
426 # The WARNINGS tag can be used to turn on/off the warning messages that are |
|
427 # generated by doxygen. Possible values are YES and NO. If left blank |
|
428 # NO is used. |
|
429 |
|
430 WARNINGS = YES |
|
431 |
|
432 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings |
|
433 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will |
|
434 # automatically be disabled. |
|
435 |
|
436 WARN_IF_UNDOCUMENTED = YES |
|
437 |
|
438 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for |
|
439 # potential errors in the documentation, such as not documenting some |
|
440 # parameters in a documented function, or documenting parameters that |
|
441 # don't exist or using markup commands wrongly. |
|
442 |
|
443 WARN_IF_DOC_ERROR = YES |
|
444 |
|
445 # This WARN_NO_PARAMDOC option can be abled to get warnings for |
|
446 # functions that are documented, but have no documentation for their parameters |
|
447 # or return value. If set to NO (the default) doxygen will only warn about |
|
448 # wrong or incomplete parameter documentation, but not about the absence of |
|
449 # documentation. |
|
450 |
|
451 WARN_NO_PARAMDOC = NO |
|
452 |
|
453 # The WARN_FORMAT tag determines the format of the warning messages that |
|
454 # doxygen can produce. The string should contain the $file, $line, and $text |
|
455 # tags, which will be replaced by the file and line number from which the |
|
456 # warning originated and the warning text. Optionally the format may contain |
|
457 # $version, which will be replaced by the version of the file (if it could |
|
458 # be obtained via FILE_VERSION_FILTER) |
|
459 |
|
460 WARN_FORMAT = "$file:$line: $text" |
|
461 |
|
462 # The WARN_LOGFILE tag can be used to specify a file to which warning |
|
463 # and error messages should be written. If left blank the output is written |
|
464 # to stderr. |
|
465 |
|
466 WARN_LOGFILE = |
|
467 |
|
468 #--------------------------------------------------------------------------- |
|
469 # configuration options related to the input files |
|
470 #--------------------------------------------------------------------------- |
|
471 |
|
472 # The INPUT tag can be used to specify the files and/or directories that contain |
|
473 # documented source files. You may enter file names like "myfile.cpp" or |
|
474 # directories like "/usr/src/myproject". Separate the files or directories |
|
475 # with spaces. |
|
476 |
|
477 INPUT = $(JAVA_SRC_ROOT)/javaextensions/midppush/pushcontroller/inc $(JAVA_SRC_ROOT)/javaextensions/midppush/pushcontroller/src $(JAVA_SRC_ROOT)/javaextensions/midppush/pushregistryplugin/inc $(JAVA_SRC_ROOT)/javaextensions/jsr/midp/push/javasrc/com/nokia/mj/impl/push $(JAVA_SRC_ROOT)/javacommons/gcfbase/inc $(JAVA_SRC_ROOT)/javacommons/gcfbase/javasrc/com/nokia/mj/impl/gcf |
|
478 |
|
479 # This tag can be used to specify the character encoding of the source files that |
|
480 # doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default |
|
481 # input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding. |
|
482 # See http://www.gnu.org/software/libiconv for the list of possible encodings. |
|
483 |
|
484 INPUT_ENCODING = UTF-8 |
|
485 |
|
486 # If the value of the INPUT tag contains directories, you can use the |
|
487 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp |
|
488 # and *.h) to filter out the source-files in the directories. If left |
|
489 # blank the following patterns are tested: |
|
490 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx |
|
491 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py |
|
492 |
|
493 FILE_PATTERNS = |
|
494 |
|
495 # The RECURSIVE tag can be used to turn specify whether or not subdirectories |
|
496 # should be searched for input files as well. Possible values are YES and NO. |
|
497 # If left blank NO is used. |
|
498 |
|
499 RECURSIVE = YES |
|
500 |
|
501 # The EXCLUDE tag can be used to specify files and/or directories that should |
|
502 # excluded from the INPUT source files. This way you can easily exclude a |
|
503 # subdirectory from a directory tree whose root is specified with the INPUT tag. |
|
504 |
|
505 EXCLUDE = |
|
506 |
|
507 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or |
|
508 # directories that are symbolic links (a Unix filesystem feature) are excluded |
|
509 # from the input. |
|
510 |
|
511 EXCLUDE_SYMLINKS = NO |
|
512 |
|
513 # If the value of the INPUT tag contains directories, you can use the |
|
514 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude |
|
515 # certain files from those directories. Note that the wildcards are matched |
|
516 # against the file with absolute path, so to exclude all test directories |
|
517 # for example use the pattern */test/* |
|
518 |
|
519 EXCLUDE_PATTERNS = |
|
520 |
|
521 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names |
|
522 # (namespaces, classes, functions, etc.) that should be excluded from the output. |
|
523 # The symbol name can be a fully qualified name, a word, or if the wildcard * is used, |
|
524 # a substring. Examples: ANamespace, AClass, AClass::ANamespace, ANamespace::*Test |
|
525 |
|
526 EXCLUDE_SYMBOLS = |
|
527 |
|
528 # The EXAMPLE_PATH tag can be used to specify one or more files or |
|
529 # directories that contain example code fragments that are included (see |
|
530 # the \include command). |
|
531 |
|
532 EXAMPLE_PATH = |
|
533 |
|
534 # If the value of the EXAMPLE_PATH tag contains directories, you can use the |
|
535 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp |
|
536 # and *.h) to filter out the source-files in the directories. If left |
|
537 # blank all files are included. |
|
538 |
|
539 EXAMPLE_PATTERNS = |
|
540 |
|
541 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be |
|
542 # searched for input files to be used with the \include or \dontinclude |
|
543 # commands irrespective of the value of the RECURSIVE tag. |
|
544 # Possible values are YES and NO. If left blank NO is used. |
|
545 |
|
546 EXAMPLE_RECURSIVE = NO |
|
547 |
|
548 # The IMAGE_PATH tag can be used to specify one or more files or |
|
549 # directories that contain image that are included in the documentation (see |
|
550 # the \image command). |
|
551 |
|
552 IMAGE_PATH = |
|
553 |
|
554 # The INPUT_FILTER tag can be used to specify a program that doxygen should |
|
555 # invoke to filter for each input file. Doxygen will invoke the filter program |
|
556 # by executing (via popen()) the command <filter> <input-file>, where <filter> |
|
557 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an |
|
558 # input file. Doxygen will then use the output that the filter program writes |
|
559 # to standard output. If FILTER_PATTERNS is specified, this tag will be |
|
560 # ignored. |
|
561 |
|
562 INPUT_FILTER = |
|
563 |
|
564 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern |
|
565 # basis. Doxygen will compare the file name with each pattern and apply the |
|
566 # filter if there is a match. The filters are a list of the form: |
|
567 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further |
|
568 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER |
|
569 # is applied to all files. |
|
570 |
|
571 FILTER_PATTERNS = |
|
572 |
|
573 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using |
|
574 # INPUT_FILTER) will be used to filter the input files when producing source |
|
575 # files to browse (i.e. when SOURCE_BROWSER is set to YES). |
|
576 |
|
577 FILTER_SOURCE_FILES = NO |
|
578 |
|
579 #--------------------------------------------------------------------------- |
|
580 # configuration options related to source browsing |
|
581 #--------------------------------------------------------------------------- |
|
582 |
|
583 # If the SOURCE_BROWSER tag is set to YES then a list of source files will |
|
584 # be generated. Documented entities will be cross-referenced with these sources. |
|
585 # Note: To get rid of all source code in the generated output, make sure also |
|
586 # VERBATIM_HEADERS is set to NO. |
|
587 |
|
588 SOURCE_BROWSER = NO |
|
589 |
|
590 # Setting the INLINE_SOURCES tag to YES will include the body |
|
591 # of functions and classes directly in the documentation. |
|
592 |
|
593 INLINE_SOURCES = NO |
|
594 |
|
595 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct |
|
596 # doxygen to hide any special comment blocks from generated source code |
|
597 # fragments. Normal C and C++ comments will always remain visible. |
|
598 |
|
599 STRIP_CODE_COMMENTS = YES |
|
600 |
|
601 # If the REFERENCED_BY_RELATION tag is set to YES (the default) |
|
602 # then for each documented function all documented |
|
603 # functions referencing it will be listed. |
|
604 |
|
605 REFERENCED_BY_RELATION = YES |
|
606 |
|
607 # If the REFERENCES_RELATION tag is set to YES (the default) |
|
608 # then for each documented function all documented entities |
|
609 # called/used by that function will be listed. |
|
610 |
|
611 REFERENCES_RELATION = YES |
|
612 |
|
613 # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) |
|
614 # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from |
|
615 # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will |
|
616 # link to the source code. Otherwise they will link to the documentstion. |
|
617 |
|
618 REFERENCES_LINK_SOURCE = YES |
|
619 |
|
620 # If the USE_HTAGS tag is set to YES then the references to source code |
|
621 # will point to the HTML generated by the htags(1) tool instead of doxygen |
|
622 # built-in source browser. The htags tool is part of GNU's global source |
|
623 # tagging system (see http://www.gnu.org/software/global/global.html). You |
|
624 # will need version 4.8.6 or higher. |
|
625 |
|
626 USE_HTAGS = NO |
|
627 |
|
628 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen |
|
629 # will generate a verbatim copy of the header file for each class for |
|
630 # which an include is specified. Set to NO to disable this. |
|
631 |
|
632 VERBATIM_HEADERS = YES |
|
633 |
|
634 #--------------------------------------------------------------------------- |
|
635 # configuration options related to the alphabetical class index |
|
636 #--------------------------------------------------------------------------- |
|
637 |
|
638 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index |
|
639 # of all compounds will be generated. Enable this if the project |
|
640 # contains a lot of classes, structs, unions or interfaces. |
|
641 |
|
642 ALPHABETICAL_INDEX = NO |
|
643 |
|
644 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then |
|
645 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns |
|
646 # in which this list will be split (can be a number in the range [1..20]) |
|
647 |
|
648 COLS_IN_ALPHA_INDEX = 5 |
|
649 |
|
650 # In case all classes in a project start with a common prefix, all |
|
651 # classes will be put under the same header in the alphabetical index. |
|
652 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that |
|
653 # should be ignored while generating the index headers. |
|
654 |
|
655 IGNORE_PREFIX = |
|
656 |
|
657 #--------------------------------------------------------------------------- |
|
658 # configuration options related to the HTML output |
|
659 #--------------------------------------------------------------------------- |
|
660 |
|
661 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will |
|
662 # generate HTML output. |
|
663 |
|
664 GENERATE_HTML = YES |
|
665 |
|
666 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. |
|
667 # If a relative path is entered the value of OUTPUT_DIRECTORY will be |
|
668 # put in front of it. If left blank `html' will be used as the default path. |
|
669 |
|
670 HTML_OUTPUT = html |
|
671 |
|
672 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for |
|
673 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank |
|
674 # doxygen will generate files with .html extension. |
|
675 |
|
676 HTML_FILE_EXTENSION = .html |
|
677 |
|
678 # The HTML_HEADER tag can be used to specify a personal HTML header for |
|
679 # each generated HTML page. If it is left blank doxygen will generate a |
|
680 # standard header. |
|
681 |
|
682 HTML_HEADER = |
|
683 |
|
684 # The HTML_FOOTER tag can be used to specify a personal HTML footer for |
|
685 # each generated HTML page. If it is left blank doxygen will generate a |
|
686 # standard footer. |
|
687 |
|
688 HTML_FOOTER = |
|
689 |
|
690 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading |
|
691 # style sheet that is used by each HTML page. It can be used to |
|
692 # fine-tune the look of the HTML output. If the tag is left blank doxygen |
|
693 # will generate a default style sheet. Note that doxygen will try to copy |
|
694 # the style sheet file to the HTML output directory, so don't put your own |
|
695 # stylesheet in the HTML output directory as well, or it will be erased! |
|
696 |
|
697 HTML_STYLESHEET = |
|
698 |
|
699 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, |
|
700 # files or namespaces will be aligned in HTML using tables. If set to |
|
701 # NO a bullet list will be used. |
|
702 |
|
703 HTML_ALIGN_MEMBERS = YES |
|
704 |
|
705 # If the GENERATE_HTMLHELP tag is set to YES, additional index files |
|
706 # will be generated that can be used as input for tools like the |
|
707 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) |
|
708 # of the generated HTML documentation. |
|
709 |
|
710 GENERATE_HTMLHELP = NO |
|
711 |
|
712 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML |
|
713 # documentation will contain sections that can be hidden and shown after the |
|
714 # page has loaded. For this to work a browser that supports |
|
715 # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox |
|
716 # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). |
|
717 |
|
718 HTML_DYNAMIC_SECTIONS = NO |
|
719 |
|
720 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can |
|
721 # be used to specify the file name of the resulting .chm file. You |
|
722 # can add a path in front of the file if the result should not be |
|
723 # written to the html output directory. |
|
724 |
|
725 CHM_FILE = |
|
726 |
|
727 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can |
|
728 # be used to specify the location (absolute path including file name) of |
|
729 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run |
|
730 # the HTML help compiler on the generated index.hhp. |
|
731 |
|
732 HHC_LOCATION = |
|
733 |
|
734 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag |
|
735 # controls if a separate .chi index file is generated (YES) or that |
|
736 # it should be included in the master .chm file (NO). |
|
737 |
|
738 GENERATE_CHI = NO |
|
739 |
|
740 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag |
|
741 # controls whether a binary table of contents is generated (YES) or a |
|
742 # normal table of contents (NO) in the .chm file. |
|
743 |
|
744 BINARY_TOC = NO |
|
745 |
|
746 # The TOC_EXPAND flag can be set to YES to add extra items for group members |
|
747 # to the contents of the HTML help documentation and to the tree view. |
|
748 |
|
749 TOC_EXPAND = NO |
|
750 |
|
751 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at |
|
752 # top of each HTML page. The value NO (the default) enables the index and |
|
753 # the value YES disables it. |
|
754 |
|
755 DISABLE_INDEX = NO |
|
756 |
|
757 # This tag can be used to set the number of enum values (range [1..20]) |
|
758 # that doxygen will group on one line in the generated HTML documentation. |
|
759 |
|
760 ENUM_VALUES_PER_LINE = 4 |
|
761 |
|
762 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be |
|
763 # generated containing a tree-like index structure (just like the one that |
|
764 # is generated for HTML Help). For this to work a browser that supports |
|
765 # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, |
|
766 # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are |
|
767 # probably better off using the HTML help feature. |
|
768 |
|
769 GENERATE_TREEVIEW = NO |
|
770 |
|
771 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be |
|
772 # used to set the initial width (in pixels) of the frame in which the tree |
|
773 # is shown. |
|
774 |
|
775 TREEVIEW_WIDTH = 250 |
|
776 |
|
777 #--------------------------------------------------------------------------- |
|
778 # configuration options related to the LaTeX output |
|
779 #--------------------------------------------------------------------------- |
|
780 |
|
781 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will |
|
782 # generate Latex output. |
|
783 |
|
784 GENERATE_LATEX = NO |
|
785 |
|
786 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. |
|
787 # If a relative path is entered the value of OUTPUT_DIRECTORY will be |
|
788 # put in front of it. If left blank `latex' will be used as the default path. |
|
789 |
|
790 LATEX_OUTPUT = latex |
|
791 |
|
792 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be |
|
793 # invoked. If left blank `latex' will be used as the default command name. |
|
794 |
|
795 LATEX_CMD_NAME = latex |
|
796 |
|
797 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to |
|
798 # generate index for LaTeX. If left blank `makeindex' will be used as the |
|
799 # default command name. |
|
800 |
|
801 MAKEINDEX_CMD_NAME = makeindex |
|
802 |
|
803 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact |
|
804 # LaTeX documents. This may be useful for small projects and may help to |
|
805 # save some trees in general. |
|
806 |
|
807 COMPACT_LATEX = NO |
|
808 |
|
809 # The PAPER_TYPE tag can be used to set the paper type that is used |
|
810 # by the printer. Possible values are: a4, a4wide, letter, legal and |
|
811 # executive. If left blank a4wide will be used. |
|
812 |
|
813 PAPER_TYPE = a4wide |
|
814 |
|
815 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX |
|
816 # packages that should be included in the LaTeX output. |
|
817 |
|
818 EXTRA_PACKAGES = |
|
819 |
|
820 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for |
|
821 # the generated latex document. The header should contain everything until |
|
822 # the first chapter. If it is left blank doxygen will generate a |
|
823 # standard header. Notice: only use this tag if you know what you are doing! |
|
824 |
|
825 LATEX_HEADER = |
|
826 |
|
827 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated |
|
828 # is prepared for conversion to pdf (using ps2pdf). The pdf file will |
|
829 # contain links (just like the HTML output) instead of page references |
|
830 # This makes the output suitable for online browsing using a pdf viewer. |
|
831 |
|
832 PDF_HYPERLINKS = NO |
|
833 |
|
834 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of |
|
835 # plain latex in the generated Makefile. Set this option to YES to get a |
|
836 # higher quality PDF documentation. |
|
837 |
|
838 USE_PDFLATEX = NO |
|
839 |
|
840 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. |
|
841 # command to the generated LaTeX files. This will instruct LaTeX to keep |
|
842 # running if errors occur, instead of asking the user for help. |
|
843 # This option is also used when generating formulas in HTML. |
|
844 |
|
845 LATEX_BATCHMODE = NO |
|
846 |
|
847 # If LATEX_HIDE_INDICES is set to YES then doxygen will not |
|
848 # include the index chapters (such as File Index, Compound Index, etc.) |
|
849 # in the output. |
|
850 |
|
851 LATEX_HIDE_INDICES = NO |
|
852 |
|
853 #--------------------------------------------------------------------------- |
|
854 # configuration options related to the RTF output |
|
855 #--------------------------------------------------------------------------- |
|
856 |
|
857 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output |
|
858 # The RTF output is optimized for Word 97 and may not look very pretty with |
|
859 # other RTF readers or editors. |
|
860 |
|
861 GENERATE_RTF = NO |
|
862 |
|
863 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. |
|
864 # If a relative path is entered the value of OUTPUT_DIRECTORY will be |
|
865 # put in front of it. If left blank `rtf' will be used as the default path. |
|
866 |
|
867 RTF_OUTPUT = rtf |
|
868 |
|
869 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact |
|
870 # RTF documents. This may be useful for small projects and may help to |
|
871 # save some trees in general. |
|
872 |
|
873 COMPACT_RTF = NO |
|
874 |
|
875 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated |
|
876 # will contain hyperlink fields. The RTF file will |
|
877 # contain links (just like the HTML output) instead of page references. |
|
878 # This makes the output suitable for online browsing using WORD or other |
|
879 # programs which support those fields. |
|
880 # Note: wordpad (write) and others do not support links. |
|
881 |
|
882 RTF_HYPERLINKS = NO |
|
883 |
|
884 # Load stylesheet definitions from file. Syntax is similar to doxygen's |
|
885 # config file, i.e. a series of assignments. You only have to provide |
|
886 # replacements, missing definitions are set to their default value. |
|
887 |
|
888 RTF_STYLESHEET_FILE = |
|
889 |
|
890 # Set optional variables used in the generation of an rtf document. |
|
891 # Syntax is similar to doxygen's config file. |
|
892 |
|
893 RTF_EXTENSIONS_FILE = |
|
894 |
|
895 #--------------------------------------------------------------------------- |
|
896 # configuration options related to the man page output |
|
897 #--------------------------------------------------------------------------- |
|
898 |
|
899 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will |
|
900 # generate man pages |
|
901 |
|
902 GENERATE_MAN = NO |
|
903 |
|
904 # The MAN_OUTPUT tag is used to specify where the man pages will be put. |
|
905 # If a relative path is entered the value of OUTPUT_DIRECTORY will be |
|
906 # put in front of it. If left blank `man' will be used as the default path. |
|
907 |
|
908 MAN_OUTPUT = man |
|
909 |
|
910 # The MAN_EXTENSION tag determines the extension that is added to |
|
911 # the generated man pages (default is the subroutine's section .3) |
|
912 |
|
913 MAN_EXTENSION = .3 |
|
914 |
|
915 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, |
|
916 # then it will generate one additional man file for each entity |
|
917 # documented in the real man page(s). These additional files |
|
918 # only source the real man page, but without them the man command |
|
919 # would be unable to find the correct page. The default is NO. |
|
920 |
|
921 MAN_LINKS = NO |
|
922 |
|
923 #--------------------------------------------------------------------------- |
|
924 # configuration options related to the XML output |
|
925 #--------------------------------------------------------------------------- |
|
926 |
|
927 # If the GENERATE_XML tag is set to YES Doxygen will |
|
928 # generate an XML file that captures the structure of |
|
929 # the code including all documentation. |
|
930 |
|
931 GENERATE_XML = NO |
|
932 |
|
933 # The XML_OUTPUT tag is used to specify where the XML pages will be put. |
|
934 # If a relative path is entered the value of OUTPUT_DIRECTORY will be |
|
935 # put in front of it. If left blank `xml' will be used as the default path. |
|
936 |
|
937 XML_OUTPUT = xml |
|
938 |
|
939 # The XML_SCHEMA tag can be used to specify an XML schema, |
|
940 # which can be used by a validating XML parser to check the |
|
941 # syntax of the XML files. |
|
942 |
|
943 XML_SCHEMA = |
|
944 |
|
945 # The XML_DTD tag can be used to specify an XML DTD, |
|
946 # which can be used by a validating XML parser to check the |
|
947 # syntax of the XML files. |
|
948 |
|
949 XML_DTD = |
|
950 |
|
951 # If the XML_PROGRAMLISTING tag is set to YES Doxygen will |
|
952 # dump the program listings (including syntax highlighting |
|
953 # and cross-referencing information) to the XML output. Note that |
|
954 # enabling this will significantly increase the size of the XML output. |
|
955 |
|
956 XML_PROGRAMLISTING = YES |
|
957 |
|
958 #--------------------------------------------------------------------------- |
|
959 # configuration options for the AutoGen Definitions output |
|
960 #--------------------------------------------------------------------------- |
|
961 |
|
962 # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will |
|
963 # generate an AutoGen Definitions (see autogen.sf.net) file |
|
964 # that captures the structure of the code including all |
|
965 # documentation. Note that this feature is still experimental |
|
966 # and incomplete at the moment. |
|
967 |
|
968 GENERATE_AUTOGEN_DEF = NO |
|
969 |
|
970 #--------------------------------------------------------------------------- |
|
971 # configuration options related to the Perl module output |
|
972 #--------------------------------------------------------------------------- |
|
973 |
|
974 # If the GENERATE_PERLMOD tag is set to YES Doxygen will |
|
975 # generate a Perl module file that captures the structure of |
|
976 # the code including all documentation. Note that this |
|
977 # feature is still experimental and incomplete at the |
|
978 # moment. |
|
979 |
|
980 GENERATE_PERLMOD = NO |
|
981 |
|
982 # If the PERLMOD_LATEX tag is set to YES Doxygen will generate |
|
983 # the necessary Makefile rules, Perl scripts and LaTeX code to be able |
|
984 # to generate PDF and DVI output from the Perl module output. |
|
985 |
|
986 PERLMOD_LATEX = NO |
|
987 |
|
988 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be |
|
989 # nicely formatted so it can be parsed by a human reader. This is useful |
|
990 # if you want to understand what is going on. On the other hand, if this |
|
991 # tag is set to NO the size of the Perl module output will be much smaller |
|
992 # and Perl will parse it just the same. |
|
993 |
|
994 PERLMOD_PRETTY = YES |
|
995 |
|
996 # The names of the make variables in the generated doxyrules.make file |
|
997 # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. |
|
998 # This is useful so different doxyrules.make files included by the same |
|
999 # Makefile don't overwrite each other's variables. |
|
1000 |
|
1001 PERLMOD_MAKEVAR_PREFIX = |
|
1002 |
|
1003 #--------------------------------------------------------------------------- |
|
1004 # Configuration options related to the preprocessor |
|
1005 #--------------------------------------------------------------------------- |
|
1006 |
|
1007 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will |
|
1008 # evaluate all C-preprocessor directives found in the sources and include |
|
1009 # files. |
|
1010 |
|
1011 ENABLE_PREPROCESSING = YES |
|
1012 |
|
1013 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro |
|
1014 # names in the source code. If set to NO (the default) only conditional |
|
1015 # compilation will be performed. Macro expansion can be done in a controlled |
|
1016 # way by setting EXPAND_ONLY_PREDEF to YES. |
|
1017 |
|
1018 MACRO_EXPANSION = NO |
|
1019 |
|
1020 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES |
|
1021 # then the macro expansion is limited to the macros specified with the |
|
1022 # PREDEFINED and EXPAND_AS_DEFINED tags. |
|
1023 |
|
1024 EXPAND_ONLY_PREDEF = NO |
|
1025 |
|
1026 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files |
|
1027 # in the INCLUDE_PATH (see below) will be search if a #include is found. |
|
1028 |
|
1029 SEARCH_INCLUDES = YES |
|
1030 |
|
1031 # The INCLUDE_PATH tag can be used to specify one or more directories that |
|
1032 # contain include files that are not input files but should be processed by |
|
1033 # the preprocessor. |
|
1034 |
|
1035 INCLUDE_PATH = |
|
1036 |
|
1037 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard |
|
1038 # patterns (like *.h and *.hpp) to filter out the header-files in the |
|
1039 # directories. If left blank, the patterns specified with FILE_PATTERNS will |
|
1040 # be used. |
|
1041 |
|
1042 INCLUDE_FILE_PATTERNS = |
|
1043 |
|
1044 # The PREDEFINED tag can be used to specify one or more macro names that |
|
1045 # are defined before the preprocessor is started (similar to the -D option of |
|
1046 # gcc). The argument of the tag is a list of macros of the form: name |
|
1047 # or name=definition (no spaces). If the definition and the = are |
|
1048 # omitted =1 is assumed. To prevent a macro definition from being |
|
1049 # undefined via #undef or recursively expanded use the := operator |
|
1050 # instead of the = operator. |
|
1051 |
|
1052 PREDEFINED = |
|
1053 |
|
1054 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then |
|
1055 # this tag can be used to specify a list of macro names that should be expanded. |
|
1056 # The macro definition that is found in the sources will be used. |
|
1057 # Use the PREDEFINED tag if you want to use a different macro definition. |
|
1058 |
|
1059 EXPAND_AS_DEFINED = |
|
1060 |
|
1061 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then |
|
1062 # doxygen's preprocessor will remove all function-like macros that are alone |
|
1063 # on a line, have an all uppercase name, and do not end with a semicolon. Such |
|
1064 # function macros are typically used for boiler-plate code, and will confuse |
|
1065 # the parser if not removed. |
|
1066 |
|
1067 SKIP_FUNCTION_MACROS = YES |
|
1068 |
|
1069 #--------------------------------------------------------------------------- |
|
1070 # Configuration::additions related to external references |
|
1071 #--------------------------------------------------------------------------- |
|
1072 |
|
1073 # The TAGFILES option can be used to specify one or more tagfiles. |
|
1074 # Optionally an initial location of the external documentation |
|
1075 # can be added for each tagfile. The format of a tag file without |
|
1076 # this location is as follows: |
|
1077 # TAGFILES = file1 file2 ... |
|
1078 # Adding location for the tag files is done as follows: |
|
1079 # TAGFILES = file1=loc1 "file2 = loc2" ... |
|
1080 # where "loc1" and "loc2" can be relative or absolute paths or |
|
1081 # URLs. If a location is present for each tag, the installdox tool |
|
1082 # does not have to be run to correct the links. |
|
1083 # Note that each tag file must have a unique name |
|
1084 # (where the name does NOT include the path) |
|
1085 # If a tag file is not located in the directory in which doxygen |
|
1086 # is run, you must also specify the path to the tagfile here. |
|
1087 |
|
1088 TAGFILES = |
|
1089 |
|
1090 # When a file name is specified after GENERATE_TAGFILE, doxygen will create |
|
1091 # a tag file that is based on the input files it reads. |
|
1092 |
|
1093 GENERATE_TAGFILE = |
|
1094 |
|
1095 # If the ALLEXTERNALS tag is set to YES all external classes will be listed |
|
1096 # in the class index. If set to NO only the inherited external classes |
|
1097 # will be listed. |
|
1098 |
|
1099 ALLEXTERNALS = NO |
|
1100 |
|
1101 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed |
|
1102 # in the modules index. If set to NO, only the current project's groups will |
|
1103 # be listed. |
|
1104 |
|
1105 EXTERNAL_GROUPS = YES |
|
1106 |
|
1107 # The PERL_PATH should be the absolute path and name of the perl script |
|
1108 # interpreter (i.e. the result of `which perl'). |
|
1109 |
|
1110 PERL_PATH = /usr/bin/perl |
|
1111 |
|
1112 #--------------------------------------------------------------------------- |
|
1113 # Configuration options related to the dot tool |
|
1114 #--------------------------------------------------------------------------- |
|
1115 |
|
1116 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will |
|
1117 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base |
|
1118 # or super classes. Setting the tag to NO turns the diagrams off. Note that |
|
1119 # this option is superseded by the HAVE_DOT option below. This is only a |
|
1120 # fallback. It is recommended to install and use dot, since it yields more |
|
1121 # powerful graphs. |
|
1122 |
|
1123 CLASS_DIAGRAMS = YES |
|
1124 |
|
1125 # You can define message sequence charts within doxygen comments using the \msc |
|
1126 # command. Doxygen will then run the mscgen tool (see http://www.mcternan.me.uk/mscgen/) to |
|
1127 # produce the chart and insert it in the documentation. The MSCGEN_PATH tag allows you to |
|
1128 # specify the directory where the mscgen tool resides. If left empty the tool is assumed to |
|
1129 # be found in the default search path. |
|
1130 |
|
1131 MSCGEN_PATH = |
|
1132 # If set to YES, the inheritance and collaboration graphs will hide |
|
1133 # inheritance and usage relations if the target is undocumented |
|
1134 # or is not a class. |
|
1135 |
|
1136 HIDE_UNDOC_RELATIONS = YES |
|
1137 |
|
1138 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is |
|
1139 # available from the path. This tool is part of Graphviz, a graph visualization |
|
1140 # toolkit. The other options in this section |
|
1141 # have no effect if this option is set to NO (the default) |
|
1142 |
|
1143 HAVE_DOT = NO |
|
1144 |
|
1145 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen |
|
1146 # will generate a graph for each documented class showing the direct and |
|
1147 # indirect inheritance relations. Setting this tag to YES will force the |
|
1148 # the CLASS_DIAGRAMS tag to NO. |
|
1149 |
|
1150 CLASS_GRAPH = YES |
|
1151 |
|
1152 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen |
|
1153 # will generate a graph for each documented class showing the direct and |
|
1154 # indirect implementation dependencies (inheritance, containment, and |
|
1155 # class references variables) of the class with other documented classes. |
|
1156 |
|
1157 COLLABORATION_GRAPH = YES |
|
1158 |
|
1159 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen |
|
1160 # will generate a graph for groups, showing the direct groups dependencies |
|
1161 |
|
1162 GROUP_GRAPHS = YES |
|
1163 |
|
1164 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and |
|
1165 # collaboration diagrams in a style similar to the OMG's Unified Modeling |
|
1166 # Language. |
|
1167 |
|
1168 UML_LOOK = NO |
|
1169 |
|
1170 # If set to YES, the inheritance and collaboration graphs will show the |
|
1171 # relations between templates and their instances. |
|
1172 |
|
1173 TEMPLATE_RELATIONS = NO |
|
1174 |
|
1175 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT |
|
1176 # tags are set to YES then doxygen will generate a graph for each documented |
|
1177 # file showing the direct and indirect include dependencies of the file with |
|
1178 # other documented files. |
|
1179 |
|
1180 INCLUDE_GRAPH = YES |
|
1181 |
|
1182 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and |
|
1183 # HAVE_DOT tags are set to YES then doxygen will generate a graph for each |
|
1184 # documented header file showing the documented files that directly or |
|
1185 # indirectly include this file. |
|
1186 |
|
1187 INCLUDED_BY_GRAPH = YES |
|
1188 |
|
1189 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will |
|
1190 # generate a call dependency graph for every global function or class method. |
|
1191 # Note that enabling this option will significantly increase the time of a run. |
|
1192 # So in most cases it will be better to enable call graphs for selected |
|
1193 # functions only using the \callgraph command. |
|
1194 |
|
1195 CALL_GRAPH = NO |
|
1196 |
|
1197 # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then doxygen will |
|
1198 # generate a caller dependency graph for every global function or class method. |
|
1199 # Note that enabling this option will significantly increase the time of a run. |
|
1200 # So in most cases it will be better to enable caller graphs for selected |
|
1201 # functions only using the \callergraph command. |
|
1202 |
|
1203 CALLER_GRAPH = NO |
|
1204 |
|
1205 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen |
|
1206 # will graphical hierarchy of all classes instead of a textual one. |
|
1207 |
|
1208 GRAPHICAL_HIERARCHY = YES |
|
1209 |
|
1210 # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES |
|
1211 # then doxygen will show the dependencies a directory has on other directories |
|
1212 # in a graphical way. The dependency relations are determined by the #include |
|
1213 # relations between the files in the directories. |
|
1214 |
|
1215 DIRECTORY_GRAPH = YES |
|
1216 |
|
1217 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images |
|
1218 # generated by dot. Possible values are png, jpg, or gif |
|
1219 # If left blank png will be used. |
|
1220 |
|
1221 DOT_IMAGE_FORMAT = png |
|
1222 |
|
1223 # The tag DOT_PATH can be used to specify the path where the dot tool can be |
|
1224 # found. If left blank, it is assumed the dot tool can be found in the path. |
|
1225 |
|
1226 DOT_PATH = |
|
1227 |
|
1228 # The DOTFILE_DIRS tag can be used to specify one or more directories that |
|
1229 # contain dot files that are included in the documentation (see the |
|
1230 # \dotfile command). |
|
1231 |
|
1232 DOTFILE_DIRS = |
|
1233 |
|
1234 # The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of |
|
1235 # nodes that will be shown in the graph. If the number of nodes in a graph |
|
1236 # becomes larger than this value, doxygen will truncate the graph, which is |
|
1237 # visualized by representing a node as a red box. Note that doxygen if the number |
|
1238 # of direct children of the root node in a graph is already larger than |
|
1239 # MAX_DOT_GRAPH_NOTES then the graph will not be shown at all. Also note |
|
1240 # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. |
|
1241 |
|
1242 DOT_GRAPH_MAX_NODES = 50 |
|
1243 |
|
1244 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the |
|
1245 # graphs generated by dot. A depth value of 3 means that only nodes reachable |
|
1246 # from the root by following a path via at most 3 edges will be shown. Nodes |
|
1247 # that lay further from the root node will be omitted. Note that setting this |
|
1248 # option to 1 or 2 may greatly reduce the computation time needed for large |
|
1249 # code bases. Also note that the size of a graph can be further restricted by |
|
1250 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. |
|
1251 |
|
1252 MAX_DOT_GRAPH_DEPTH = 0 |
|
1253 |
|
1254 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent |
|
1255 # background. This is disabled by default, which results in a white background. |
|
1256 # Warning: Depending on the platform used, enabling this option may lead to |
|
1257 # badly anti-aliased labels on the edges of a graph (i.e. they become hard to |
|
1258 # read). |
|
1259 |
|
1260 DOT_TRANSPARENT = NO |
|
1261 |
|
1262 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output |
|
1263 # files in one run (i.e. multiple -o and -T options on the command line). This |
|
1264 # makes dot run faster, but since only newer versions of dot (>1.8.10) |
|
1265 # support this, this feature is disabled by default. |
|
1266 |
|
1267 DOT_MULTI_TARGETS = NO |
|
1268 |
|
1269 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will |
|
1270 # generate a legend page explaining the meaning of the various boxes and |
|
1271 # arrows in the dot generated graphs. |
|
1272 |
|
1273 GENERATE_LEGEND = YES |
|
1274 |
|
1275 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will |
|
1276 # remove the intermediate dot files that are used to generate |
|
1277 # the various graphs. |
|
1278 |
|
1279 DOT_CLEANUP = YES |
|
1280 |
|
1281 #--------------------------------------------------------------------------- |
|
1282 # Configuration::additions related to the search engine |
|
1283 #--------------------------------------------------------------------------- |
|
1284 |
|
1285 # The SEARCHENGINE tag specifies whether or not a search engine should be |
|
1286 # used. If set to NO the values of all tags below this one will be ignored. |
|
1287 |
|
1288 SEARCHENGINE = NO |