util.py
Go to the documentation of this file.
00001 #!/usr/bin/env python
00002 #
00003 # License: BSD
00004 #   https://raw.github.com/robotics-in-concert/rocon_app_manager/concert_client/LICENSE
00005 #
00006 ##############################################################################
00007 # Imports
00008 ##############################################################################
00009 
00010 import roslib
00011 roslib.load_manifest('concert_client')
00012 import gateway_msgs.msg as gateway_msgs
00013 
00014 
00015 def createRemoteRule(gateway, rule):
00016     r = gateway_msgs.RemoteRule()
00017     r.gateway = gateway
00018     r.rule = rule
00019     return r
00020 
00021 
00022 def createRule(name, type):
00023     r = gateway_msgs.Rule()
00024     r.name = name
00025     r.type = type
00026     r.node = ''
00027     return r
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends


concert_client
Author(s): Jihoon
autogenerated on Tue Jan 22 2013 12:59:50