All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
24 lines
618 B
C++
24 lines
618 B
C++
#ifndef FSFW_TIMEMANAGER_RECEIVESTIMEINFOIF_H_
|
|
#define FSFW_TIMEMANAGER_RECEIVESTIMEINFOIF_H_
|
|
|
|
#include "../ipc/MessageQueueSenderIF.h"
|
|
|
|
/**
|
|
* This is a Interface for classes that receive timing information
|
|
* with the help of a dedicated message queue.
|
|
*/
|
|
class ReceivesTimeInfoIF {
|
|
public:
|
|
/**
|
|
* Returns the id of the queue which receives the timing information.
|
|
* @return Queue id of the timing queue.
|
|
*/
|
|
virtual MessageQueueId_t getTimeReceptionQueue() const = 0;
|
|
/**
|
|
* Empty virtual destructor.
|
|
*/
|
|
virtual ~ReceivesTimeInfoIF() {}
|
|
};
|
|
|
|
#endif /* FSFW_TIMEMANAGER_RECEIVESTIMEINFOIF_H_ */
|