All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
UnicodeConverter.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 
7 #include <string>
8 #include <vector>
9 
10 namespace Eegeo
11 {
12  namespace Unicode
13  {
18  {
19  public:
21  static u32 DecodeUtf8Character(const char *text, size_t bufferSize, int pos, int *nextPos);
22 
27  static void Utf8ToUtf32(const std::string& textUtf8, std::vector<u32>& out_textUtf32);
28 
34  static void Utf8ToUtf32(const char* textStr, int textLength, std::vector<u32>& out_textUtf32);
35  };
36  }
37 }