#import #import "DebuggerController_Protocol.h" #import "GdbManager.h" #import "GuiGdbCmd.h" #import "GuiGdbManagerInternal_Protocol.h" #import "GuiGdbManagerExecLock_Protocol.h" #import "GuiDisplayProvider_Protocol.h" #import "DebuggerControllerInternal_Protocol.h" // // DebuggerController established the connection to the remote // client which provides the display and GUI capablity. The // remote client can invoke commands and control gdb via the // DebuggerController protocol. // // The DebuggerController is a RunLoop. // @interface DebuggerController : NSObject { // We call into this object to control and communicate w/ GDB GdbManager *gdbManager; // object which provides visual feedback id displayProvider; NSConnection *displayProviderConnection; NSConnection *gdbConnection; } @end