Example #1
0
 protected Command(GdbEngine gdb)
 {
     if (gdb == null)
     {
         throw new ArgumentNullException("gdb");
     }
     this.gdb = gdb;
 }
Example #2
0
 public TwoWayCommand(GdbEngine gdb)
     : base(gdb)
 {
 }
Example #3
0
 public OneWayCommand(GdbEngine gdb)
     : base(gdb)
 {
 }
Example #4
0
 public VoidCommand(GdbEngine gdb)
     : base(gdb)
 {
 }
Example #5
0
 public SyncAdapter(GdbEngine gdb)
 {
     this.gdb      = gdb;
     responseEvent = new AutoResetEvent(false);
 }