aboutsummaryrefslogtreecommitdiff
path: root/src/list.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/list.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/list.h')
-rw-r--r--src/list.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/list.h b/src/list.h
index 69cb846..5c50fae 100644
--- a/src/list.h
+++ b/src/list.h
@@ -3,7 +3,7 @@
3 3
4#include "gats/object.h" 4#include "gats/object.h"
5#include <bu/list.h> 5#include <bu/list.h>
6#include <bu/fstring.h> 6#include <bu/string.h>
7 7
8namespace Gats 8namespace Gats
9{ 9{
@@ -19,7 +19,7 @@ namespace Gats
19 virtual void read( Bu::Stream &rIn, char cType ); 19 virtual void read( Bu::Stream &rIn, char cType );
20 20
21 void append( const char *s ); 21 void append( const char *s );
22 void append( const Bu::FString &s ); 22 void append( const Bu::String &s );
23 void append( int32_t i ); 23 void append( int32_t i );
24 void append( int64_t i ); 24 void append( int64_t i );
25 void append( bool b ); 25 void append( bool b );
@@ -27,7 +27,7 @@ namespace Gats
27 using Bu::List<Gats::Object *>::append; 27 using Bu::List<Gats::Object *>::append;
28 28
29 void prepend( const char *s ); 29 void prepend( const char *s );
30 void prepend( const Bu::FString &s ); 30 void prepend( const Bu::String &s );
31 void prepend( int32_t i ); 31 void prepend( int32_t i );
32 void prepend( int64_t i ); 32 void prepend( int64_t i );
33 void prepend( bool b ); 33 void prepend( bool b );