From d14a4c34d01102baa830c6762ef80b0dc6db6389 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 27 Sep 2010 14:47:21 +0000 Subject: Damn boolean overloads, always getting in the way... --- src/dictionary.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/dictionary.h') diff --git a/src/dictionary.h b/src/dictionary.h index 39248d2..c9bf1cb 100644 --- a/src/dictionary.h +++ b/src/dictionary.h @@ -24,7 +24,7 @@ namespace Gats void insert( const Bu::FString &sKey, const Bu::FString &s ); void insert( const Bu::FString &sKey, int32_t i ); void insert( const Bu::FString &sKey, int64_t i ); - void insert( const Bu::FString &sKey, bool b ); + //void insert( const Bu::FString &sKey, bool b ); void insert( const Bu::FString &sKey, double d ); using Bu::Hash::insert; @@ -34,6 +34,13 @@ namespace Gats Bu::FString getStr( const Bu::FString &sKey ); Gats::List *getList( const Bu::FString &sKey ); Gats::Dictionary *getDict( const Bu::FString &sKey ); + + bool getBool( const Bu::FString &sKey ) const; + int64_t getInt( const Bu::FString &sKey ) const; + double getFloat( const Bu::FString &sKey ) const; + Bu::FString getStr( const Bu::FString &sKey ) const; + Gats::List *getList( const Bu::FString &sKey ) const; + Gats::Dictionary *getDict( const Bu::FString &sKey ) const; }; }; -- cgit v1.2.3