From 81b26406423cb751729dd255396256442fc0d051 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 06:12:16 +0000 Subject: Made (very) basic progress towards defining UtfString. It's actually going to use a Bu::String as it's backend storage, so we'll get all the great out of that... --- src/utfstring.cpp | 8 ++++++++ src/utfstring.h | 11 +++++++++++ 2 files changed, 19 insertions(+) diff --git a/src/utfstring.cpp b/src/utfstring.cpp index bb23db3..eb23713 100644 --- a/src/utfstring.cpp +++ b/src/utfstring.cpp @@ -7,3 +7,11 @@ #include "bu/utfstring.h" +Bu::UtfString::UtfString() +{ +} + +Bu::UtfString::~UtfString() +{ +} + 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 @@ #ifndef BU_UTF_STRING_H #define BU_UTF_STRING_H +#include "bu/string.h" + namespace Bu { class UtfString { + public: + UtfString(); + virtual ~UtfString(); + + typedef uint32_t point; + + private: + typedef BasicString RawString; + RawString rsStore; }; }; -- cgit v1.2.3