ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
rclcpp::Node
inherits from std::enable_shared_from_this<>
. You can get a shared pointer to a node by calling shared_from_this()
in your subclass. There's more info about std::enable_shared_from_this<>
here.