Skip to content
Snippets Groups Projects
Commit 99bc1681 authored by Mirko Wächter's avatar Mirko Wächter
Browse files
parents 1787101c d3e0dfec
No related branches found
No related tags found
No related merge requests found
......@@ -125,7 +125,7 @@ void HandUnit::onExitComponent()
void HandUnit::shape(const std::string& shapeName, const Ice::Current& c)
void HandUnit::setShape(const std::string& shapeName, const Ice::Current& c)
{
}
......
......@@ -124,7 +124,7 @@ namespace armarx
/**
* Send command to the hand to form a specific shape position. The shapes are defined in the robot.xml file.
*/
virtual void shape(const std::string& shapeName, const Ice::Current& c = ::Ice::Current());
void setShape(const std::string& shapeName, const Ice::Current& c = ::Ice::Current());
/**
* @return a list of strings for shape positions which can be used together with HandUnit::shape().
......
......@@ -62,7 +62,7 @@ namespace armarx
if (this->_synchronized)
{
ARMARX_VERBOSE << "Loaded robot from file " << robotFile;
ARMARX_VERBOSE << "Loaded robot from file " << robotFile << ". Robot name: " << this->_synchronized->getName();
}
else
{
......
......@@ -327,6 +327,7 @@ bool SharedRobotServant::hasRobotNodeSet(const string & name, const Current &cur
string SharedRobotServant::getName(const Current &current)
{
//ARMARX_VERBOSE_S << "SharedRobotServant::getname:" << _robot->getName();
return _robot->getName();
}
......
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