Official reference client implementation for Cumulocity SmartREST on u-blox C027.

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Vincent Wochnik

LocationUpdate.h

Committer:
vwochnik
Date:
2014-10-23
Revision:
55:a0f7295ed6b6
Parent:
47:89ae46d5c466

File content as of revision 55:a0f7295ed6b6:

#ifndef LOCATIONUPDATE_H
#define LOCATIONUPDATE_H

#include "AbstractSmartRest.h"
#include "SmartRestTemplate.h"
#include "GPSTracker.h"

class LocationUpdate
{
public:
    LocationUpdate(AbstractSmartRest&, SmartRestTemplate&, long&, GPSTracker&);
    
    bool init();
    bool run();

private:
    bool _init;
    long& _deviceId;
    SmartRestTemplate& _tpl;
    AbstractSmartRest& _client;
    GPSTracker& _gpsTracker;
};

#endif