diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-04-21 13:56:37 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-04-21 13:56:37 (GMT) |
commit | ebd0447bcc5d3d75214c847954bfda1d2e8c97f5 (patch) | |
tree | 3db0b381fb31e078de0540249c869667f44ec68d /src/config.l | |
parent | 3cd2917eca7d09a30636b2b16efcd187bc3bf7c0 (diff) | |
download | Doxygen-ebd0447bcc5d3d75214c847954bfda1d2e8c97f5.zip Doxygen-ebd0447bcc5d3d75214c847954bfda1d2e8c97f5.tar.gz Doxygen-ebd0447bcc5d3d75214c847954bfda1d2e8c97f5.tar.bz2 |
Release-1.3-20030421
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/config.l b/src/config.l index 184763d..875f9e6 100644 --- a/src/config.l +++ b/src/config.l @@ -1078,6 +1078,7 @@ void Config::check() filePatternList.append("*.h++"); filePatternList.append("*.idl"); filePatternList.append("*.odl"); + filePatternList.append("*.cs"); } // add default pattern if needed @@ -1527,13 +1528,6 @@ void Config::create() FALSE ); cb = addBool( - "VERBATIM_HEADERS", - "If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen \n" - "will generate a verbatim copy of the header file for each class for \n" - "which an include is specified. Set to NO to disable this. \n", - TRUE - ); - cb = addBool( "SHOW_INCLUDE_FILES", "If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen \n" "will put list of the files that are included by a file in the documentation \n" @@ -1741,7 +1735,7 @@ void Config::create() "and *.h) to filter out the source-files in the directories. If left \n" "blank the following patterns are tested: \n" "*.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp \n" - "*.h++ *.idl *.odl\n" + "*.h++ *.idl *.odl *.cs\n" ); cb = addBool( "RECURSIVE", @@ -1851,6 +1845,13 @@ void Config::create() TRUE ); cb->addDependency("SOURCE_BROWSER"); + cb = addBool( + "VERBATIM_HEADERS", + "If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen \n" + "will generate a verbatim copy of the header file for each class for \n" + "which an include is specified. Set to NO to disable this. \n", + TRUE + ); //----------------------------------------------------------------------------------------------- addInfo( "Index","configuration options related to the alphabetical class index"); //----------------------------------------------------------------------------------------------- |