mbed.org implementation of the abstract SmartREST library for the Cumulocity Platform SmartREST protocol.

Dependents:   MbedSmartRestMain MbedSmartRestMain

Revision:
7:8159a2d12e4e
Parent:
5:2b74510900da
Child:
11:e1bee9a77652
--- a/CharValue.h	Mon Jul 28 12:11:02 2014 +0200
+++ b/CharValue.h	Wed Oct 22 16:17:22 2014 +0200
@@ -63,9 +63,12 @@
     size_t length() const;
     Value* copy() const;
 
+protected:
+    bool escapeCheck();
+
 private:
     const char *_str;
-    bool _alloc;
+    bool _escape, _alloc;
 };
 
 #endif