Official reference client implementation for Cumulocity SmartREST on u-blox C027.

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Vincent Wochnik

Revision:
57:4af5f1bec3a6
Child:
59:f96be79feccd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/operation/OperationSupport.h	Thu Oct 23 14:21:26 2014 +0000
@@ -0,0 +1,22 @@
+#ifndef OPERATIONSUPPORT_H
+#define OPERATIONSUPPORT_H
+
+#include "AbstractSmartRest.h"
+#include "SmartRestTemplate.h"
+
+class OperationSupport
+{
+public:
+    OperationSupport(AbstractSmartRest&, SmartRestTemplate&, long&);
+    
+    bool init();
+    bool run();
+
+private:
+    bool _init;
+    long& _deviceId;
+    SmartRestTemplate& _tpl;
+    AbstractSmartRest& _client;
+};
+
+#endif
\ No newline at end of file