Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 import sys,os
00020
00021 import OpenRTM_aist
00022
00023 def main():
00024 conf_file=os.path.join(os.path.dirname(__file__),"rtcd.conf")
00025 sys.argv.append('-f')
00026 sys.argv.append(conf_file)
00027 manager = OpenRTM_aist.Manager.init(sys.argv)
00028
00029 manager.activateManager()
00030
00031 manager.runManager()
00032
00033 return
00034
00035 if __name__ == "__main__":
00036 main()