diff options
Diffstat (limited to 'src/unstable/utfstring.cpp')
| -rw-r--r-- | src/unstable/utfstring.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unstable/utfstring.cpp b/src/unstable/utfstring.cpp index 9b712c9..be03c6e 100644 --- a/src/unstable/utfstring.cpp +++ b/src/unstable/utfstring.cpp | |||
| @@ -47,6 +47,14 @@ Bu::UtfString::UtfString( const char *sInput, Encoding eEnc ) | |||
| 47 | set( Bu::Blob(sInput), eEnc ); | 47 | set( Bu::Blob(sInput), eEnc ); |
| 48 | } | 48 | } |
| 49 | 49 | ||
| 50 | Bu::UtfString::UtfString( const UtfString &rSrc ) : | ||
| 51 | aData( rSrc.aData.clone() ), | ||
| 52 | iRawLen( rSrc.iRawLen ), | ||
| 53 | iCharLen( rSrc.iCharLen ) | ||
| 54 | { | ||
| 55 | |||
| 56 | } | ||
| 57 | |||
| 50 | Bu::UtfString::~UtfString() | 58 | Bu::UtfString::~UtfString() |
| 51 | { | 59 | { |
| 52 | } | 60 | } |
