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