aboutsummaryrefslogtreecommitdiff
path: root/src/unstable
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/unstable/text.cpp10
-rw-r--r--src/unstable/text.h3
2 files changed, 12 insertions, 1 deletions
diff --git a/src/unstable/text.cpp b/src/unstable/text.cpp
index be4c10f..d8cf15c 100644
--- a/src/unstable/text.cpp
+++ b/src/unstable/text.cpp
@@ -19,6 +19,16 @@ Bu::Text::Text() :
19{ 19{
20} 20}
21 21
22Bu::Text::Text( const CodePoint *rSrc ) :
23 pData( NULL ),
24 bIsBmpOnly( true ),
25 iSize( 0 )
26{
27 for(; rSrc[iSize]; iSize++ ) {}
28 pData = new CodePoint[iSize+1];
29 memcpy( pData, rSrc, iSize+1 );
30}
31
22Bu::Text::Text( const Text &rSrc ) : 32Bu::Text::Text( const Text &rSrc ) :
23 pData( NULL ), 33 pData( NULL ),
24 bIsBmpOnly( rSrc.bIsBmpOnly ), 34 bIsBmpOnly( rSrc.bIsBmpOnly ),
diff --git a/src/unstable/text.h b/src/unstable/text.h
index c57dcfb..43e9e2c 100644
--- a/src/unstable/text.h
+++ b/src/unstable/text.h
@@ -35,10 +35,11 @@ namespace Bu
35 public: 35 public:
36 class iterator; 36 class iterator;
37 class const_iterator; 37 class const_iterator;
38 typedef uint32_t CodePoint; 38 typedef char32_t CodePoint;
39 39
40 public: 40 public:
41 Text(); 41 Text();
42 Text( const CodePoint *rSrc );
42 Text( const Text &rSrc ); 43 Text( const Text &rSrc );
43 Text( const TextBuilder &rSrc ); 44 Text( const TextBuilder &rSrc );
44 virtual ~Text(); 45 virtual ~Text();