00001 #!/usr/bin/env python 00002 # -*- coding: euc-jp -*- 00003 00004 00005 ## 00006 # @file DefaultPeriodicTask.py 00007 # @brief PeiodicTaskFactory class 00008 # @date $Date$ 00009 # @author Noriaki Ando <n-ando@aist.go.jp> and Shinji Kurihara 00010 # 00011 # Copyright (C) 2009 00012 # Noriaki Ando 00013 # Task-intelligence Research Group, 00014 # Intelligent Systems Research Institute, 00015 # National Institute of 00016 # Advanced Industrial Science and Technology (AIST), Japan 00017 # All rights reserved. 00018 00019 00020 import OpenRTM_aist 00021 00022 00023 def DefaultPeriodicTaskInit(): 00024 OpenRTM_aist.PeriodicTaskFactory.instance().addFactory("default", 00025 OpenRTM_aist.PeriodicTask, 00026 OpenRTM_aist.Delete) 00027