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