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

Make function virtual, remove log

parent e5028ab7
No related branches found
No related tags found
2 merge requests!102ArMem Memory Updates,!100Memory QueryBuilder
......@@ -35,9 +35,8 @@ armarx::armem::client::ReaderComponentPluginUser::~ReaderComponentPluginUser()
void
armarx::armem::client::ReaderComponentPluginUser::memoryUpdated(const std::vector<data::MemoryID>& updatedIDsIce, const Ice::Current& current)
armarx::armem::client::ReaderComponentPluginUser::memoryUpdated(const std::vector<data::MemoryID>& updatedIDsIce, const Ice::Current&)
{
ARMARX_ERROR << "Updated memory ";
std::vector<MemoryID> updatedIDs;
fromIce(updatedIDsIce, updatedIDs);
memoryReader.updated(updatedIDs);
......
......@@ -43,12 +43,14 @@ namespace armarx::armem::client
ReaderComponentPluginUser();
~ReaderComponentPluginUser() override;
void memoryUpdated(const std::vector<data::MemoryID>& updatedIDs, const Ice::Current& current) override;
virtual void memoryUpdated(const std::vector<data::MemoryID>& updatedIDs, const Ice::Current& current) override;
protected:
Reader memoryReader;
private:
ReaderComponentPlugin* plugin = nullptr;
......
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