A client for the SmartREST protocol from Cumulocity.

Dependencies:   SmartRest

Fork of MbedSmartRest by Vincent Wochnik

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers MbedSmartRest.h Source File

MbedSmartRest.h

00001 #ifndef MBEDSMARTREST_H
00002 #define MBEDSMARTREST_H
00003 
00004 #include "SmartRest.h"
00005 #include "MbedClient.h"
00006 
00007 class MbedSmartRest : public SmartRest
00008 {
00009 public:
00010     MbedSmartRest(const char*, uint16_t, const char*, const char*, const char*);
00011 
00012 private:
00013     MbedClient _client;
00014 };
00015 
00016 #endif