Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed
Fork of MbedSmartRestMain by
Diff: SignalQualityMeasurement.h
- Revision:
- 55:a0f7295ed6b6
- Parent:
- 41:804f6a0bda26
diff -r 7dcc8898d87d -r a0f7295ed6b6 SignalQualityMeasurement.h
--- a/SignalQualityMeasurement.h Wed Sep 03 14:36:55 2014 +0000
+++ b/SignalQualityMeasurement.h Thu Oct 23 12:50:07 2014 +0000
@@ -1,14 +1,14 @@
#ifndef SIGNALQUALITYMEASUREMENT_H
#define SIGNALQUALITYMEASUREMENT_H
-#include "SmartRest.h"
+#include "AbstractSmartRest.h"
#include "SmartRestTemplate.h"
#include "DeviceInfo.h"
class SignalQualityMeasurement
{
public:
- SignalQualityMeasurement(SmartRest&, SmartRestTemplate&, long&, DeviceInfo&);
+ SignalQualityMeasurement(AbstractSmartRest&, SmartRestTemplate&, long&, DeviceInfo&);
bool init();
bool run();
@@ -17,7 +17,7 @@
bool _init;
long& _deviceId;
SmartRestTemplate& _tpl;
- SmartRest& _client;
+ AbstractSmartRest& _client;
DeviceInfo& _deviceInfo;
};

Cumulocity