eive-obsw/unittest/rebootLogic/src/HasActionsIF.h
Robin Mueller 9e03f9babe
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
apply clang format to unittest folder as well
2022-03-01 15:06:59 +01:00

10 lines
259 B
C++

#include "definitions.h"
class HasActionsIF {
public:
static const ReturnValue_t IS_BUSY = 1;
static const ReturnValue_t INVALID_PARAMETERS = 2;
static const ReturnValue_t EXECUTION_FINISHED = 3;
static const ReturnValue_t INVALID_ACTION_ID = 4;
};