]> git.sesse.net Git - ccbs/blob - bigscreen/widestring.h
437428c8ad316ff2c05341935053fb81c2275f07
[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();
11         widestring(const char *from);
12         void operator= (const char *from);
13 };
14
15 #endif /* !defined(_WIDESTRING_H) */