| 1 |
# Doxyfile 1.5.3 |
# Doxyfile 1.5.4 |
| 2 |
|
|
| 3 |
# This file describes the settings to be used by the documentation system |
# This file describes the settings to be used by the documentation system |
| 4 |
# doxygen (www.doxygen.org) for a project |
# doxygen (www.doxygen.org) for a project |
| 215 |
|
|
| 216 |
CPP_CLI_SUPPORT = NO |
CPP_CLI_SUPPORT = NO |
| 217 |
|
|
| 218 |
|
# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. |
| 219 |
|
# Doxygen will parse them like normal C++ but will assume all classes use public |
| 220 |
|
# instead of private inheritance when no explicit protection keyword is present. |
| 221 |
|
|
| 222 |
|
SIP_SUPPORT = NO |
| 223 |
|
|
| 224 |
# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC |
# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC |
| 225 |
# tag is set to YES, then doxygen will reuse the documentation of the first |
# tag is set to YES, then doxygen will reuse the documentation of the first |
| 226 |
# member in the group (if any) for the other members of the group. By default |
# member in the group (if any) for the other members of the group. By default |
| 236 |
|
|
| 237 |
SUBGROUPING = YES |
SUBGROUPING = YES |
| 238 |
|
|
| 239 |
|
# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct (or union) is |
| 240 |
|
# documented as struct with the name of the typedef. So |
| 241 |
|
# typedef struct TypeS {} TypeT, will appear in the documentation as a struct |
| 242 |
|
# with name TypeT. When disabled the typedef will appear as a member of a file, |
| 243 |
|
# namespace, or class. And the struct will be named TypeS. This can typically |
| 244 |
|
# be useful for C code where the coding convention is that all structs are |
| 245 |
|
# typedef'ed and only the typedef is referenced never the struct's name. |
| 246 |
|
|
| 247 |
|
TYPEDEF_HIDES_STRUCT = NO |
| 248 |
|
|
| 249 |
#--------------------------------------------------------------------------- |
#--------------------------------------------------------------------------- |
| 250 |
# Build related configuration options |
# Build related configuration options |
| 251 |
#--------------------------------------------------------------------------- |
#--------------------------------------------------------------------------- |
| 476 |
# $version, which will be replaced by the version of the file (if it could |
# $version, which will be replaced by the version of the file (if it could |
| 477 |
# be obtained via FILE_VERSION_FILTER) |
# be obtained via FILE_VERSION_FILTER) |
| 478 |
|
|
| 479 |
WARN_FORMAT = "$file:$line: $text " |
WARN_FORMAT = "$file:$line: $text " |
| 480 |
|
|
| 481 |
# The WARN_LOGFILE tag can be used to specify a file to which warning |
# The WARN_LOGFILE tag can be used to specify a file to which warning |
| 482 |
# and error messages should be written. If left blank the output is written |
# and error messages should be written. If left blank the output is written |
| 507 |
# and *.h) to filter out the source-files in the directories. If left |
# and *.h) to filter out the source-files in the directories. If left |
| 508 |
# blank the following patterns are tested: |
# blank the following patterns are tested: |
| 509 |
# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx |
# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx |
| 510 |
# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py |
# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 |
| 511 |
|
|
| 512 |
FILE_PATTERNS = *.h \ |
FILE_PATTERNS = *.h \ |
| 513 |
*.cpp \ |
*.cpp \ |
| 514 |
*.rb \ |
*.rb \ |
| 515 |
*.dox |
*.dox |
| 516 |
|
|
| 517 |
# The RECURSIVE tag can be used to turn specify whether or not subdirectories |
# The RECURSIVE tag can be used to turn specify whether or not subdirectories |
| 538 |
# against the file with absolute path, so to exclude all test directories |
# against the file with absolute path, so to exclude all test directories |
| 539 |
# for example use the pattern */test/* |
# for example use the pattern */test/* |
| 540 |
|
|
| 541 |
EXCLUDE_PATTERNS = */old_gui/* */Test*.h */Test*.cpp |
EXCLUDE_PATTERNS = */old_gui/* \ |
| 542 |
|
*/Test*.h \ |
| 543 |
|
*/Test*.cpp |
| 544 |
|
|
| 545 |
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names |
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names |
| 546 |
# (namespaces, classes, functions, etc.) that should be excluded from the output. |
# (namespaces, classes, functions, etc.) that should be excluded from the output. |
| 553 |
# directories that contain example code fragments that are included (see |
# directories that contain example code fragments that are included (see |
| 554 |
# the \include command). |
# the \include command). |
| 555 |
|
|
| 556 |
EXAMPLE_PATH = . rangesCtrl/samples |
EXAMPLE_PATH = . \ |
| 557 |
|
rangesCtrl/samples |
| 558 |
|
|
| 559 |
# If the value of the EXAMPLE_PATH tag contains directories, you can use the |
# If the value of the EXAMPLE_PATH tag contains directories, you can use the |
| 560 |
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp |
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp |
| 574 |
# directories that contain image that are included in the documentation (see |
# directories that contain image that are included in the documentation (see |
| 575 |
# the \image command). |
# the \image command). |
| 576 |
|
|
| 577 |
IMAGE_PATH = img/ rangesCtrl/img/ |
IMAGE_PATH = img/ \ |
| 578 |
|
rangesCtrl/img/ |
| 579 |
|
|
| 580 |
# The INPUT_FILTER tag can be used to specify a program that doxygen should |
# The INPUT_FILTER tag can be used to specify a program that doxygen should |
| 581 |
# invoke to filter for each input file. Doxygen will invoke the filter program |
# invoke to filter for each input file. Doxygen will invoke the filter program |
| 585 |
# to standard output. If FILTER_PATTERNS is specified, this tag will be |
# to standard output. If FILTER_PATTERNS is specified, this tag will be |
| 586 |
# ignored. |
# ignored. |
| 587 |
|
|
| 588 |
INPUT_FILTER = "/usr/bin/nkf -S -w" |
INPUT_FILTER = "/usr/bin/nkf -S -w " |
| 589 |
|
|
| 590 |
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern |
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern |
| 591 |
# basis. Doxygen will compare the file name with each pattern and apply the |
# basis. Doxygen will compare the file name with each pattern and apply the |