Skip to content
Snippets Groups Projects
Commit c1bbab64 authored by Simon Ottenhaus's avatar Simon Ottenhaus
Browse files

renamed methods

parent 31578954
No related branches found
No related tags found
No related merge requests found
......@@ -191,12 +191,12 @@ std::string armarx::HandUnit::getHandName(const Ice::Current&)
return eef->getName();
}
void HandUnit::setJointPressures(const NameValueMap&, const Ice::Current&)
void HandUnit::setJointForces(const NameValueMap& targetJointForces, const Ice::Current&)
{
}
void HandUnit::setJointCommands(const NameCommandMap&, const Ice::Current&)
void HandUnit::sendJointCommands(const NameCommandMap& targetJointCommands, const Ice::Current&)
{
}
......
......@@ -166,8 +166,8 @@ namespace armarx
// HandUnitInterface interface
public:
std::string getHandName(const Ice::Current&);
void setJointPressures(const NameValueMap&, const Ice::Current&);
void setJointCommands(const NameCommandMap&, const Ice::Current&);
void setJointForces(const NameValueMap& targetJointForces, const Ice::Current&);
void sendJointCommands(const NameCommandMap& targetJointCommands , const Ice::Current&);
};
}
......
......@@ -75,9 +75,9 @@ module armarx
*/
void setJointAngles(NameValueMap targetJointAngles);
void setJointPressures(NameValueMap targetJointPressures);
void setJointForces(NameValueMap targetJointForces);
void setJointCommands(NameCommandMap targetJointCommands);
void sendJointCommands(NameCommandMap targetJointCommands);
};
/**
* Implements an interface to a HandUnitListener.
......
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