Today's the day. Renamed platform to framework.
This commit is contained in:
26
fdir/ConfirmsFailuresIF.h
Normal file
26
fdir/ConfirmsFailuresIF.h
Normal file
@ -0,0 +1,26 @@
|
||||
/*
|
||||
* ConfirmsFailuresIF.h
|
||||
*
|
||||
* Created on: 10.09.2015
|
||||
* Author: baetz
|
||||
*/
|
||||
|
||||
#ifndef FRAMEWORK_FDIR_CONFIRMSFAILURESIF_H_
|
||||
#define FRAMEWORK_FDIR_CONFIRMSFAILURESIF_H_
|
||||
|
||||
#include <framework/ipc/MessageQueue.h>
|
||||
#include <framework/returnvalues/HasReturnvaluesIF.h>
|
||||
|
||||
class ConfirmsFailuresIF {
|
||||
public:
|
||||
static const uint8_t INTERFACE_ID = HANDLES_FAILURES_IF;
|
||||
static const ReturnValue_t YOUR_FAULT = MAKE_RETURN_CODE(0);
|
||||
static const ReturnValue_t MY_FAULT = MAKE_RETURN_CODE(1);
|
||||
static const ReturnValue_t CONFIRM_LATER = MAKE_RETURN_CODE(2);
|
||||
virtual ~ConfirmsFailuresIF() {}
|
||||
virtual MessageQueueId_t getEventReceptionQueue() = 0;
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif /* FRAMEWORK_FDIR_CONFIRMSFAILURESIF_H_ */
|
Reference in New Issue
Block a user