Esempio n. 1
0
	void StringUtil::toUpperCase(WString& str) 
	{
		std::transform(str.begin(), str.end(), str.begin(), toupper);
	}
Esempio n. 2
0
//
// Change to all upper case characters.
//
WString WString::ToUpper ( void ) const
{
    WString strResult = *this;
    std::transform ( strResult.begin(), strResult.end(), strResult.begin(), ::toupper );
    return strResult;
}
Esempio n. 3
0
	String toString(const WString& source)
	{
		return String(source.begin(), source.end());
	}