graph.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_multimaster/master/rocon_gateway_graph/LICENSE
00005 #
00006 ##############################################################################
00007 # Imports
00008 ##############################################################################
00009 
00010 import roslib
00011 roslib.load_manifest('rocon_gateway')
00012 import rospy
00013 import rocon_utilities.console as console
00014 from rocon_gateway import Graph
00015 from rocon_gateway import GatewayError
00016 
00017 ##############################################################################
00018 # Main
00019 ##############################################################################
00020 
00021 if __name__ == '__main__':
00022     rospy.init_node('test_graph')
00023     graph = Graph()
00024     rospy.sleep(1.0)
00025     graph.update()
00026     print graph._local_gateway
00027     print graph._remote_gateways
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties Friends


rocon_gateway_tests
Author(s): Jihoon
autogenerated on Tue Jan 15 2013 17:44:10