From c10c9ef627c7e79fde6170fe334238bbcb5d66e5 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 27 Aug 2010 21:53:54 +0000 Subject: Added formatter handlers for debugging, works really well. Also added a bunch more helpers to make it as easy to use as possible. --- src/string.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/string.h') diff --git a/src/string.h b/src/string.h index 5343ba8..ea13517 100644 --- a/src/string.h +++ b/src/string.h @@ -10,6 +10,9 @@ namespace Gats { public: String(); + String( const char *s ); + String( const char *s, long iLength ); + String( long iLength ); String( const String &s ); String( const Bu::FString &s ); virtual ~String(); @@ -23,4 +26,6 @@ namespace Gats }; }; +Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::String &s ); + #endif -- cgit v1.2.3