27 #ifndef _CEGUIIconvStringTranscoder_h_
28 #define _CEGUIIconvStringTranscoder_h_
30 #include "CEGUI/StringTranscoder.h"
44 String stringFromUTF16(
const uint16* input)
const;
45 String stringFromStdWString(
const std::wstring& input)
const;
uint16 * stringToUTF16(const String &input) const
Transcode the given string to a UTF-16 encoded buffer.
Main namespace for Crazy Eddie's GUI Library.
Definition: arch_overview.dox:1
void deleteUTF16Buffer(uint16 *input) const
deletes a buffer returned from the stringToUTF16 function.
Interface for a string transcoding utility. Instances of classes that implement this interface can be...
Definition: StringTranscoder.h:41
std::wstring stringToStdWString(const String &input) const
Transcode the given string to a std::wstring object.
Implementation of StringTranscoder that uses iconv.
Definition: IconvStringTranscoder.h:36
String class used within the GUI system.
Definition: String.h:62