Skip to content
Snippets Groups Projects
Verified Commit 0006ca62 authored by Peter Albrecht's avatar Peter Albrecht :monkey:
Browse files

Change misleading method name

parent 482e0e89
No related branches found
No related tags found
1 merge request!512Skill-Gui Stability and QOL
......@@ -267,7 +267,7 @@ namespace armarx::skills::gui
}
SkillMap
SkillManagerWrapper::getSkills()
SkillManagerWrapper::getSkillsFiltered()
{
std::scoped_lock l(mutex_snapshot);
......@@ -275,6 +275,13 @@ namespace armarx::skills::gui
return filtered.skills;
}
SkillMap SkillManagerWrapper::getSkills()
{
std::scoped_lock l(mutex_snapshot);
return snapshot.skills;
}
StatusMap
SkillManagerWrapper::getExecutions()
......
......@@ -61,6 +61,12 @@ namespace armarx::skills::gui
*/
SkillMap getSkills();
/**
* @brief Returns the latest skills snapshot.
* @return The map representing all currently known skills.
*/
SkillMap getSkillsFiltered();
/**
* @brief Returns the latest status snapshot.
* @return The map containing status updates for all execution ids.
......
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