mueller_merge_mohr_serialize #11

Closed
muellerr wants to merge 22 commits from mueller_merge_mohr_serialize into front_branch
Showing only changes of commit 7aa713a452 - Show all commits

View File

@ -15,6 +15,10 @@ public:
//! This will be the all-ones value irrespective of used unsigned datatype. //! This will be the all-ones value irrespective of used unsigned datatype.
static const ReturnValue_t RETURN_FAILED = -1; static const ReturnValue_t RETURN_FAILED = -1;
virtual ~HasReturnvaluesIF() {} virtual ~HasReturnvaluesIF() {}
static ReturnValue_t makeReturnCode(uint8_t interfaceId, uint8_t number) {
return (interfaceId << 8) + number;
}
}; };
#endif /* HASRETURNVALUESIF_H_ */ #endif /* HASRETURNVALUESIF_H_ */