fsfw/tests/src/fsfw_tests/integration/devices/TestCookie.cpp

15 lines
297 B
C++
Raw Normal View History

2021-10-17 23:27:31 +02:00
#include "TestCookie.h"
TestCookie::TestCookie(address_t address, size_t replyMaxLen):
address(address), replyMaxLen(replyMaxLen) {}
TestCookie::~TestCookie() {}
address_t TestCookie::getAddress() const {
return address;
}
size_t TestCookie::getReplyMaxLen() const {
return replyMaxLen;
}