diff options
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 1d5c533..665acc1 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -79,6 +79,12 @@ public: static std::string EscapeSpaces(const char*); /** + * Return a capitalized string (i.e the first letter is uppercased, all other + * are lowercased). + */ + static std::string Capitalized(std::string&); + + /** * Replace Windows file system slashes with Unix-style slashes. */ static void ConvertToUnixSlashes(std::string& path); |