blob: 6f85e9330d8c417d0009bf3a175eb345f2133f26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*
* Copyright (C) 2007-2011 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
#ifndef BU_UTF_STRING_H
#define BU_UTF_STRING_H
#include <stdint.h>
namespace Bu
{
/**
* UtfChar isn't actually a character, unicode specifies "code points" not
* characters. The main reason for this is that not all code points define
* usable characters. Some control text directionality, some apply
* properties to other code points which are characters. However, most of
* these distinctions are only important when implementing displays that
* comply with the Unicode standard fully.
*/
typedef uint32_t UtfChar;
class UtfString
{
public:
enum Encoding
{
Utf8,
Utf16,
Utf16be,
Utf16le,
Utf32,
Ucs16,
GuessEncoding
};
UtfString();
UtfString( const Bu::String &sInput, Encoding eEnc=Utf8 );
virtual ~UtfString();
static void debugUtf8( const Bu::String &sUtf8 );
private:
uint16_t *pData;
int iRawLen;
int iCharLen;
};
};
#endif
|