fsfw/unittests/mocks/cfdp/RemoteConfigTableMock.h

16 lines
380 B
C
Raw Normal View History

#ifndef FSFW_TESTS_CFDP_REMOTCONFIGTABLEMOCK_H
#define FSFW_TESTS_CFDP_REMOTCONFIGTABLEMOCK_H
#include "fsfw/cfdp/handler/RemoteConfigTableIF.h"
namespace cfdp {
2022-08-09 21:03:56 +02:00
class RemoteConfigTableMock : public RemoteConfigTableIF {
public:
bool getRemoteCfg(EntityId remoteId, RemoteEntityCfg *cfg) override;
};
2022-08-09 21:03:56 +02:00
} // namespace cfdp
#endif // FSFW_TESTS_CFDP_REMOTCONFIGTABLEMOCK_H