aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/blobbuilder.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2022-04-15 08:46:54 -0700
committerMike Buland <eichlan@xagasoft.com>2022-04-15 08:46:54 -0700
commit6e3124d6aec9d4ad9fbe92beec82add5e1a811fe (patch)
tree80f7453fa7ff35cec10736bad7f5b304c5d4b929 /src/unstable/blobbuilder.h
parent1c4372bbff3e5978b19bd25cf1310078d0977d08 (diff)
downloadlibbu++-6e3124d6aec9d4ad9fbe92beec82add5e1a811fe.tar.gz
libbu++-6e3124d6aec9d4ad9fbe92beec82add5e1a811fe.tar.bz2
libbu++-6e3124d6aec9d4ad9fbe92beec82add5e1a811fe.tar.xz
libbu++-6e3124d6aec9d4ad9fbe92beec82add5e1a811fe.zip
Augments to Blob and BlobBuilder.
You can construct a BlobBuilder from a Blob now, and Blob has an extra null byte of padding just in case you use a Blob to store a string.
Diffstat (limited to '')
-rw-r--r--src/unstable/blobbuilder.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/unstable/blobbuilder.h b/src/unstable/blobbuilder.h
index c343a4f..c2995cb 100644
--- a/src/unstable/blobbuilder.h
+++ b/src/unstable/blobbuilder.h
@@ -45,6 +45,7 @@ namespace Bu
45 }; 45 };
46 46
47 BlobBuilderCore(); 47 BlobBuilderCore();
48 BlobBuilderCore( const Bu::Blob &rSrc );
48 BlobBuilderCore( const BlobBuilderCore &rSrc ); 49 BlobBuilderCore( const BlobBuilderCore &rSrc );
49 virtual ~BlobBuilderCore(); 50 virtual ~BlobBuilderCore();
50 51