diff --git a/source/RobotAPI/components/units/HandUnit.cpp b/source/RobotAPI/components/units/HandUnit.cpp index faf41daf12ab8a41ff83f653b63b7e46659262e9..31e9562227a6604072e5dcac222b38e68018b0cb 100644 --- a/source/RobotAPI/components/units/HandUnit.cpp +++ b/source/RobotAPI/components/units/HandUnit.cpp @@ -143,7 +143,7 @@ void HandUnit::setShape(const std::string& shapeName, const Ice::Current& c) void HandUnit::setShapeWithObjectInstance(const std::string& shapeName, const std::string& objectInstanceName, const Ice::Current& c) { - ARMARX_WARNING <<"setShapeWithObjectInstance Function not implemented!"; + ARMARX_WARNING << "setShapeWithObjectInstance Function not implemented!"; } @@ -213,3 +213,8 @@ void armarx::HandUnit::setJointAngles(const armarx::NameValueMap& targetJointAng { } + +std::string HandUnit::describeHandState(const Ice::Current&) +{ + return "not implemented"; +} diff --git a/source/RobotAPI/components/units/HandUnit.h b/source/RobotAPI/components/units/HandUnit.h index 4b7ec730b1d15a2c5bfde10ceffd884563518272..01cee82544c93523b627d58a55e30f5d5775fec0 100644 --- a/source/RobotAPI/components/units/HandUnit.h +++ b/source/RobotAPI/components/units/HandUnit.h @@ -143,6 +143,8 @@ namespace armarx void setObjectReleased(const std::string& objectName, const Ice::Current&); void setJointAngles(const NameValueMap& targetJointAngles, const Ice::Current&); + std::string describeHandState(const Ice::Current&); + /** * \see armarx::PropertyUser::createPropertyDefinitions() */ diff --git a/source/RobotAPI/interface/units/HandUnitInterface.ice b/source/RobotAPI/interface/units/HandUnitInterface.ice index 7fffaddfaee232773aee84914a5cd4fd5731f099..b3bb4e62a89b22de34fc346ef149d0023ee4b39c 100644 --- a/source/RobotAPI/interface/units/HandUnitInterface.ice +++ b/source/RobotAPI/interface/units/HandUnitInterface.ice @@ -57,6 +57,7 @@ module armarx NameValueMap getShapeJointValues(string shapeName); NameValueMap getCurrentJointValues(); string getHandName(); + string describeHandState(); /** * setObjectGrasped informs the hand unit that an object has been successfully grasped.