diff options
Diffstat (limited to 'src/stream.h')
-rw-r--r-- | src/stream.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stream.h b/src/stream.h index 078c045..f3cd882 100644 --- a/src/stream.h +++ b/src/stream.h | |||
@@ -11,6 +11,8 @@ | |||
11 | #include <stdint.h> | 11 | #include <stdint.h> |
12 | #include <stdio.h> | 12 | #include <stdio.h> |
13 | 13 | ||
14 | #include "bu/fstring.h" | ||
15 | |||
14 | namespace Bu | 16 | namespace Bu |
15 | { | 17 | { |
16 | /** | 18 | /** |
@@ -50,6 +52,8 @@ namespace Bu | |||
50 | */ | 52 | */ |
51 | virtual size_t write( const void *pBuf, size_t nBytes ) = 0; | 53 | virtual size_t write( const void *pBuf, size_t nBytes ) = 0; |
52 | 54 | ||
55 | virtual size_t write( const Bu::FString &sBuf ); | ||
56 | |||
53 | /** | 57 | /** |
54 | * Get the current position in the stream. | 58 | * Get the current position in the stream. |
55 | *@returns (long) The current position in the stream. | 59 | *@returns (long) The current position in the stream. |