00001 __author__ = 'tom1231' 00002 00003 class Device: 00004 def __init__(self, name, output): 00005 self._name = name 00006 self._output = output 00007 00008 def publish(self, data): raise NotImplementedError 00009 00010 def getType(self): raise NotImplementedError