예제 #1
0
파일: Software.cs 프로젝트: raljoach/Apps
 internal Software(ExecutionModel executionModel)
 {
     this.executionModel = executionModel;
 }
예제 #2
0
파일: Tester.cs 프로젝트: raljoach/Apps
 public Tester(ExecutionModel automata) : base(automata)
 {
 }
예제 #3
0
파일: Software.cs 프로젝트: raljoach/Apps
 internal Software(Action main)
 {
     this.executionModel = new ExecutionModel(new Program(main));
 }
예제 #4
0
 public Participant(ExecutionModel automata)
 {
 }