Skip to content
Snippets Groups Projects
Commit 62f37ce2 authored by Mirko Wächter's avatar Mirko Wächter
Browse files

using debugobserver as topic and not as proxy

parent 01d9fdeb
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ namespace armarx
topicName = getName() + "State";
usingProxy(getProperty<std::string>("KinematicUnitName").getValue());
usingProxy(getProperty<std::string>("RobotStateComponentName").getValue());
usingProxy("DebugObserver");
offeringTopic("DebugObserver");
offeringTopic(topicName);
usingTopic(getProperty<std::string>("RobotStateTopicName").getValue());
......@@ -68,7 +68,7 @@ namespace armarx
{
ScopedLock lock(dataMutex);
debugObs = getProxy<DebugObserverInterfacePrx>("DebugObserver");
debugObs = getTopic<DebugObserverInterfacePrx>("DebugObserver");
kinematicUnitPrx = getProxy<KinematicUnitInterfacePrx>(getProperty<std::string>("KinematicUnitName").getValue());
robotStateComponentPrx = getProxy<RobotStateComponentInterfacePrx>(getProperty<std::string>("RobotStateComponentName").getValue());
......
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