From b3adc199b6fbf3460d709934de5d92668d75a6cf Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 25 Oct 2011 05:40:33 +0000 Subject: Bu::print and Bu::println are added, they just take a string, but you can use string formatting no problem. I'll add some that can take unicode strings too. --- src/sio.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/sio.h') diff --git a/src/sio.h b/src/sio.h index ad3000a..9f2cd05 100644 --- a/src/sio.h +++ b/src/sio.h @@ -15,6 +15,12 @@ namespace Bu { extern Bu::StdStream sioRaw; extern Bu::Formatter sio; + + Bu::size print( Bu::Stream &s, const Bu::String &str ); + Bu::size print( const Bu::String &str ); + + Bu::size println( Bu::Stream &s, const Bu::String &str ); + Bu::size println( const Bu::String &str ); }; #endif -- cgit v1.2.3