aboutsummaryrefslogtreecommitdiff
path: root/src/unstable
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/unstable/blob.cpp4
-rw-r--r--src/unstable/blob.h2
-rw-r--r--src/unstable/utfstring.cpp5
-rw-r--r--src/unstable/utfstring.h2
4 files changed, 8 insertions, 5 deletions
diff --git a/src/unstable/blob.cpp b/src/unstable/blob.cpp
index c4148e1..213a1ec 100644
--- a/src/unstable/blob.cpp
+++ b/src/unstable/blob.cpp
@@ -811,7 +811,7 @@ Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, const Bu::Blob &b )
811 return rOut; 811 return rOut;
812} 812}
813 813
814Bu::ArchiveBase &operator<<( Bu::ArchiveBase &ar, const Bu::Blob &b ) 814Bu::ArchiveBase &Bu::operator<<( Bu::ArchiveBase &ar, const Bu::Blob &b )
815{ 815{
816 int32_t iSize = b.getSize(); 816 int32_t iSize = b.getSize();
817 ar << iSize; 817 ar << iSize;
@@ -819,7 +819,7 @@ Bu::ArchiveBase &operator<<( Bu::ArchiveBase &ar, const Bu::Blob &b )
819 return ar; 819 return ar;
820} 820}
821 821
822Bu::ArchiveBase &operator>>( Bu::ArchiveBase &ar, Bu::Blob &b ) 822Bu::ArchiveBase &Bu::operator>>( Bu::ArchiveBase &ar, Bu::Blob &b )
823{ 823{
824 int32_t iSize; 824 int32_t iSize;
825 ar >> iSize; 825 ar >> iSize;
diff --git a/src/unstable/blob.h b/src/unstable/blob.h
index dfddb02..8f948e2 100644
--- a/src/unstable/blob.h
+++ b/src/unstable/blob.h
@@ -31,6 +31,8 @@ namespace Bu
31 */ 31 */
32 class Blob 32 class Blob
33 { 33 {
34 friend ArchiveBase &operator<<( ArchiveBase &ar, const Blob &s );
35 friend ArchiveBase &operator>>( ArchiveBase &ar, Blob &s );
34 public: 36 public:
35 class iterator; 37 class iterator;
36 class const_iterator; 38 class const_iterator;
diff --git a/src/unstable/utfstring.cpp b/src/unstable/utfstring.cpp
index 6217f80..13a6046 100644
--- a/src/unstable/utfstring.cpp
+++ b/src/unstable/utfstring.cpp
@@ -729,11 +729,12 @@ bool Bu::UtfString::operator>=( const Bu::UtfString &rhs ) const
729 return false; 729 return false;
730} 730}
731 731
732Bu::Blob Bu::UtfString::get( Encoding eEnc ) const 732Bu::String Bu::UtfString::get( Encoding eEnc ) const
733{ 733{
734 Bu::MemBuf mb; 734 Bu::MemBuf mb;
735 write( mb, eEnc ); 735 write( mb, eEnc );
736 return Bu::Blob( mb.getString().getStr(), mb.getString().getSize() ); 736 //return Bu::Blob( mb.getString().getStr(), mb.getString().getSize() );
737 return Bu::String( mb.getString().getStr(), mb.getString().getSize() );
737} 738}
738 739
739void Bu::UtfString::debug() const 740void Bu::UtfString::debug() const
diff --git a/src/unstable/utfstring.h b/src/unstable/utfstring.h
index 3c64a75..5355f3e 100644
--- a/src/unstable/utfstring.h
+++ b/src/unstable/utfstring.h
@@ -216,7 +216,7 @@ namespace Bu
216 * a binary Bu::Blob. Like write, this also includes the proper BOM 216 * a binary Bu::Blob. Like write, this also includes the proper BOM
217 * at the begining. 217 * at the begining.
218 */ 218 */
219 Bu::Blob get( Encoding eEnc=Utf8 ) const; 219 Bu::String get( Encoding eEnc=Utf8 ) const;
220 220
221 void debug() const; 221 void debug() const;
222 222