diff options
Diffstat (limited to '')
-rw-r--r-- | src/string.h | 5 |
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 | ||
29 | Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::String &s ); | ||
30 | |||
26 | #endif | 31 | #endif |