diff options
author | Kristopher Ives <kris@leetbook2.(none)> | 2009-10-24 23:30:27 -0700 |
---|---|---|
committer | Kristopher Ives <kris@leetbook2.(none)> | 2009-10-24 23:30:27 -0700 |
commit | 63e779552c4c5c07369d954891714e151e7073be (patch) | |
tree | 4358b2434000996e42201e595ce9dad21f5e2075 /Doxyfile | |
parent | 929325c7f3b41fdb37a39c42c135402f163657c5 (diff) | |
download | mobilebling-63e779552c4c5c07369d954891714e151e7073be.tar.gz mobilebling-63e779552c4c5c07369d954891714e151e7073be.tar.bz2 |
Updated Doxyfile to ignore "_" and "Private" structs/classes.
Removed plugins/ from doc. Separate Doxfile and docs/plugins is warranted.
Diffstat (limited to 'Doxyfile')
-rw-r--r-- | Doxyfile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -568,7 +568,7 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = include/ src/ plugins/ +INPUT = include/ src/ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is @@ -585,7 +585,7 @@ INPUT_ENCODING = UTF-8 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 -FILE_PATTERNS = *.cpp *.h +FILE_PATTERNS = *.h *.cpp # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. @@ -611,7 +611,7 @@ EXCLUDE_SYMLINKS = NO # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* -EXCLUDE_PATTERNS = +EXCLUDE_PATTERNS = private* # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the @@ -619,7 +619,7 @@ EXCLUDE_PATTERNS = # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test -EXCLUDE_SYMBOLS = +EXCLUDE_SYMBOLS = _* *Private* # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see @@ -752,7 +752,7 @@ COLS_IN_ALPHA_INDEX = 5 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. -IGNORE_PREFIX = +IGNORE_PREFIX = _,Private #--------------------------------------------------------------------------- # configuration options related to the HTML output @@ -1257,7 +1257,7 @@ INCLUDE_FILE_PATTERNS = # undefined via #undef or recursively expanded use the := operator # instead of the = operator. -PREDEFINED = +PREDEFINED = DOXYGEN_SHOULD_SKIP_THIS # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. |