aboutsummaryrefslogtreecommitdiff
path: root/src/stream.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/stream.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stream.h b/src/stream.h
index bfe3ef9..0ea5560 100644
--- a/src/stream.h
+++ b/src/stream.h
@@ -152,6 +152,14 @@ namespace Bu
152 */ 152 */
153 virtual void setBlocking( bool bBlocking=true ) = 0; 153 virtual void setBlocking( bool bBlocking=true ) = 0;
154 154
155 /**
156 * Set the size of the stream, this does not apply to many types of
157 * streams. For those that it does apply to, data will be added or
158 * removed from the end of the stream, but the content of the added
159 * data is undefined.
160 */
161 virtual void setSize( long iSize ) = 0;
162
155 public: // Filters 163 public: // Filters
156 164
157 165