Utility.hpp
Go to the documentation of this file.
00001 
00002 
00003 
00004 #ifndef GOSU_UTILITY_HPP
00005 #define GOSU_UTILITY_HPP
00006 
00007 #include <string>
00008 #include <vector>
00009 
00010 namespace Gosu
00011 {
00013     std::wstring utf8ToWstring(const std::string& utf8);
00015     std::string wstringToUTF8(const std::wstring& ws);
00016     
00018     std::wstring widen(const std::string& s);
00020     std::string narrow(const std::wstring& ws);
00021     
00025     std::string language();
00026 }
00027 
00028 #endif