A client for the SmartREST protocol from Cumulocity.

Dependencies:   SmartRest

Fork of MbedSmartRest by Vincent Wochnik

MbedSmartRest.h

Committer:
vwochnik
Date:
2014-04-11
Revision:
13:e76920d5e1ec
Parent:
7:26524a6a04a1

File content as of revision 13:e76920d5e1ec:

#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