fsfw/src/fsfw/events/EventReportingProxyIF.h

15 lines
396 B
C
Raw Normal View History

#ifndef FRAMEWORK_EVENTS_EVENTREPORTINGPROXYIF_H_
#define FRAMEWORK_EVENTS_EVENTREPORTINGPROXYIF_H_
2020-08-13 20:53:35 +02:00
#include "Event.h"
class EventReportingProxyIF {
2022-02-02 10:29:30 +01:00
public:
2022-08-23 19:37:30 +02:00
virtual ~EventReportingProxyIF() = default;
2022-02-02 10:29:30 +01:00
virtual void forwardEvent(Event event, uint32_t parameter1 = 0,
uint32_t parameter2 = 0) const = 0;
};
#endif /* FRAMEWORK_EVENTS_EVENTREPORTINGPROXYIF_H_ */