]> git.sesse.net Git - ccbs/blob - bigscreen/widestring.h
Add the framework for a top 10 screen.
[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         widestring(const std::string &from);
13         widestring(const std::wstring &from);
14         void operator= (const char *from);
15 };
16
17 #endif /* !defined(_WIDESTRING_H) */