コード例 #1
0
ファイル: BsString.cpp プロジェクト: MarcoROG/BansheeEngine
	void StringUtil::toUpperCase(WString& str) 
	{
		std::transform(str.begin(), str.end(), str.begin(), toupper);
	}
コード例 #2
0
ファイル: WString.hpp プロジェクト: Barashuk/Moder-Funcs
//
// 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;
}
コード例 #3
0
ファイル: BsString.cpp プロジェクト: MarcoROG/BansheeEngine
	String toString(const WString& source)
	{
		return String(source.begin(), source.end());
	}