Line 7... |
Line 7... |
7 |
# TAG = value [value, ...]
|
7 |
# TAG = value [value, ...]
|
8 |
# For lists items can also be appended using:
|
8 |
# For lists items can also be appended using:
|
9 |
# TAG += value [value, ...]
|
9 |
# TAG += value [value, ...]
|
10 |
# Values that contain spaces should be placed between quotes (" ")
|
10 |
# Values that contain spaces should be placed between quotes (" ")
|
11 |
|
11 |
|
- |
|
12 |
TAGFILES =
|
- |
|
13 |
|
12 |
#---------------------------------------------------------------------------
|
14 |
#---------------------------------------------------------------------------
|
13 |
# General configuration options
|
15 |
# General configuration options
|
14 |
#---------------------------------------------------------------------------
|
16 |
#---------------------------------------------------------------------------
|
15 |
|
17 |
|
16 |
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
|
18 |
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
|
Line 62... |
Line 64... |
62 |
# undocumented members of documented classes, files or namespaces.
|
64 |
# undocumented members of documented classes, files or namespaces.
|
63 |
# If set to NO (the default) these members will be included in the
|
65 |
# If set to NO (the default) these members will be included in the
|
64 |
# various overviews, but no documentation section is generated.
|
66 |
# various overviews, but no documentation section is generated.
|
65 |
# This option has no effect if EXTRACT_ALL is enabled.
|
67 |
# This option has no effect if EXTRACT_ALL is enabled.
|
66 |
|
68 |
|
67 |
HIDE_UNDOC_MEMBERS = YES
|
69 |
HIDE_UNDOC_MEMBERS = NO
|
68 |
|
70 |
|
69 |
# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
|
71 |
# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
|
70 |
# undocumented classes that are normally visible in the class hierarchy.
|
72 |
# undocumented classes that are normally visible in the class hierarchy.
|
71 |
# If set to NO (the default) these class will be included in the various
|
73 |
# If set to NO (the default) these class will be included in the various
|
72 |
# overviews. This option has no effect if EXTRACT_ALL is enabled.
|
74 |
# overviews. This option has no effect if EXTRACT_ALL is enabled.
|
73 |
|
75 |
|
74 |
HIDE_UNDOC_CLASSES = YES
|
76 |
HIDE_UNDOC_CLASSES = NO
|
75 |
|
77 |
|
76 |
# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
|
78 |
# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
|
77 |
# include brief member descriptions after the members that are listed in
|
79 |
# include brief member descriptions after the members that are listed in
|
78 |
# the file and class documentation (similar to JavaDoc).
|
80 |
# the file and class documentation (similar to JavaDoc).
|
79 |
# Set to NO to disable this.
|
81 |
# Set to NO to disable this.
|
Line 83... |
Line 85... |
83 |
# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
|
85 |
# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
|
84 |
# the brief description of a member or function before the detailed description.
|
86 |
# the brief description of a member or function before the detailed description.
|
85 |
# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
|
87 |
# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
|
86 |
# brief descriptions will be completely suppressed.
|
88 |
# brief descriptions will be completely suppressed.
|
87 |
|
89 |
|
88 |
REPEAT_BRIEF = NO
|
90 |
REPEAT_BRIEF = YES
|
89 |
|
91 |
|
90 |
# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
|
92 |
# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
|
91 |
# Doxygen will generate a detailed section even if there is only a brief
|
93 |
# Doxygen will generate a detailed section even if there is only a brief
|
92 |
# description.
|
94 |
# description.
|
93 |
|
95 |
|
94 |
ALWAYS_DETAILED_SEC = NO
|
96 |
ALWAYS_DETAILED_SEC = YES
|
95 |
|
97 |
|
96 |
# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
|
98 |
# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
|
97 |
# path before files name in the file list and in the header files. If set
|
99 |
# path before files name in the file list and in the header files. If set
|
98 |
# to NO the shortest path that makes the file name unique will be used.
|
100 |
# to NO the shortest path that makes the file name unique will be used.
|
99 |
|
101 |
|
Line 302... |
Line 304... |
302 |
# If the value of the INPUT tag contains directories, you can use the
|
304 |
# If the value of the INPUT tag contains directories, you can use the
|
303 |
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
|
305 |
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
|
304 |
# and *.h) to filter out the source-files in the directories. If left
|
306 |
# and *.h) to filter out the source-files in the directories. If left
|
305 |
# blank all files are included.
|
307 |
# blank all files are included.
|
306 |
|
308 |
|
307 |
FILE_PATTERNS = "*.h"
|
309 |
FILE_PATTERNS = *.h *.doxygen
|
308 |
|
310 |
|
309 |
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
|
311 |
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
|
310 |
# should be searched for input files as well. Possible values are YES and NO.
|
312 |
# should be searched for input files as well. Possible values are YES and NO.
|
311 |
# If left blank NO is used.
|
313 |
# If left blank NO is used.
|
312 |
|
314 |
|
Line 380... |
Line 382... |
380 |
|
382 |
|
381 |
|
383 |
|
382 |
# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
|
384 |
# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
|
383 |
# generate Latex output.
|
385 |
# generate Latex output.
|
384 |
|
386 |
|
385 |
GENERATE_LATEX = yes
|
387 |
GENERATE_LATEX = no
|
386 |
|
388 |
|
387 |
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
|
389 |
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
|
388 |
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
390 |
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
389 |
# put in front of it. If left blank `latex' will be used as the default path.
|
391 |
# put in front of it. If left blank `latex' will be used as the default path.
|
390 |
|
392 |
|
Line 411... |
Line 413... |
411 |
# the generated latex document. The header should contain everything until
|
413 |
# the generated latex document. The header should contain everything until
|
412 |
# the first chapter. If it is left blank doxygen will generate a
|
414 |
# the first chapter. If it is left blank doxygen will generate a
|
413 |
# standard header. Notice: only use this tag if you know what you are doing!
|
415 |
# standard header. Notice: only use this tag if you know what you are doing!
|
414 |
|
416 |
|
415 |
LATEX_HEADER =
|
417 |
LATEX_HEADER =
|
416 |
LATEX_FOOTER = blob
|
418 |
LATEX_FOOTER =
|
417 |
|
419 |
|
418 |
# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
|
420 |
# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
|
419 |
# is prepared for conversion to pdf (using ps2pdf). The pdf file will
|
421 |
# is prepared for conversion to pdf (using ps2pdf). The pdf file will
|
420 |
# contain links (just like the HTML output) instead of page references
|
422 |
# contain links (just like the HTML output) instead of page references
|
421 |
# This makes the output suitable for online browsing using a pdf viewer.
|
423 |
# This makes the output suitable for online browsing using a pdf viewer.
|
Line 437... |
Line 439... |
437 |
|
439 |
|
438 |
#---------------------------------------------------------------------------
|
440 |
#---------------------------------------------------------------------------
|
439 |
# configuration options related to the RTF output
|
441 |
# configuration options related to the RTF output
|
440 |
#---------------------------------------------------------------------------
|
442 |
#---------------------------------------------------------------------------
|
441 |
|
443 |
|
442 |
GENERATE_HTML = NO
|
444 |
GENERATE_HTML = YES
|
443 |
GENERATE_RTF = NO
|
445 |
GENERATE_RTF = NO
|
444 |
GENERATE_MAN = NO
|
446 |
GENERATE_MAN = NO
|
445 |
HAVE_DOT = NO
|
447 |
HAVE_DOT = NO
|
446 |
SEARCHENGINE = NO
|
448 |
SEARCHENGINE = NO
|