forked from mohr/ArduinoIO
26 lines
386 B
C
26 lines
386 B
C
|
#ifndef HASRETURNVALUESIF_H_
|
||
|
#define HASRETURNVALUESIF_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#define MAKE_RETURN_CODE( number ) ((INTERFACE_ID << 8) + (number))
|
||
|
typedef uint16_t ReturnValue_t;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
class HasReturnvaluesIF {
|
||
|
public:
|
||
|
static const ReturnValue_t RETURN_OK = 0;
|
||
|
static const ReturnValue_t RETURN_FAILED = 1;
|
||
|
virtual ~HasReturnvaluesIF() {
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
#endif /* HASRETURNVALUESIF_H_ */
|