diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-10-25 05:40:33 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-10-25 05:40:33 +0000 |
commit | b3adc199b6fbf3460d709934de5d92668d75a6cf (patch) | |
tree | b7cd197bfb265953cd32373eb52537d2a1b35603 /src/sio.h | |
parent | 2f163b90c745491a995dfdbe78464c64a536ec54 (diff) | |
download | libbu++-b3adc199b6fbf3460d709934de5d92668d75a6cf.tar.gz libbu++-b3adc199b6fbf3460d709934de5d92668d75a6cf.tar.bz2 libbu++-b3adc199b6fbf3460d709934de5d92668d75a6cf.tar.xz libbu++-b3adc199b6fbf3460d709934de5d92668d75a6cf.zip |
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.
Diffstat (limited to '')
-rw-r--r-- | src/sio.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -15,6 +15,12 @@ namespace Bu | |||
15 | { | 15 | { |
16 | extern Bu::StdStream sioRaw; | 16 | extern Bu::StdStream sioRaw; |
17 | extern Bu::Formatter sio; | 17 | extern Bu::Formatter sio; |
18 | |||
19 | Bu::size print( Bu::Stream &s, const Bu::String &str ); | ||
20 | Bu::size print( const Bu::String &str ); | ||
21 | |||
22 | Bu::size println( Bu::Stream &s, const Bu::String &str ); | ||
23 | Bu::size println( const Bu::String &str ); | ||
18 | }; | 24 | }; |
19 | 25 | ||
20 | #endif | 26 | #endif |