diff options
Diffstat (limited to 'cpp/include/IceUtil/StringUtil.h')
-rw-r--r-- | cpp/include/IceUtil/StringUtil.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cpp/include/IceUtil/StringUtil.h b/cpp/include/IceUtil/StringUtil.h index 351739cc311..1a1c55281f9 100644 --- a/cpp/include/IceUtil/StringUtil.h +++ b/cpp/include/IceUtil/StringUtil.h @@ -65,6 +65,18 @@ ICE_UTIL_API std::string errorToString(int, LPCVOID = NULL); #else ICE_UTIL_API std::string errorToString(int); #endif + +// +// Functions to convert to to all lower/upper case +// +ICE_UTIL_API std::string toLower(const std::string&); +ICE_UTIL_API std::string toUpper(const std::string&); + +// +// Remove all whitespace from a string +// +ICE_UTIL_API std::string removeWhitespace(const std::string&); + } #endif |