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:
117:5de54f09f754
Parent:
113:3872569be2af
--- a/DeviceBootstrap.h	Mon May 18 09:29:12 2015 +0000
+++ b/DeviceBootstrap.h	Wed May 20 09:55:49 2015 +0000
@@ -2,22 +2,20 @@
 #define DEVICEBOOTSTRAP_H
 
 #include <stddef.h>
-#include "AbstractSmartRest.h"
 #include "DeviceInfo.h"
 
 
 class DeviceBootstrap
 {
 public:
-    DeviceBootstrap(AbstractSmartRest&, DeviceInfo&);
+    DeviceBootstrap(DeviceInfo& d): deviceInfo(d) {}
     bool bootstrap();
 
 protected:
     bool obtainFromPlatform();
 
 private:
-    AbstractSmartRest& _client;
-    DeviceInfo& _deviceInfo;
+    DeviceInfo& deviceInfo;
 };
 
 #endif
\ No newline at end of file