summaryrefslogtreecommitdiffstats
path: root/Source/cmDirectory.h
diff options
context:
space:
mode:
authorWill Schroeder <will.schroeder@kitware.com>2001-01-11 19:47:38 (GMT)
committerWill Schroeder <will.schroeder@kitware.com>2001-01-11 19:47:38 (GMT)
commit88bbc0c30d3b98416e2bebea724a10ddb6eb5da2 (patch)
tree804510dc4cb816fbdddad5bdd7fc6e910b5fc357 /Source/cmDirectory.h
parent336f3e80dbaf2f648a1a058538b8a8b1062156fa (diff)
downloadCMake-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.h7
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