Skip to content
Snippets Groups Projects
Commit 8e3bf5b1 authored by Fabian Reister's avatar Fabian Reister
Browse files

simple writer: minor adjustments

parent ec554534
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,6 @@ namespace armarx::armem::client::util
const std::string prefix = propertyPrefix();
def->optional(props.memoryName, prefix + "Memory");
def->optional(props.coreSegmentName, prefix + "CoreSegment");
def->required(props.providerName,
......@@ -43,13 +42,13 @@ namespace armarx::armem::client::util
memoryWriterClient.setWritingMemory(result.proxy);
// memoryReader.setReadingMemory(result.proxy);
}
std::mutex& SimpleWriterBase::memoryWriterMutex()
std::mutex& SimpleWriterBase::memoryWriterMutex()
{
return memoryMutex;
}
armem::client::Writer& SimpleWriterBase::memoryWriter()
armem::client::Writer& SimpleWriterBase::memoryWriter()
{
return memoryWriterClient;
}
......
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