1 # -*- coding: iso-8859-1 -*- 2 3 from simulation import Process 4 5 6 -class RealProcess(Process.Process): 7 """Interface to the real (hardware) process.""" 8 9 - def getStateValues(self,dict): 10 """ask hardware for values""" 11 pass 12 13 - def setControlValues(self,dict): 14 """send values to hardware""" 15 pass 16 17 - def getDefaultControlValues(self): 18 pass 19