CdrBufferBase.py
Go to the documentation of this file.
00001 #!/usr/bin/env python
00002 # -*- coding: euc-jp -*-
00003 
00004 ##
00005 # @file  InPortConsumer.py
00006 # @brief InPortConsumer class
00007 # @date  $Date: 2007-12-31 03:08:03 $
00008 # @author Noriaki Ando <n-ando@aist.go.jp> and Shinji Kurihara
00009 #
00010 # Copyright (C) 2006-2008
00011 #     Noriaki Ando
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 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)


openrtm_aist_python
Author(s): Shinji Kurihara
autogenerated on Thu Aug 27 2015 14:17:28