fsfw/src/fsfw/monitoring/ReceivesMonitoringReportsIF.h

14 lines
347 B
C
Raw Normal View History

#ifndef RECEIVESMONITORINGREPORTSIF_H_
#define RECEIVESMONITORINGREPORTSIF_H_
2021-07-19 18:26:54 +02:00
#include "fsfw/ipc/messageQueueDefinitions.h"
2022-02-02 10:29:30 +01:00
#include "monitoringConf.h"
class ReceivesMonitoringReportsIF {
2022-02-02 10:29:30 +01:00
public:
virtual MessageQueueId_t getCommandQueue() const = 0;
virtual ~ReceivesMonitoringReportsIF() {}
};
#endif /* RECEIVESMONITORINGREPORTSIF_H_ */