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

operation/OperationStore.h

Committer:
vwochnik
Date:
2014-10-24
Revision:
60:3c822f97fc73
Parent:
59:f96be79feccd
Child:
62:86a04c5bda18

File content as of revision 60:3c822f97fc73:

#ifndef OPERATIONSTORE_H
#define OPERATIONSTORE_H

#define STATE_PENDING 0
#define STATE_EXECUTING 1
#define STATE_SUCCESSFUL 2
#define STATE_FAILED 3

class OperationStore
{
public:
    struct Operation {
        long identifier;
        const char *description;
        uint8_t state;
    };
};

#endif