fsfw/src/fsfw/monitoring/ReceivesMonitoringReportsIF.h
Robin Mueller ddcac2bbac
All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
reapply clang format
2022-02-02 10:29:30 +01:00

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_ */