X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=bigscreen%2Fwidestring.h;fp=bigscreen%2Fwidestring.h;h=ca899bd5a68a5359efd09a4eb975acbc0e4bec54;hb=141adc9f5acb9ed1e98a206abb0d2e9cfdce6d2f;hp=0000000000000000000000000000000000000000;hpb=8c70d386605dbacdb807bd213c5b153761055086;p=ccbs diff --git a/bigscreen/widestring.h b/bigscreen/widestring.h new file mode 100644 index 0000000..ca899bd --- /dev/null +++ b/bigscreen/widestring.h @@ -0,0 +1,13 @@ +#ifndef _WIDESTRING_H +#define _WIDESTRING_H 1 + +#include + +// UCS-4 string with support for getting from UTF-8 +class widestring : public std::wstring +{ +public: + void operator= (const char *from); +}; + +#endif /* !defined(_WIDESTRING_H) */