aboutsummaryrefslogtreecommitdiff
path: root/src/string.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-01-20 18:16:38 +0000
committerMike Buland <eichlan@xagasoft.com>2011-01-20 18:16:38 +0000
commit7292af7c475c61920987ec498144a3fd1e90f1e8 (patch)
tree4bc09eea26fb13915395642311f0617f1c0bff4e /src/string.h
parent4a6e25854a3b70c8d7a526a22a78760b97118669 (diff)
downloadlibgats-7292af7c475c61920987ec498144a3fd1e90f1e8.tar.gz
libgats-7292af7c475c61920987ec498144a3fd1e90f1e8.tar.bz2
libgats-7292af7c475c61920987ec498144a3fd1e90f1e8.tar.xz
libgats-7292af7c475c61920987ec498144a3fd1e90f1e8.zip
Updated with new Bu::String.
Diffstat (limited to 'src/string.h')
-rw-r--r--src/string.h6
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
7namespace Gats 7namespace 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; }