1
0
forked from fsfw/fsfw

copy ctor and assgnment op forbidden

for serial linked lists
This commit is contained in:
2020-04-05 23:03:32 +02:00
parent 42838272a5
commit e791f44c41
3 changed files with 14 additions and 1 deletions

View File

@ -1,9 +1,9 @@
#ifndef HASRETURNVALUESIF_H_
#define HASRETURNVALUESIF_H_
#include <stdint.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;