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 OpenRTM_aist
00020
00021 periodictaskfactory = None
00022
00023 class PeriodicTaskFactory(OpenRTM_aist.Factory,OpenRTM_aist.PeriodicTask):
00024 def __init__(self):
00025 OpenRTM_aist.Factory.__init__(self)
00026 pass
00027
00028
00029 def __del__(self):
00030 pass
00031
00032
00033 def instance():
00034 global periodictaskfactory
00035
00036 if periodictaskfactory is None:
00037 periodictaskfactory = PeriodicTaskFactory()
00038
00039 return periodictaskfactory
00040
00041 instance = staticmethod(instance)