aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/blob.h
diff options
context:
space:
mode:
authorMike Buland <mbuland@penny-arcade.com>2022-04-20 14:04:47 -0700
committerMike Buland <mbuland@penny-arcade.com>2022-04-20 14:04:47 -0700
commitfd56cdd21a7c9c944ad189cf91ff24d3c2b0f975 (patch)
treef16f7e7f54399ef9c753beb87069eed8122dbccb /src/unstable/blob.h
parentd10e6a5ca0905f0ef2836cd98aebfb48e7f1e8a3 (diff)
downloadlibbu++-fd56cdd21a7c9c944ad189cf91ff24d3c2b0f975.tar.gz
libbu++-fd56cdd21a7c9c944ad189cf91ff24d3c2b0f975.tar.bz2
libbu++-fd56cdd21a7c9c944ad189cf91ff24d3c2b0f975.tar.xz
libbu++-fd56cdd21a7c9c944ad189cf91ff24d3c2b0f975.zip
Gradually moving to better archive structure.
It's dragging other new API changes along with it, including use of Blob and Text.
Diffstat (limited to 'src/unstable/blob.h')
-rw-r--r--src/unstable/blob.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/unstable/blob.h b/src/unstable/blob.h
index d6c40e3..214ab41 100644
--- a/src/unstable/blob.h
+++ b/src/unstable/blob.h
@@ -55,6 +55,9 @@ namespace Bu
55 bool isNull() const; 55 bool isNull() const;
56 bool isNullOrEmpty() const; 56 bool isNullOrEmpty() const;
57 57
58 void set( const Blob &rRhs );
59 void set( const char *pRhs );
60 void set( const char *pRhs, int32_t iSize );
58 Blob &operator=( const Blob &rRhs ); 61 Blob &operator=( const Blob &rRhs );
59 Blob &operator=( const char *pRhs ); 62 Blob &operator=( const char *pRhs );
60 63