aboutsummaryrefslogtreecommitdiff
path: root/src/stable/string.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2020-03-24 13:16:22 -0700
committerMike Buland <eichlan@xagasoft.com>2020-03-24 13:16:22 -0700
commit4219be08c02b3f0a5ec214447dfa0918fa390176 (patch)
treeb0b9cf359471db16fc6b1de8b3a3daffdac81fa6 /src/stable/string.h
parentde026982f5273807669c13fab9c79dffaeb8c253 (diff)
downloadlibbu++-4219be08c02b3f0a5ec214447dfa0918fa390176.tar.gz
libbu++-4219be08c02b3f0a5ec214447dfa0918fa390176.tar.bz2
libbu++-4219be08c02b3f0a5ec214447dfa0918fa390176.tar.xz
libbu++-4219be08c02b3f0a5ec214447dfa0918fa390176.zip
Temporary interop to convert blob to strings.
This will make the transition easier and require fewer rewrites later.
Diffstat (limited to '')
-rw-r--r--src/stable/string.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stable/string.h b/src/stable/string.h
index a5e21cb..89601a7 100644
--- a/src/stable/string.h
+++ b/src/stable/string.h
@@ -23,6 +23,7 @@
23namespace Bu 23namespace Bu
24{ 24{
25 class String; 25 class String;
26 class Blob;
26 class MemBuf; 27 class MemBuf;
27 28
28 /** @cond DEVEL */ 29 /** @cond DEVEL */
@@ -573,6 +574,7 @@ namespace Bu
573 String( const String &rSrc, long nLength ); 574 String( const String &rSrc, long nLength );
574 String( const String &rSrc, long nStart, long nLength ); 575 String( const String &rSrc, long nStart, long nLength );
575 String( long nSize ); 576 String( long nSize );
577 String( const class Blob &rSrc );
576 virtual ~String(); 578 virtual ~String();
577 579
578 /** 580 /**