All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
14 lines
347 B
C++
14 lines
347 B
C++
#ifndef RECEIVESMONITORINGREPORTSIF_H_
|
|
#define RECEIVESMONITORINGREPORTSIF_H_
|
|
|
|
#include "fsfw/ipc/messageQueueDefinitions.h"
|
|
#include "monitoringConf.h"
|
|
|
|
class ReceivesMonitoringReportsIF {
|
|
public:
|
|
virtual MessageQueueId_t getCommandQueue() const = 0;
|
|
virtual ~ReceivesMonitoringReportsIF() {}
|
|
};
|
|
|
|
#endif /* RECEIVESMONITORINGREPORTSIF_H_ */
|