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/cmDirectory.h | |
parent | 336f3e80dbaf2f648a1a058538b8a8b1062156fa (diff) | |
download | CMake-88bbc0c30d3b98416e2bebea724a10ddb6eb5da2.zip CMake-88bbc0c30d3b98416e2bebea724a10ddb6eb5da2.tar.gz CMake-88bbc0c30d3b98416e2bebea724a10ddb6eb5da2.tar.bz2 |
ENH:Documentation and cleanups
Diffstat (limited to 'Source/cmDirectory.h')
-rw-r--r-- | Source/cmDirectory.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmDirectory.h b/Source/cmDirectory.h index e2b92c3..3400f3d 100644 --- a/Source/cmDirectory.h +++ b/Source/cmDirectory.h @@ -18,20 +18,19 @@ #include "cmStandardIncludes.h" #include "cmSystemTools.h" + /** \class cmDirectory * \brief Portable directory/filename traversal. * * cmDirectory provides a portable way of finding the names of the files * in a system directory. * - * cmDirectory works with windows and unix only. + * cmDirectory currently works with Windows and Unix operating systems. */ - class cmDirectory { public: - /** * Load the specified directory and load the names of the files * in that directory. 0 is returned if the directory can not be @@ -52,7 +51,7 @@ public: private: std::vector<std::string> m_Files; // Array of Files std::string m_Path; // Path to Open'ed directory -}; // End Class: cmDirectory +}; // End Class: cmDirectory #endif |