コード例 #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
ファイル: Participant.cs プロジェクト: raljoach/Apps
 public Participant(ExecutionModel automata)
 {
 }