diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2008-03-09 18:07:08 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2008-03-09 18:07:08 (GMT) |
commit | 8051d0cfdd4afcaaa8458926c807d471691dfb5e (patch) | |
tree | c4662316ba92eaf4d6ffbd9d06645fd4c6e85195 /src/config.l | |
parent | 2ddfaa1d80f702ad70073ac8721219935e1ab074 (diff) | |
download | Doxygen-8051d0cfdd4afcaaa8458926c807d471691dfb5e.zip Doxygen-8051d0cfdd4afcaaa8458926c807d471691dfb5e.tar.gz Doxygen-8051d0cfdd4afcaaa8458926c807d471691dfb5e.tar.bz2 |
Release-1.5.5-20080309
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/config.l b/src/config.l index b317828..7d61563 100644 --- a/src/config.l +++ b/src/config.l @@ -1972,6 +1972,20 @@ void Config::create() "in the documentation. The default is NO.\n", FALSE ); + cb = addBool( + "SHOW_FILES", + "Set the SHOW_FILES tag to NO to disable the generation of the Files page.\n" + "This will remove the Files entry from the Quick Index and from the \n" + "Folder Tree View (if specified). The default is YES.\n", + TRUE + ); + cb = addBool( + "SHOW_NAMESPACES", + "Set the SHOW_NAMESPACES tag to NO to disable the generation of the \n" + "Namespaces page. This will remove the Namespaces entry from the Quick Index\n" + "and from the Folder Tree View (if specified). The default is YES.\n", + TRUE + ); cs = addString( "FILE_VERSION_FILTER", "The FILE_VERSION_FILTER tag can be used to specify a program or script that \n" "doxygen should invoke to get the current version for each file (typically from \n" |