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