diff options
Diffstat (limited to 'src/string.h')
-rw-r--r-- | src/string.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/string.h b/src/string.h index ea13517..f708e22 100644 --- a/src/string.h +++ b/src/string.h | |||
@@ -2,11 +2,11 @@ | |||
2 | #define GATS_STRING_H | 2 | #define GATS_STRING_H |
3 | 3 | ||
4 | #include "gats/object.h" | 4 | #include "gats/object.h" |
5 | #include <bu/fstring.h> | 5 | #include <bu/string.h> |
6 | 6 | ||
7 | namespace Gats | 7 | namespace Gats |
8 | { | 8 | { |
9 | class String : public Gats::Object, public Bu::FString | 9 | class String : public Gats::Object, public Bu::String |
10 | { | 10 | { |
11 | public: | 11 | public: |
12 | String(); | 12 | String(); |
@@ -14,7 +14,7 @@ namespace Gats | |||
14 | String( const char *s, long iLength ); | 14 | String( const char *s, long iLength ); |
15 | String( long iLength ); | 15 | String( long iLength ); |
16 | String( const String &s ); | 16 | String( const String &s ); |
17 | String( const Bu::FString &s ); | 17 | String( const Bu::String &s ); |
18 | virtual ~String(); | 18 | virtual ~String(); |
19 | 19 | ||
20 | virtual Type getType() const { return typeString; } | 20 | virtual Type getType() const { return typeString; } |