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

Dependents:   MbedSmartRestMain MbedSmartRestMain

Revision:
11:e1bee9a77652
Parent:
7:8159a2d12e4e
--- a/ParsedValue.h	Thu Oct 23 14:41:58 2014 +0200
+++ b/ParsedValue.h	Sat Nov 15 11:21:01 2014 +0100
@@ -65,26 +65,26 @@
  */
 class ParsedValue : public Value
 {
-public:
-    ParsedValue(const char*, bool = false);
+	public:
+		ParsedValue(const char*, bool = false);
 
-    uint8_t valueType() const;
-    long integerValue() const;
-    double floatValue() const;
-    const char * characterValue() const;
+		uint8_t valueType() const;
+		long integerValue() const;
+		double floatValue() const;
+		const char * characterValue() const;
 
-    size_t write(AbstractDataSink&) const;
-    size_t length() const;
-    Value* copy() const;
+		size_t write(AbstractDataSink&) const;
+		size_t length() const;
+		Value* copy() const;
 
-private:
-    void extractValue();
+	private:
+		void extractValue();
 
-private:
-    CharValue _value;
-    uint8_t _type;
-    double _float;
-    long _integer;
+	private:
+		CharValue _value;
+		uint8_t _type;
+		double _float;
+		long _integer;
 };
 
 #endif