00001 #!/usr/bin/env python 00002 # -*- coding: utf-8 -*- 00003 # -*- Python -*- 00004 00005 ## 00006 # @file Composite.cpp 00007 # @brief RT component server daemon 00008 # @date $Date: 2009-01-15 09:06:19 $ 00009 # @author Noriaki Ando <n-ando@aist.go.jp> 00010 # 00011 # Copyright (C) 2003-2008 00012 # Task-intelligence Research Group, 00013 # Intelligent Systems Research Institute, 00014 # National Institute of 00015 # Advanced Industrial Science and Technology (AIST), Japan 00016 # All rights reserved. 00017 # 00018 00019 00020 import sys 00021 00022 import OpenRTM_aist 00023 00024 def main(): 00025 manager = OpenRTM_aist.Manager.init(sys.argv) 00026 00027 manager.activateManager() 00028 00029 manager.runManager() 00030 00031 return 0 00032 00033 00034 if __name__ == "__main__": 00035 main()