Own fork of MbedSmartRestMain

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

Revision:
65:a62dbef2f924
Parent:
64:31a640c32399
Child:
66:31c754c36ed7
--- a/operation/OperationExecutor.h	Thu Oct 30 12:30:04 2014 +0000
+++ b/operation/OperationExecutor.h	Thu Oct 30 13:38:20 2014 +0000
@@ -4,11 +4,12 @@
 #include "AbstractSmartRest.h"
 #include "SmartRestTemplate.h"
 #include "OperationStore.h"
+#include "DeviceIO.h"
 
 class OperationExecutor
 {
 public:
-    OperationExecutor(AbstractSmartRest&, SmartRestTemplate&, long&);
+    OperationExecutor(AbstractSmartRest&, SmartRestTemplate&, long&, DeviceIO&);
     
     bool init();
     bool executeOperation(OperationStore::Operation&);
@@ -21,6 +22,7 @@
     long& _deviceId;
     SmartRestTemplate& _tpl;
     AbstractSmartRest& _client;
+    DeviceIO& _io;
 };
 
 #endif
\ No newline at end of file