concordia-library/concordia/common/text_utils.hpp
rjawor 9358863f8d text utils stub
Former-commit-id: d4459220f5696839d98848e9c30a61c084763a91
2014-04-24 08:36:48 +02:00

31 lines
619 B
C++

#ifndef TEXT_UTILS_HDR
#define TEXT_UTILS_HDR
#include <string>
using namespace std;
/*! Utility class for performing simple string operations.
*/
class TextUtils {
public:
/*! A method for converting all string letters to lower case.
\param text input string
\returns lower case version of the input string.
*/
static string toLowerCase(const string & text);
/*! A method for converting all string letters to upper case.
\param text input string
\returns upper case version of the input string.
*/
static string toUpperCase(const string & text);
private:
};
#endif