diff options
author | Will Schroeder <will.schroeder@kitware.com> | 2001-01-11 19:47:38 (GMT) |
---|---|---|
committer | Will Schroeder <will.schroeder@kitware.com> | 2001-01-11 19:47:38 (GMT) |
commit | 88bbc0c30d3b98416e2bebea724a10ddb6eb5da2 (patch) | |
tree | 804510dc4cb816fbdddad5bdd7fc6e910b5fc357 /Source/cmDSWWriter.h | |
parent | 336f3e80dbaf2f648a1a058538b8a8b1062156fa (diff) | |
download | CMake-88bbc0c30d3b98416e2bebea724a10ddb6eb5da2.zip CMake-88bbc0c30d3b98416e2bebea724a10ddb6eb5da2.tar.gz CMake-88bbc0c30d3b98416e2bebea724a10ddb6eb5da2.tar.bz2 |
ENH:Documentation and cleanups
Diffstat (limited to 'Source/cmDSWWriter.h')
-rw-r--r-- | Source/cmDSWWriter.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/Source/cmDSWWriter.h b/Source/cmDSWWriter.h index 6a476b7..b2d4fe8 100644 --- a/Source/cmDSWWriter.h +++ b/Source/cmDSWWriter.h @@ -13,22 +13,33 @@ See COPYRIGHT.txt for copyright details. =========================================================================*/ -/** - * cmDSWMakefile - class to write a microsoft DSW file. - */ #ifndef cmDSWMakefile_h #define cmDSWMakefile_h + #include "cmStandardIncludes.h" #include "cmMakefile.h" class cmDSPMakefile; class cmMSProjectGenerator; +/** \class cmDSWMakefile + * \brief Write a Microsoft Visual C++ DSW (workspace) file. + * + * cmDSWMakefile produces a Microsoft Visual C++ DSW (workspace) file. + */ class cmDSWMakefile { public: + /** + * Constructor. + */ cmDSWMakefile(cmMakefile*); + + /** + * Generate the DSW workspace file. + */ virtual void OutputDSWFile(); + private: void FindAllCMakeListsFiles(const char* subdir, std::vector<cmMSProjectGenerator*>&); |