portable version of the cumulocity demo

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

Revision:
47:89ae46d5c466
diff -r f6976fd64387 -r 89ae46d5c466 LocationUpdate.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LocationUpdate.h	Thu Jul 24 23:32:53 2014 +0000
@@ -0,0 +1,24 @@
+#ifndef LOCATIONUPDATE_H
+#define LOCATIONUPDATE_H
+
+#include "SmartRest.h"
+#include "SmartRestTemplate.h"
+#include "GPSTracker.h"
+
+class LocationUpdate
+{
+public:
+    LocationUpdate(SmartRest&, SmartRestTemplate&, long&, GPSTracker&);
+    
+    bool init();
+    bool run();
+
+private:
+    bool _init;
+    long& _deviceId;
+    SmartRestTemplate& _tpl;
+    SmartRest& _client;
+    GPSTracker& _gpsTracker;
+};
+
+#endif
\ No newline at end of file