MCPcopy Create free account
hub / github.com/KDE/kdevelop / MIBreakpointController

Method MIBreakpointController

plugins/debuggercommon/mibreakpointcontroller.cpp:236–246  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

234};
235
236MIBreakpointController::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
248MIDebugSession *MIBreakpointController::debugSession() const
249{

Callers

nothing calls this directly

Calls 3

breakpointModelFunction · 0.85
sizeMethod · 0.45
breakpointsMethod · 0.45

Tested by

no test coverage detected