| 46 | }; |
| 47 | |
| 48 | IDebugSession::IDebugSession() |
| 49 | : d_ptr(new IDebugSessionPrivate(this)) |
| 50 | { |
| 51 | connect(this, &IDebugSession::stateChanged, |
| 52 | this, [this](IDebugSession::DebuggerState state) { Q_D(IDebugSession); d->slotStateChanged(state); }); |
| 53 | } |
| 54 | |
| 55 | IDebugSession::~IDebugSession() |
| 56 | { |
nothing calls this directly
no test coverage detected