| 234 | }; |
| 235 | |
| 236 | MIBreakpointController::MIBreakpointController(MIDebugSession * parent) |
| 237 | : IBreakpointController(parent) |
| 238 | { |
| 239 | Q_ASSERT(parent); |
| 240 | connect(parent, &MIDebugSession::inferiorStopped, |
| 241 | this, &MIBreakpointController::programStopped); |
| 242 | |
| 243 | int numBreakpoints = breakpointModel()->breakpoints().size(); |
| 244 | for (int row = 0; row < numBreakpoints; ++row) |
| 245 | breakpointAdded(row); |
| 246 | } |
| 247 | |
| 248 | MIDebugSession *MIBreakpointController::debugSession() const |
| 249 | { |
nothing calls this directly
no test coverage detected