15 lines
342 B
Python
15 lines
342 B
Python
class Detector(DeviceBase):
|
|
def __init__(self, name):
|
|
DeviceBase.__init__(self, name)
|
|
|
|
def doInitialize(self):
|
|
DeviceBase.doInitialize(self)
|
|
|
|
def start():
|
|
print "startd"
|
|
|
|
def stop():
|
|
print "stopd"
|
|
|
|
def doClose(self):
|
|
DeviceBase.doClose(self) |