A client for the SmartREST protocol from Cumulocity.

Dependencies:   SmartRest

Fork of MbedSmartRest by Vincent Wochnik

MbedSmartRest.h

Committer:
vwochnik
Date:
2014-05-26
Revision:
18:f76f9ae79195
Parent:
13:e76920d5e1ec

File content as of revision 18:f76f9ae79195:

#ifndef MBEDSMARTREST_H
#define MBEDSMARTREST_H

#include "SmartRest.h"
#include "MbedClient.h"

class MbedSmartRest : public SmartRest
{
public:
    MbedSmartRest(const char*, uint16_t, const char*, const char*, const char*);

private:
    MbedClient _client;
};

#endif