Skip to content
Snippets Groups Projects
Commit 6cf5a48a authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Add argument name

parent de1ac125
No related branches found
No related tags found
No related merge requests found
......@@ -114,10 +114,10 @@ namespace armarx::armem::server
ComponentPluginUser::~ComponentPluginUser() = default;
// Set the name of a memory
void ComponentPluginUser::setMemoryName(const std::string& name)
void ComponentPluginUser::setMemoryName(const std::string& memoryName)
{
workingMemory.name() = name;
longtermMemoryManager.setName(name);
workingMemory.name() = memoryName;
longtermMemoryManager.setName(memoryName);
}
......
......@@ -76,7 +76,7 @@ namespace armarx::armem::server
virtual ~ComponentPluginUser() override;
/// Set the name of the wm and the ltm (if enabled)
void setMemoryName(const std::string&);
void setMemoryName(const std::string& memoryName);
// WritingInterface interface
......
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