aboutsummaryrefslogtreecommitdiff
path: root/src/utfstring.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/utfstring.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/utfstring.h b/src/utfstring.h
index 30b4c3a..2140af1 100644
--- a/src/utfstring.h
+++ b/src/utfstring.h
@@ -8,10 +8,21 @@
8#ifndef BU_UTF_STRING_H 8#ifndef BU_UTF_STRING_H
9#define BU_UTF_STRING_H 9#define BU_UTF_STRING_H
10 10
11#include "bu/string.h"
12
11namespace Bu 13namespace Bu
12{ 14{
13 class UtfString 15 class UtfString
14 { 16 {
17 public:
18 UtfString();
19 virtual ~UtfString();
20
21 typedef uint32_t point;
22
23 private:
24 typedef BasicString<uint16_t> RawString;
25 RawString rsStore;
15 }; 26 };
16}; 27};
17 28