aboutsummaryrefslogtreecommitdiff
path: root/src/string.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-08-27 21:53:54 +0000
committerMike Buland <eichlan@xagasoft.com>2010-08-27 21:53:54 +0000
commitc10c9ef627c7e79fde6170fe334238bbcb5d66e5 (patch)
tree4a0971d81e666e91866ddeaf9b58b952ce2fdd0a /src/string.h
parent2a72923397d866f33221b9d32a3f9653d1a960e7 (diff)
downloadlibgats-c10c9ef627c7e79fde6170fe334238bbcb5d66e5.tar.gz
libgats-c10c9ef627c7e79fde6170fe334238bbcb5d66e5.tar.bz2
libgats-c10c9ef627c7e79fde6170fe334238bbcb5d66e5.tar.xz
libgats-c10c9ef627c7e79fde6170fe334238bbcb5d66e5.zip
Added formatter handlers for debugging, works really well. Also added a bunch
more helpers to make it as easy to use as possible.
Diffstat (limited to 'src/string.h')
-rw-r--r--src/string.h5
1 files changed, 5 insertions, 0 deletions
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
10 { 10 {
11 public: 11 public:
12 String(); 12 String();
13 String( const char *s );
14 String( const char *s, long iLength );
15 String( long iLength );
13 String( const String &s ); 16 String( const String &s );
14 String( const Bu::FString &s ); 17 String( const Bu::FString &s );
15 virtual ~String(); 18 virtual ~String();
@@ -23,4 +26,6 @@ namespace Gats
23 }; 26 };
24}; 27};
25 28
29Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::String &s );
30
26#endif 31#endif