Own fork of MbedSmartRestMain

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

util/AbstractReporter.h

Committer:
xinlei
Date:
2015-05-07
Revision:
98:e369fc75c000
Child:
100:dbcd3bc51758

File content as of revision 98:e369fc75c000:

#ifndef ABSTRACTREPORTER_H
#define ABSTRACTREPORTER_H

class AbstractReporter
{
public:
        virtual ~AbstractReporter() = 0;
        virtual size_t read(const char*) = 0;
};

#endif /* ABSTRACTREPORTER_H */