diff options
author | Mike Buland <eichlan@xagasoft.com> | 2023-08-10 00:04:24 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2023-08-10 00:04:24 -0700 |
commit | 153b34e490032d22fa71a7125fb78a120f9f848d (patch) | |
tree | 54e86cc15545413eec3ef58d8997205d1d050021 /src/unstable/blobbuilder.h | |
parent | 0e965ecb16368be3a4b500ffb16fa605e773d7b7 (diff) | |
download | libbu++-153b34e490032d22fa71a7125fb78a120f9f848d.tar.gz libbu++-153b34e490032d22fa71a7125fb78a120f9f848d.tar.bz2 libbu++-153b34e490032d22fa71a7125fb78a120f9f848d.tar.xz libbu++-153b34e490032d22fa71a7125fb78a120f9f848d.zip |
Added some handy operators to Bu::BlobBuilder
Diffstat (limited to '')
-rw-r--r-- | src/unstable/blobbuilder.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/unstable/blobbuilder.h b/src/unstable/blobbuilder.h index 7ad4255..fd368fa 100644 --- a/src/unstable/blobbuilder.h +++ b/src/unstable/blobbuilder.h | |||
@@ -120,6 +120,9 @@ namespace Bu | |||
120 | BlobBuilder &operator+=( const Blob &rSrc ); | 120 | BlobBuilder &operator+=( const Blob &rSrc ); |
121 | BlobBuilder &operator+=( const char *pSrc ); | 121 | BlobBuilder &operator+=( const char *pSrc ); |
122 | BlobBuilder &operator+=( const char chr ); | 122 | BlobBuilder &operator+=( const char chr ); |
123 | BlobBuilder &operator<<( const Blob &rSrc ); | ||
124 | BlobBuilder &operator<<( const char *pSrc ); | ||
125 | BlobBuilder &operator<<( const char chr ); | ||
123 | private: | 126 | private: |
124 | }; | 127 | }; |
125 | }; | 128 | }; |