diff options
Diffstat (limited to 'src/list.h')
-rw-r--r-- | src/list.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | ||
8 | namespace Gats | 8 | namespace 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 ); |