fsfw/src/fsfw/osal/linux/InternalErrorCodes.cpp

11 lines
275 B
C++
Raw Normal View History

2021-07-13 20:58:45 +02:00
#include "fsfw/osal/InternalErrorCodes.h"
2018-07-13 18:28:26 +02:00
ReturnValue_t InternalErrorCodes::translate(uint8_t code) {
2022-02-02 10:29:30 +01:00
// TODO This class can be removed
return HasReturnvaluesIF::RETURN_FAILED;
2018-07-13 18:28:26 +02:00
}
2022-02-02 10:29:30 +01:00
InternalErrorCodes::InternalErrorCodes() {}
2018-07-13 18:28:26 +02:00
2022-02-02 10:29:30 +01:00
InternalErrorCodes::~InternalErrorCodes() {}