]> git.sesse.net Git - ccbs/blob - bigscreen/widestring.h
67f00b5b59d96eae4d9b35474ca7a35141287606
[ccbs] / bigscreen / widestring.h
1 #ifndef _WIDESTRING_H
2 #define _WIDESTRING_H 1
3
4 #include <string>
5
6 // UCS-4 string with support for getting from UTF-8
7 class widestring : public std::wstring
8 {
9 public:
10         widestring(const char *from);
11         void operator= (const char *from);
12 };
13
14 #endif /* !defined(_WIDESTRING_H) */