aboutsummaryrefslogtreecommitdiff
path: root/src/dictionary.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-08-18 16:17:15 +0000
committerMike Buland <eichlan@xagasoft.com>2010-08-18 16:17:15 +0000
commit9dc8cc535ef5fc4ea78f967fe285fe4424ff4458 (patch)
treea8a267bf5b8f8ca74bc767964fe47a97b33be01a /src/dictionary.h
parentcebb8eca644ff772b169178810372971176ebe9d (diff)
downloadlibgats-9dc8cc535ef5fc4ea78f967fe285fe4424ff4458.tar.gz
libgats-9dc8cc535ef5fc4ea78f967fe285fe4424ff4458.tar.bz2
libgats-9dc8cc535ef5fc4ea78f967fe285fe4424ff4458.tar.xz
libgats-9dc8cc535ef5fc4ea78f967fe285fe4424ff4458.zip
getting it all tuned up.
Diffstat (limited to 'src/dictionary.h')
-rw-r--r--src/dictionary.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dictionary.h b/src/dictionary.h
index 3bcaec6..8f4b949 100644
--- a/src/dictionary.h
+++ b/src/dictionary.h
@@ -19,11 +19,13 @@ namespace Gats
19 virtual Type getType() const { return typeDictionary; } 19 virtual Type getType() const { return typeDictionary; }
20 virtual void write( Bu::Stream &rOut ) const; 20 virtual void write( Bu::Stream &rOut ) const;
21 virtual void read( Bu::Stream &rIn, char cType ); 21 virtual void read( Bu::Stream &rIn, char cType );
22 22
23 void insert( const Bu::FString &sKey, const char *s );
24 void insert( const Bu::FString &sKey, const Bu::FString &s );
25 void insert( const Bu::FString &sKey, int32_t i );
23 void insert( const Bu::FString &sKey, int64_t i ); 26 void insert( const Bu::FString &sKey, int64_t i );
24 void insert( const Bu::FString &sKey, bool b ); 27 void insert( const Bu::FString &sKey, bool b );
25 void insert( const Bu::FString &sKey, double d ); 28 void insert( const Bu::FString &sKey, double d );
26 void insert( const Bu::FString &sKey, const Bu::FString &s );
27 using Bu::Hash<Gats::String, Gats::Object *>::insert; 29 using Bu::Hash<Gats::String, Gats::Object *>::insert;
28 30
29 bool getBool( const Bu::FString &sKey ); 31 bool getBool( const Bu::FString &sKey );