Minimalist JSON parser and serializer (inspired by picojson). Used by MbedJSONRpc.

Fork of MbedJSONValue by Samuel Mokrani

Revision:
5:8730f0b6605e
Parent:
3:f2ffae08b963
--- a/MbedJSONValue.cpp	Thu Sep 22 10:57:37 2011 +0000
+++ b/MbedJSONValue.cpp	Wed Mar 15 07:54:44 2017 +0000
@@ -3,6 +3,9 @@
 # include <stdlib.h>
 # include <stdio.h>
 
+namespace VivesCityGame
+{
+    
 // Clean up
 void MbedJSONValue::clean() {
     switch (_type) {
@@ -242,4 +245,5 @@
     }
     return -1;
 }
+};