* - exctract also private, static methods and fields into documentation - doxygen
authorstranger <dariusz.wiechecki@gmail.com>
Fri, 4 Jan 2008 15:40:01 +0000 (15:40 +0000)
committerstranger <dariusz.wiechecki@gmail.com>
Fri, 4 Jan 2008 15:40:01 +0000 (15:40 +0000)
git-svn-id: file:///svnroot/mdictionary/trunk@228 5bde0345-f819-0410-ac75-e5045f9217cc

Doxyfile

index 69f3694..b1166f5 100644 (file)
--- a/Doxyfile
+++ b/Doxyfile
@@ -233,25 +233,25 @@ EXTRACT_ALL            = NO
 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class 
 # will be included in the documentation.
 
-EXTRACT_PRIVATE        = NO
+EXTRACT_PRIVATE        = YES
 
 # If the EXTRACT_STATIC tag is set to YES all static members of a file 
 # will be included in the documentation.
 
-EXTRACT_STATIC         = NO
+EXTRACT_STATIC         = YES
 
 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 
 # defined locally in source files will be included in the documentation. 
 # If set to NO only classes defined in header files are included.
 
-EXTRACT_LOCAL_CLASSES  = NO
+EXTRACT_LOCAL_CLASSES  = YES
 
 # This flag is only useful for Objective-C code. When set to YES local 
 # methods, which are defined in the implementation section but not in 
 # the interface are included in the documentation. 
 # If set to NO (the default) only methods in the interface are included.
 
-EXTRACT_LOCAL_METHODS  = NO
+EXTRACT_LOCAL_METHODS  = YES
 
 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 
 # undocumented members of documented classes, files or namespaces.