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

17 lines
318 B
Python
Raw Normal View History

#!/usr/bin/env python
2018-09-17 18:29:00 +02:00
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