Skip to content
Snippets Groups Projects
Commit 9798a1d9 authored by Matthias Greuter's avatar Matthias Greuter
Browse files

Addapt mock class to reflect interface change

parent be2be001
No related branches found
No related tags found
1 merge request!16BMW Dev-branch
...@@ -113,6 +113,12 @@ class MockQueryService : public mantle_api::ILaneLocationQueryService ...@@ -113,6 +113,12 @@ class MockQueryService : public mantle_api::ILaneLocationQueryService
return false; return false;
} }
std::vector<UniqueId> GetLaneIdsAtPosition(const Vec3d& position) const override
{
std::ignore = position;
return {};
}
private: private:
MockVehicle test_vehicle_{}; MockVehicle test_vehicle_{};
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment