fsfw/src/fsfw/cfdp/handler/RemoteConfigTableIF.h

17 lines
403 B
C
Raw Normal View History

2022-08-09 18:51:44 +02:00
#ifndef FSFW_CFDP_HANDLER_REMOTECONFIGTABLEIF_H
#define FSFW_CFDP_HANDLER_REMOTECONFIGTABLEIF_H
#include "fsfw/cfdp/handler/mib.h"
namespace cfdp {
class RemoteConfigTableIF {
public:
2022-08-09 18:51:44 +02:00
virtual ~RemoteConfigTableIF() = default;
2022-08-17 17:09:39 +02:00
virtual bool getRemoteCfg(const cfdp::EntityId& remoteId, cfdp::RemoteEntityCfg** cfg) = 0;
2022-08-09 18:51:44 +02:00
};
} // namespace cfdp
#endif // FSFW_CFDP_HANDLER_REMOTECONFIGTABLEIF_H