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