16 lines
380 B
C++
16 lines
380 B
C++
#ifndef FSFW_TESTS_CFDP_REMOTCONFIGTABLEMOCK_H
|
|
#define FSFW_TESTS_CFDP_REMOTCONFIGTABLEMOCK_H
|
|
|
|
#include "fsfw/cfdp/handler/RemoteConfigTableIF.h"
|
|
|
|
namespace cfdp {
|
|
|
|
class RemoteConfigTableMock : public RemoteConfigTableIF {
|
|
public:
|
|
bool getRemoteCfg(EntityId remoteId, RemoteEntityCfg *cfg) override;
|
|
};
|
|
|
|
} // namespace cfdp
|
|
|
|
#endif // FSFW_TESTS_CFDP_REMOTCONFIGTABLEMOCK_H
|