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 from OpenRTM_aist import *
00021
00022 class CdrBufferBase(OpenRTM_aist.BufferBase):
00023 def __init__(self):
00024 pass
00025
00026
00027 cdrbufferfactory = None
00028
00029
00030 class CdrBufferFactory(OpenRTM_aist.Factory):
00031 def __init__(self):
00032 OpenRTM_aist.Factory.__init__(self)
00033 pass
00034
00035
00036 def instance():
00037 global cdrbufferfactory
00038
00039 if cdrbufferfactory is None:
00040 cdrbufferfactory = CdrBufferFactory()
00041
00042 return cdrbufferfactory
00043
00044 instance = staticmethod(instance)