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:
108:f1ee3e1eb126
Parent:
107:fc5f25f0e0d5
--- a/operation/OperationSupport.h	Wed May 13 12:12:55 2015 +0000
+++ b/operation/OperationSupport.h	Wed May 13 13:03:20 2015 +0000
@@ -4,22 +4,20 @@
 #include "Operation.h"
 #include "SmartRestConf.h"
 #include "SmartRestTemplate.h"
-#include "ConfigSync.h"
 
 class OperationSupport
 {
 public:
-    OperationSupport(SmartRestTemplate& tpl, OperationPool& pool,
-    ConfigSync& _conf): _init(false), _tpl(tpl), opool(pool), conf(_conf) {}
+    OperationSupport(SmartRestTemplate& tpl, OperationPool& pool):
+    _init(false), _tpl(tpl), opool(pool) {}
 
+    bool init();
     bool executePendingOperations();
-    bool init();
 
 private:
     bool _init;
     SmartRestTemplate& _tpl;
     OperationPool& opool;
-    ConfigSync &conf;
 };
 
 #endif
\ No newline at end of file