Own fork of MbedSmartRest

Dependents:   MbedSmartRestMain MbedSmartRestMain

Fork of MbedSmartRest by Cumulocity Official

Revision:
11:e1bee9a77652
Parent:
0:099f76422485
Child:
19:81dfc04ce0bb
--- a/IntegerValue.h	Thu Oct 23 14:41:58 2014 +0200
+++ b/IntegerValue.h	Sat Nov 15 11:21:01 2014 +0100
@@ -42,21 +42,21 @@
  */
 class IntegerValue : public Value
 {
-public:
-    IntegerValue(long);
+	public:
+		IntegerValue(long);
 
-    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:
-    unsigned long _number;
-    bool _negative;
+	private:
+		unsigned long _number;
+		bool _negative;
 };
 
 #endif