Skip to content
Snippets Groups Projects

Robot state predictions

Merged Rainer Kartmann requested to merge robot-state-predictions into master
1 file
+ 14
0
Compare changes
  • Side-by-side
  • Inline
@@ -50,6 +50,20 @@ namespace armarx::armem
}
template <class ContainerT>
std::vector<MemoryID> getEntityIDs(const ContainerT& container)
{
std::vector<armem::MemoryID> entityIDs;
container.forEachEntity([&entityIDs](const auto& entity)
{
entityIDs.push_back(entity.id());
});
return entityIDs;
}
std::string print(const wm::Memory& data, int maxDepth = -1, int depth = 0);
std::string print(const wm::CoreSegment& data, int maxDepth = -1, int depth = 0);
std::string print(const wm::ProviderSegment& data, int maxDepth = -1, int depth = 0);
Loading