aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/json.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/unstable/json.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/unstable/json.cpp b/src/unstable/json.cpp
index b22ca0d..7e19e85 100644
--- a/src/unstable/json.cpp
+++ b/src/unstable/json.cpp
@@ -170,6 +170,11 @@ void Bu::Json::insert( const Bu::String &sKey, Bu::Json *pObj )
170 uDat.pObject->insert( sKey, pObj ); 170 uDat.pObject->insert( sKey, pObj );
171} 171}
172 172
173void Bu::Json::append( Bu::Json *pObj )
174{
175 uDat.pArray->append( pObj );
176}
177
173void Bu::Json::parse( Bu::Stream &sInput ) 178void Bu::Json::parse( Bu::Stream &sInput )
174{ 179{
175 reset(); 180 reset();