Skip to content
Snippets Groups Projects
Commit c67cc33e authored by Christian Dreher's avatar Christian Dreher
Browse files

feature: Add memory listener Ice interface.

parent ddc34eb2
No related branches found
No related tags found
3 merge requests!102ArMem Memory Updates,!100Memory QueryBuilder,!99Memory subscriptions
......@@ -106,6 +106,7 @@ set(SLICE_FILES
armem/ReadingInterface.ice
armem/WritingInterface.ice
armem/MemoryInterface.ice
armem/MemoryListenerInterface.ice
armem/MemoryNameSystemInterface.ice
armem/query.ice
......
......@@ -3,6 +3,7 @@
#include <RobotAPI/interface/armem/ReadingInterface.ice>
#include <RobotAPI/interface/armem/WritingInterface.ice>
#include <RobotAPI/interface/armem/MemoryInterface.ice>
#include <RobotAPI/interface/armem/MemoryListenerInterface.h>
module armarx
......
#pragma once
#include <RobotAPI/interface/armem/memory.ice>
module armarx
{
module armem
{
struct UpdateInfo
{
data::MemoryID entitySnapshotID;
};
sequence<UpdateInfo> UpdateInfos;
interface MemoryListenerInterface
{
void memoryUpdated(UpdateInfos updates);
};
};
};
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