In order to test some code aimed at running in a remote interpreter, I am trying to replace the Device entity by RobotSimu.
However, I get an error when trying to access to RobotSimu..after. The entity is exposed in python class Device but not by RobotSimu that derives from Device (in C++, not in python).
In order to test some code aimed at running in a remote interpreter, I am trying to replace the Device entity by RobotSimu. However, I get an error when trying to access to
RobotSimu..after
. The entity is exposed in python classDevice
but not byRobotSimu
that derives fromDevice
(in C++, not in python).I try to add some boost::python code here: https://github.com/florent-lamiraux/sot-core/commit/28bda180ffa60c7029404818a485def500cb9f59. Python class
RobotSimu
has a memberafter
, but when trying to access to it, I get the following error messageCould someone help me ?