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/ControlParser.h	Wed May 13 12:12:55 2015 +0000
+++ b/operation/ControlParser.h	Wed May 13 13:03:20 2015 +0000
@@ -2,17 +2,14 @@
 #define CONTROLPARSER_H
 #include "Operation.h"
 #include "lex.h"
-#include "ConfigSync.h"
 
 enum BayeuxAdvice{ BA_RETRY, BA_HANDSHAKE, BA_NONE };
 
 class ControlParser
 {
 public:
-        ControlParser(OperationPool& pool, 
-                ConfigSync& configSync): opType(0),
-                bayeuxAdvice(BA_RETRY), bayeuxTimeout(-1), bayeuxInterval(0),
-                opool(pool), _configSync(configSync) {}
+        ControlParser(OperationPool& pool): opType(0), bayeuxAdvice(BA_RETRY),
+        bayeuxTimeout(-1), bayeuxInterval(0), opool(pool) {}
         virtual ~ControlParser() {}
         BayeuxAdvice getBayeuxAdvice() const { return bayeuxAdvice; }
         int getBayeuxInterval() const { return bayeuxInterval; }
@@ -41,7 +38,6 @@
         int bayeuxInterval;
         PtrParseFunc ptrPF;
         OperationPool& opool;
-        ConfigSync& _configSync;
 };
 
 #endif /* CONTROLPARSER_H */