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

Dependents:   MbedSmartRestMain MbedSmartRestMain

Revision:
11:e1bee9a77652
Parent:
5:2b74510900da
--- a/StaticData.h	Thu Oct 23 14:41:58 2014 +0200
+++ b/StaticData.h	Sat Nov 15 11:21:01 2014 +0100
@@ -47,18 +47,18 @@
  */
 class StaticData : public DataGenerator
 {
-public:
-    StaticData(void*, size_t, bool = false);
-    StaticData(const char*, bool = false);
-    ~StaticData();
-    size_t writeTo(AbstractDataSink&) const;
-    size_t writtenLength() const;
-    DataGenerator* copy() const;
+	public:
+		StaticData(void*, size_t, bool = false);
+		StaticData(const char*, bool = false);
+		~StaticData();
+		size_t writeTo(AbstractDataSink&) const;
+		size_t writtenLength() const;
+		DataGenerator* copy() const;
 
-private:
-    void *_buf;
-    size_t _len;
-    bool _alloc;
+	private:
+		void *_buf;
+		size_t _len;
+		bool _alloc;
 };
 
 #endif