fsfw/returnvalues/HasReturnvaluesIF.h

21 lines
589 B
C
Raw Normal View History

#ifndef FRAMEWORK_RETURNVALUES_HASRETURNVALUESIF_H_
#define FRAMEWORK_RETURNVALUES_HASRETURNVALUESIF_H_
#include <framework/returnvalues/FwClassIds.h>
#include <config/returnvalues/classIds.h>
#include <cstdint>
#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:04 +02:00
//! This will be the all-ones value irrespective of used unsigned datatype.
2020-06-23 13:46:43 +02:00
static const ReturnValue_t RETURN_FAILED = -1;
virtual ~HasReturnvaluesIF() {}
};
#endif /* HASRETURNVALUESIF_H_ */