diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-10-30 05:36:41 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-10-30 05:36:41 +0300 |
commit | 70d22ef07b945b799f6a8d39cbfbb1b6624f61a9 (patch) | |
tree | a731100dea038d3e1bd4bdd241fc0aca652911fa /core/utf8.h | |
parent | 735fefae8bdfa3845493d15e87a7c31a454f8662 (diff) |
utf8
Diffstat (limited to 'core/utf8.h')
-rw-r--r-- | core/utf8.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/utf8.h b/core/utf8.h new file mode 100644 index 0000000..b386a3c --- /dev/null +++ b/core/utf8.h @@ -0,0 +1,8 @@ +#ifndef UTF8_H +#define UTF8_H + +std::string toUTF8(std::wstring str); +std::string toUTF8(std::string str); +std::wstring toUTF16(std::string str); + +#endif |