aboutsummaryrefslogtreecommitdiff
path: root/c++-libbu++/src/dictionary.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2017-10-19 22:48:40 -0600
committerMike Buland <eichlan@xagasoft.com>2017-10-19 22:48:40 -0600
commit78a6b37b5cef55dc6d0f7120ff2a1f914375fe70 (patch)
treed59222d22d96318948b52329e2ee4ec0e0745d1a /c++-libbu++/src/dictionary.h
parent4eb8c125754c1c1e2b90547abdf255aee7e4eb04 (diff)
parent19223f8527ef1c0d36cf8b40b9f8d093ea702ca5 (diff)
downloadlibgats-78a6b37b5cef55dc6d0f7120ff2a1f914375fe70.tar.gz
libgats-78a6b37b5cef55dc6d0f7120ff2a1f914375fe70.tar.bz2
libgats-78a6b37b5cef55dc6d0f7120ff2a1f914375fe70.tar.xz
libgats-78a6b37b5cef55dc6d0f7120ff2a1f914375fe70.zip
Merge branch 'master' of xagasoft.com:git/libgats
Diffstat (limited to '')
-rw-r--r--c++-libbu++/src/dictionary.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/c++-libbu++/src/dictionary.h b/c++-libbu++/src/dictionary.h
index d2cdec0..84cf69f 100644
--- a/c++-libbu++/src/dictionary.h
+++ b/c++-libbu++/src/dictionary.h
@@ -54,7 +54,9 @@ namespace Gats
54 void insertDict( const Bu::String &sKey, Gats::Dictionary *pD ); 54 void insertDict( const Bu::String &sKey, Gats::Dictionary *pD );
55 Gats::List *insertList( const Bu::String &sKey ); 55 Gats::List *insertList( const Bu::String &sKey );
56 Gats::Dictionary *insertDict( const Bu::String &sKey ); 56 Gats::Dictionary *insertDict( const Bu::String &sKey );
57 void insertNull( const Bu::String &sKey );
57 58
59 bool isNull( const Bu::String &sKey );
58 bool getBool( const Bu::String &sKey ); 60 bool getBool( const Bu::String &sKey );
59 int64_t getInt( const Bu::String &sKey ); 61 int64_t getInt( const Bu::String &sKey );
60 double getFloat( const Bu::String &sKey ); 62 double getFloat( const Bu::String &sKey );
@@ -62,6 +64,7 @@ namespace Gats
62 Gats::List *getList( const Bu::String &sKey ); 64 Gats::List *getList( const Bu::String &sKey );
63 Gats::Dictionary *getDict( const Bu::String &sKey ); 65 Gats::Dictionary *getDict( const Bu::String &sKey );
64 66
67 bool isNull( const Bu::String &sKey ) const;
65 bool getBool( const Bu::String &sKey ) const; 68 bool getBool( const Bu::String &sKey ) const;
66 int64_t getInt( const Bu::String &sKey ) const; 69 int64_t getInt( const Bu::String &sKey ) const;
67 double getFloat( const Bu::String &sKey ) const; 70 double getFloat( const Bu::String &sKey ) const;