Skip to content
Snippets Groups Projects
Commit abf49402 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Add a templated VirtualRobot::Robot::getSensor function

parent 05bf8cfb
No related branches found
No related tags found
No related merge requests found
......@@ -368,6 +368,12 @@ namespace VirtualRobot
*/
virtual SensorPtr getSensor(const std::string& name);
template<class SensorType>
boost::shared_ptr<SensorType> getSensor(const std::string& name)
{
return boost::dynamic_pointer_cast<SensorType>(getSensor(name));
}
/*!
Returns all sensors that are defined within this robot.
*/
......
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