aboutsummaryrefslogtreecommitdiff
path: root/src/stable/sio.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-09-05 20:44:55 +0000
committerMike Buland <eichlan@xagasoft.com>2012-09-05 20:44:55 +0000
commite5f2e1ce7faeb8fb4609f7291e77d5b682685057 (patch)
treec00b5d47966aef916f8a2f055aedadade5fa95d3 /src/stable/sio.h
parent69d1606ac97547896a0ede8dee5e59fc4a5de7c2 (diff)
downloadlibbu++-e5f2e1ce7faeb8fb4609f7291e77d5b682685057.tar.gz
libbu++-e5f2e1ce7faeb8fb4609f7291e77d5b682685057.tar.bz2
libbu++-e5f2e1ce7faeb8fb4609f7291e77d5b682685057.tar.xz
libbu++-e5f2e1ce7faeb8fb4609f7291e77d5b682685057.zip
This'll make *everything* rebuild. String formatters now support the end()
call, which will force substitution and return a string. They now also support ending actions, which let us do great stuff like printing stuff out after formatting finished...and other stuff.
Diffstat (limited to 'src/stable/sio.h')
-rw-r--r--src/stable/sio.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stable/sio.h b/src/stable/sio.h
index cc7b098..d9761b2 100644
--- a/src/stable/sio.h
+++ b/src/stable/sio.h
@@ -16,11 +16,11 @@ namespace Bu
16 extern Bu::StdStream sioRaw; 16 extern Bu::StdStream sioRaw;
17 extern Bu::Formatter sio; 17 extern Bu::Formatter sio;
18 18
19 Bu::size print( Bu::Stream &s, const Bu::String &str ); 19 Bu::String::FormatProxy print( Bu::Stream &s, const Bu::String &str );
20 Bu::size print( const Bu::String &str ); 20 Bu::String::FormatProxy print( const Bu::String &str );
21 21
22 Bu::size println( Bu::Stream &s, const Bu::String &str ); 22 Bu::String::FormatProxy println( Bu::Stream &s, const Bu::String &str );
23 Bu::size println( const Bu::String &str ); 23 Bu::String::FormatProxy println( const Bu::String &str );
24}; 24};
25 25
26#endif 26#endif