Own fork of MbedSmartRestMain

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

DeviceBootstrap.h

Committer:
xinlei
Date:
2016-08-08
Revision:
138:f8ab852e83e7
Parent:
116:5de54f09f754

File content as of revision 138:f8ab852e83e7:

#ifndef DEVICEBOOTSTRAP_H
#define DEVICEBOOTSTRAP_H

#include <stddef.h>
#include "DeviceInfo.h"


class DeviceBootstrap
{
public:
    DeviceBootstrap(DeviceInfo& d): deviceInfo(d) {}
    bool bootstrap();

protected:
    bool obtainFromPlatform();

private:
    DeviceInfo& deviceInfo;
};

#endif