2 #define _WIDESTRING_H 1
6 // UCS-4 string with support for getting from UTF-8
7 class widestring : public std::wstring
11 widestring(const char *from);
12 widestring(const std::string &from);
13 widestring(const std::wstring &from);
14 void operator= (const char *from);
17 #endif /* !defined(_WIDESTRING_H) */