fsfw/src/fsfw/tcdistribution/PUSDistributorIF.h

27 lines
797 B
C
Raw Normal View History

2020-10-01 13:23:06 +02:00
#ifndef FSFW_TCDISTRIBUTION_PUSDISTRIBUTORIF_H_
#define FSFW_TCDISTRIBUTION_PUSDISTRIBUTORIF_H_
2020-08-13 20:53:35 +02:00
#include "../ipc/MessageQueueSenderIF.h"
2022-02-02 10:29:30 +01:00
#include "../tmtcservices/AcceptsTelecommandsIF.h"
2020-10-01 13:23:06 +02:00
/**
* This interface allows PUS Services to register themselves at a PUS Distributor.
2020-10-01 13:23:06 +02:00
* @ingroup tc_distribution
*/
class PUSDistributorIF {
2022-02-02 10:29:30 +01:00
public:
/**
* The empty virtual destructor.
*/
virtual ~PUSDistributorIF() {}
/**
* With this method, Services can register themselves at the PUS Distributor.
* @param service A pointer to the registering Service.
2022-08-16 12:12:21 +02:00
* @return - @c returnvalue::OK on success,
* - @c returnvalue::FAILED on failure.
2022-02-02 10:29:30 +01:00
*/
virtual ReturnValue_t registerService(AcceptsTelecommandsIF* service) = 0;
};
2020-10-01 13:23:06 +02:00
#endif /* FSFW_TCDISTRIBUTION_PUSDISTRIBUTORIF_H_ */