version 0.1.14
[fms.git] / include / stringfunctions.h
index 5222ca1..bf5119d 100644 (file)
@@ -8,6 +8,12 @@
 namespace StringFunctions\r
 {\r
 \r
+inline const bool Convert(const std::string &input, std::string &output)\r
+{\r
+       output=input;\r
+       return true;\r
+}\r
+\r
 /**\r
        \brief Converts a string into any other type\r
        \param input[in] string to convert\r
@@ -85,6 +91,13 @@ std::string TrimWhitespace(const std::string &str);
 void UpperCase(const std::string &str, std::string &output);\r
 \r
 /**\r
+       \brief Converts a string to lower case\r
+       \param str string to convert to lower case\r
+       \param[out] string converted to lower case\r
+*/\r
+void LowerCase(const std::string &str, std::string &output);\r
+\r
+/**\r
        \brief Decodes a URI encoded string\r
        \param aSrc string that is URI encoded\r
        \return URI decoded input string\r