28 lines
779 B
C++
28 lines
779 B
C++
#ifndef FSFW_TCDISTRIBUTION_CFDPDISTRIBUTORIF_H_
|
|
#define FSFW_TCDISTRIBUTION_CFDPDISTRIBUTORIF_H_
|
|
|
|
#include "../tmtcservices/AcceptsTelecommandsIF.h"
|
|
#include "../ipc/MessageQueueSenderIF.h"
|
|
|
|
/**
|
|
* This interface allows CFDP Services to register themselves at a CFDP Distributor.
|
|
* @ingroup tc_distribution
|
|
*/
|
|
class CFDPDistributorIF {
|
|
public:
|
|
/**
|
|
* The empty virtual destructor.
|
|
*/
|
|
virtual ~CFDPDistributorIF() {
|
|
}
|
|
/**
|
|
* With this method, Services can register themselves at the PUS Distributor.
|
|
* @param service A pointer to the registering Service.
|
|
* @return - @c RETURN_OK on success,
|
|
* - @c RETURN_FAILED on failure.
|
|
*/
|
|
virtual ReturnValue_t registerService( AcceptsTelecommandsIF* service ) = 0;
|
|
};
|
|
|
|
#endif /* FSFW_TCDISTRIBUTION_CFDPDISTRIBUTORIF_H_ */
|