示例#1
0
文件: node.py 项目: vinnamkim/rclpy
    def get_topic_names_and_types(self,
                                  no_demangle: bool = False
                                  ) -> List[Tuple[str, str]]:
        """
        Get a list topic names and types for the node.

        :param no_demangle: If ``True``, then topic names and types returned will not be demangled.
        :return: List of tuples containing two strings: the topic name and topic type.
        """
        return _rclpy.rclpy_get_topic_names_and_types(self.handle, no_demangle)
示例#2
0
文件: node.py 项目: hfz-Nick/ROS
 def get_topic_names_and_types(self, no_demangle=False):
     return _rclpy.rclpy_get_topic_names_and_types(self.handle, no_demangle)
示例#3
0
文件: node.py 项目: yamokosk/rclpy
 def get_topic_names_and_types(self):
     return _rclpy.rclpy_get_topic_names_and_types(self.handle)
示例#4
0
文件: node.py 项目: ros2/rclpy
 def get_topic_names_and_types(self):
     return _rclpy.rclpy_get_topic_names_and_types(self.handle)