2020-06-23 10:27:44 +02:00
|
|
|
#ifndef FRAMEWORK_RETURNVALUES_HASRETURNVALUESIF_H_
|
|
|
|
#define FRAMEWORK_RETURNVALUES_HASRETURNVALUESIF_H_
|
2016-06-15 23:48:41 +02:00
|
|
|
|
2018-07-12 16:29:32 +02:00
|
|
|
#include <framework/returnvalues/FwClassIds.h>
|
|
|
|
#include <config/returnvalues/classIds.h>
|
2020-04-05 23:03:32 +02:00
|
|
|
#include <cstdint>
|
2016-06-15 23:48:41 +02:00
|
|
|
|
|
|
|
#define MAKE_RETURN_CODE( number ) ((INTERFACE_ID << 8) + (number))
|
|
|
|
typedef uint16_t ReturnValue_t;
|
|
|
|
|
|
|
|
|
|
|
|
class HasReturnvaluesIF {
|
|
|
|
public:
|
|
|
|
static const ReturnValue_t RETURN_OK = 0;
|
2020-06-23 13:49:25 +02:00
|
|
|
//! This will be the all-ones value irrespective of used unsigned datatype.
|
2020-06-23 13:47:38 +02:00
|
|
|
static const ReturnValue_t RETURN_FAILED = -1;
|
2020-05-05 14:07:27 +02:00
|
|
|
virtual ~HasReturnvaluesIF() {}
|
2020-06-23 14:11:53 +02:00
|
|
|
|
|
|
|
static ReturnValue_t makeReturnCode(uint8_t interfaceId, uint8_t number) {
|
|
|
|
return (interfaceId << 8) + number;
|
|
|
|
}
|
2016-06-15 23:48:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* HASRETURNVALUESIF_H_ */
|