diff --git a/script/devices/Detector.py b/script/devices/Detector.py new file mode 100644 index 0000000..52bff35 --- /dev/null +++ b/script/devices/Detector.py @@ -0,0 +1,12 @@ +class Detector(DeviceBase): + def __init__(self, name): + DeviceBase.__init__(self, name) + + def start(): + print "startd" + + def stop(): + print "stopd" + + def doClose(self): + DeviceBase.doClose(self) \ No newline at end of file