/// <summary>
 /// Function of DCToolWinUsb is to create/erase the DebugUnit Enumerator IToolWinUSB
 /// </summary>
 public DCToolWinUsb(DCToolDebugUnitSession dcDebugUnit) : base(WinUSBTraceSource)
 {
     Debug.Assert(dcDebugUnit != null);
     this.nextTool = dcDebugUnit;
 }
Exemple #2
0
 public DCToolChain()
 {
     Tool3 = new DCToolDebugUnit();
     Tool2 = new DCToolDebugUnitSession(Tool3 as DCToolDebugUnit);
     Tool1 = new DCToolWinUsb(Tool2 as DCToolDebugUnitSession);
 }