A client for the SmartREST protocol from Cumulocity.

Dependencies:   SmartRest

Fork of MbedSmartRest by Vincent Wochnik

MbedSmartRest.h

Committer:
vwochnik
Date:
2014-04-16
Revision:
17:57dd24cb6620
Parent:
13:e76920d5e1ec

File content as of revision 17:57dd24cb6620:

#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