diff options
author | Mike Buland <mike@xagasoft.com> | 2024-09-30 10:23:55 -0700 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2024-09-30 10:23:55 -0700 |
commit | 84c93fbf0f371bcd26893d1c33e3a5bf1a61223e (patch) | |
tree | d27e8405e81c14762c083efc20e3b936b4bd7982 /src/stable/myriad.h | |
parent | 76821551f312dd447a03748a01670f3718cd8345 (diff) | |
download | libbu++-84c93fbf0f371bcd26893d1c33e3a5bf1a61223e.tar.gz libbu++-84c93fbf0f371bcd26893d1c33e3a5bf1a61223e.tar.bz2 libbu++-84c93fbf0f371bcd26893d1c33e3a5bf1a61223e.tar.xz libbu++-84c93fbf0f371bcd26893d1c33e3a5bf1a61223e.zip |
Forgot about erase, it seems to be working now.
Diffstat (limited to '')
-rw-r--r-- | src/stable/myriad.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stable/myriad.h b/src/stable/myriad.h index c3f682d..60c5a39 100644 --- a/src/stable/myriad.h +++ b/src/stable/myriad.h | |||
@@ -25,6 +25,7 @@ namespace Bu | |||
25 | invalidParameter, | 25 | invalidParameter, |
26 | invalidBackingStream, | 26 | invalidBackingStream, |
27 | badMode, | 27 | badMode, |
28 | streamOpen, | ||
28 | }; | 29 | }; |
29 | subExceptionDeclEnd(); | 30 | subExceptionDeclEnd(); |
30 | 31 | ||
@@ -68,7 +69,8 @@ namespace Bu | |||
68 | * 4 - 7: Size of stream in bytes | 69 | * 4 - 7: Size of stream in bytes |
69 | * 8 - ...: List of blocks in stream (4 bytes per block | 70 | * 8 - ...: List of blocks in stream (4 bytes per block |
70 | */ | 71 | */ |
71 | Myriad( Bu::Stream &rBacking, int32_t iBlockSize=-1, int32_t iPreallocateBlocks=-1 ); | 72 | Myriad( Bu::Stream &rBacking, int32_t iBlockSize=-1, |
73 | int32_t iPreallocateBlocks=-1 ); | ||
72 | virtual ~Myriad(); | 74 | virtual ~Myriad(); |
73 | 75 | ||
74 | MyriadStream create( Mode eMode, int32_t iPreallocateBytes=-1 ); | 76 | MyriadStream create( Mode eMode, int32_t iPreallocateBytes=-1 ); |