use sanitized include file

This commit is contained in:
2022-08-01 14:23:52 +02:00
parent aa978205d8
commit bf540ebb49
15 changed files with 53 additions and 26 deletions

View File

@ -5,8 +5,8 @@ PusDistributorMock::PusDistributorMock() : SystemObject(objects::NO_OBJECT, fals
PusDistributorMock::PusDistributorMock(object_id_t registeredId)
: SystemObject(registeredId, true) {}
ReturnValue_t PusDistributorMock::registerService(AcceptsTelecommandsIF *service) {
ReturnValue_t PusDistributorMock::registerService(const AcceptsTelecommandsIF& service) {
registerCallCount++;
lastServiceArg = service;
registeredServies.push_back(&service);
return HasReturnvaluesIF::RETURN_OK;
}