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:
2015-05-20
Revision:
116:5de54f09f754
Parent:
112:3872569be2af

File content as of revision 116:5de54f09f754:

#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