diff options
Diffstat (limited to '')
-rw-r--r-- | src/stream.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/stream.cpp b/src/stream.cpp index 8d976e5..82fe73b 100644 --- a/src/stream.cpp +++ b/src/stream.cpp | |||
@@ -5,7 +5,7 @@ | |||
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include "stream.h" | 8 | #include "bu/stream.h" |
9 | 9 | ||
10 | Bu::Stream::Stream() | 10 | Bu::Stream::Stream() |
11 | { | 11 | { |
@@ -15,3 +15,8 @@ Bu::Stream::~Stream() | |||
15 | { | 15 | { |
16 | } | 16 | } |
17 | 17 | ||
18 | size_t Bu::Stream::write( const Bu::FString &sBuf ) | ||
19 | { | ||
20 | return write( sBuf.getStr(), sBuf.getSize() ); | ||
21 | } | ||
22 | |||