Home | Trees | Indices | Help |
---|
|
1 ######################################################################## 2 # 3 # File: simulator.py 4 # Author: Mark Mitchell 5 # Date: 2005-06-03 6 # 7 # Contents: 8 # Simulator 9 # 10 # Copyright (c) 2005 by CodeSourcery, LLC. All rights reserved. 11 # 12 ######################################################################## 13 14 ######################################################################## 15 # Imports 16 ####################################################################### 17 18 from local_host import LocalHost 19 from qm.fields import TextField, SetField 20 21 ######################################################################## 22 # Classes 23 ####################################################################### 2426 """A 'Simulator' is a semi-hosted simulation environment. 27 28 The local file system is shared with the simulated machine. A 29 simulator is used to execute programs.""" 30 31 simulator = TextField( 32 description = """The simulation program.""" 33 ) 34 35 # Any arguments that must be provided to the simulator. 36 simulator_args = SetField( 37 TextField(description = """Arguments to the simulation program.""")) 3846
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Dec 23 12:30:43 2011 | http://epydoc.sourceforge.net |