16 lines
347 B
Python
16 lines
347 B
Python
class StdDaq(DeviceBase):
|
|
def __init__(self, name):
|
|
DeviceBase.__init__(self, name)
|
|
|
|
def doInitialize(self):
|
|
DeviceBase.doInitialize(self)
|
|
|
|
def start():
|
|
print "start"
|
|
|
|
def stop():
|
|
print "stop"
|
|
|
|
def doClose(self):
|
|
DeviceBase.doClose(self)
|