2016-06-15 23:48:41 +02:00
|
|
|
#ifndef RECEIVESMONITORINGREPORTSIF_H_
|
|
|
|
#define RECEIVESMONITORINGREPORTSIF_H_
|
|
|
|
|
2018-07-12 16:29:32 +02:00
|
|
|
#include <framework/ipc/MessageQueueSenderIF.h>
|
2016-06-15 23:48:41 +02:00
|
|
|
|
|
|
|
class ReceivesMonitoringReportsIF {
|
|
|
|
public:
|
|
|
|
virtual MessageQueueId_t getCommandQueue() const = 0;
|
|
|
|
virtual ~ReceivesMonitoringReportsIF() {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* RECEIVESMONITORINGREPORTSIF_H_ */
|