diff options
Diffstat (limited to '')
| -rw-r--r-- | src/stable/sio.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/stable/sio.cpp b/src/stable/sio.cpp index 66db152..8ecb4ad 100644 --- a/src/stable/sio.cpp +++ b/src/stable/sio.cpp | |||
| @@ -6,9 +6,13 @@ | |||
| 6 | */ | 6 | */ |
| 7 | 7 | ||
| 8 | #include "bu/sio.h" | 8 | #include "bu/sio.h" |
| 9 | #include "bu/streamstack.h" | ||
| 10 | #include "bu/stdstream.h" | ||
| 9 | 11 | ||
| 10 | Bu::StdStream Bu::sioRaw; | 12 | Bu::StreamStack Bu::sioRaw( new Bu::StdStream() ); |
| 11 | Bu::Formatter Bu::sio( Bu::sioRaw ); | 13 | Bu::Formatter Bu::sio( Bu::sioRaw ); |
| 14 | Bu::StreamStack Bu::serrRaw( new Bu::StdStream( Bu::StdStream::StdError ) ); | ||
| 15 | Bu::Formatter Bu::serr( Bu::serrRaw ); | ||
| 12 | 16 | ||
| 13 | class PrintEndAction : public Bu::String::FormatProxyEndAction | 17 | class PrintEndAction : public Bu::String::FormatProxyEndAction |
| 14 | { | 18 | { |
