Пример #1
0
 public Factory(DebugProgram.Factory debugProgramFactory,
                DefaultPort.Factory defaultPortFactory, Process.Factory processFactory)
 {
     this.debugProgramFactory = debugProgramFactory;
     this.defaultPortFactory  = defaultPortFactory;
     this.processFactory      = processFactory;
 }
Пример #2
0
        DebugPortNotify(IDebugEventCallback2 callback, IDebugEngine2 debugEngine,
                        DebugProgram.Factory debugProgramFactory, DefaultPort.Factory defaultPortFactory,
                        Process.Factory processFactory)
        {
            programNodes = new List <IDebugProgramNode2>();

            this.callback            = callback;
            this.debugEngine         = debugEngine;
            this.debugProgramFactory = debugProgramFactory;
            this.defaultPortFactory  = defaultPortFactory;
            this.processFactory      = processFactory;
        }