Skip to content
Snippets Groups Projects
Commit 23f219a4 authored by Jean Patrick Mathes's avatar Jean Patrick Mathes
Browse files

Rename to ObjectMemoryEditor

parent e1fbef6b
No related branches found
No related tags found
No related merge requests found
......@@ -33,4 +33,4 @@ add_subdirectory(StatechartExecutorExample)
add_subdirectory(TopicTimingTest)
add_subdirectory(ViewSelection)
add_subdirectory(InteractiveMemoryEditor)
add_subdirectory(ObjectMemoryEditor)
armarx_component_set_name("InteractiveMemoryEditor")
armarx_component_set_name("ObjectMemoryEditor")
set(COMPONENT_LIBS
......@@ -11,12 +11,12 @@ set(COMPONENT_LIBS
)
set(SOURCES
InteractiveMemoryEditor.cpp
ObjectMemoryEditor.cpp
InteractionObserver.cpp
Editor.cpp
)
set(HEADERS
InteractiveMemoryEditor.h
ObjectMemoryEditor.h
InteractionObserver.h
Editor.h
)
......
#include "Editor.h"
#include <RobotAPI/components/InteractiveMemoryEditor/InteractionObserver.h>
#include <RobotAPI/libraries/ArmarXObjects/ProvidedObjectPose.h>
#include <RobotAPI/libraries/ArmarXObjects/ice_conversions.h>
......
......@@ -6,8 +6,7 @@
#include <RobotAPI/libraries/ArmarXObjects/plugins/ObjectPoseClientPlugin.h>
#include <RobotAPI/libraries/ArmarXObjects/plugins/ObjectPoseProviderPlugin.h>
#include <RobotAPI/libraries/ArmarXObjects/ObjectFinder.h>
#include "InteractionObserver.h"
#include <RobotAPI/components/ObjectMemoryEditor/InteractionObserver.h>
namespace armarx
{
......
#include "InteractiveMemoryEditor.h"
#include "ObjectMemoryEditor.h"
#include <ArmarXCore/core/time/Metronome.h>
......@@ -9,7 +9,7 @@
namespace armarx
{
armarx::PropertyDefinitionsPtr InteractiveMemoryEditor::createPropertyDefinitions()
armarx::PropertyDefinitionsPtr ObjectMemoryEditor::createPropertyDefinitions()
{
armarx::PropertyDefinitionsPtr defs = new ComponentPropertyDefinitions(getConfigIdentifier());
......@@ -22,12 +22,12 @@ namespace armarx
return defs;
}
std::string InteractiveMemoryEditor::getDefaultName() const
std::string ObjectMemoryEditor::getDefaultName() const
{
return "InteractiveMemoryEditor";
}
void InteractiveMemoryEditor::onInitComponent()
void ObjectMemoryEditor::onInitComponent()
{
{
providerInfo.objectType = objpose::ObjectType::KnownObject;
......@@ -44,7 +44,7 @@ namespace armarx
}
}
void InteractiveMemoryEditor::onConnectComponent()
void ObjectMemoryEditor::onConnectComponent()
{
setDebugObserverBatchModeEnabled(true);
......@@ -55,16 +55,16 @@ namespace armarx
objectVizTask->start();
}
void InteractiveMemoryEditor::onDisconnectComponent()
void ObjectMemoryEditor::onDisconnectComponent()
{
}
void InteractiveMemoryEditor::onExitComponent()
void ObjectMemoryEditor::onExitComponent()
{
}
void InteractiveMemoryEditor::run()
void ObjectMemoryEditor::run()
{
objpose::ObjectPoseClient client = getClient();
......@@ -95,12 +95,12 @@ namespace armarx
}
}
objpose::ProviderInfo InteractiveMemoryEditor::getProviderInfo(const Ice::Current & /*unused*/)
objpose::ProviderInfo ObjectMemoryEditor::getProviderInfo(const Ice::Current & /*unused*/)
{
return providerInfo;
}
objpose::provider::RequestObjectsOutput InteractiveMemoryEditor::requestObjects(
objpose::provider::RequestObjectsOutput ObjectMemoryEditor::requestObjects(
const objpose::provider::RequestObjectsInput &input, const Ice::Current & /*unused*/)
{
objpose::provider::RequestObjectsOutput output;
......
......@@ -13,7 +13,7 @@
namespace armarx
{
class InteractiveMemoryEditor :
class ObjectMemoryEditor :
virtual public armarx::Component,
virtual public armarx::DebugObserverComponentPluginUser,
virtual public armarx::ArVizComponentPluginUser,
......
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