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