l1.5-safety-system/safety_user_plugin/scripts/ros_wrapper.py

17 lines
318 B
Python

#!/usr/bin/env python
class ROSWrapper:
def __init__(self):
pass
def setup_node(self):
raise NotImplementedError
def select_robot(self,robot_id):
raise NotImplementedError
return False
def set_robots_list_update_callback(self,callback_function):
self.robots_list_update_callback = callback_function