A client for the SmartREST protocol from Cumulocity.

Dependencies:   HTTPClient SmartRest

MbedSmartRest.h

Committer:
vwochnik
Date:
2014-02-02
Revision:
7:26524a6a04a1

File content as of revision 7:26524a6a04a1:

#ifndef MBEDSMARTREST_H
#define MBEDSMARTREST_H

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

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

private:
    MbedClient _client;
};

#endif