diff --git a/src/plugins/debugger/qml/qmlcppengine.cpp b/src/plugins/debugger/qml/qmlcppengine.cpp index 22768218f54db13ac326c4aacdfa197dd0f442b5..90237fab68ab4cb31f6b71c93499593f83db4c21 100644 --- a/src/plugins/debugger/qml/qmlcppengine.cpp +++ b/src/plugins/debugger/qml/qmlcppengine.cpp @@ -440,6 +440,18 @@ void QmlCppEngine::notifyInferiorShutdownOk() DebuggerEngine::notifyInferiorShutdownOk(); } +void QmlCppEngine::notifyInferiorSetupOk() +{ + EDEBUG("\nMASTER INFERIOR SETUP OK"); + emit aboutToNotifyInferiorSetupOk(); + DebuggerEngine::notifyInferiorSetupOk(); +} + +void QmlCppEngine::notifyEngineRemoteServerRunning(const QByteArray &serverChannel, int pid) +{ + d->m_cppEngine->notifyEngineRemoteServerRunning(serverChannel, pid); +} + void QmlCppEngine::setupInferior() { EDEBUG("\nMASTER SETUP INFERIOR"); diff --git a/src/plugins/debugger/qml/qmlcppengine.h b/src/plugins/debugger/qml/qmlcppengine.h index fff3041be03c1739ff29bba98c1a9b7696b06477..c0a0226782d1e85206a28cdaa4456929a6dd3ac2 100644 --- a/src/plugins/debugger/qml/qmlcppengine.h +++ b/src/plugins/debugger/qml/qmlcppengine.h @@ -125,6 +125,12 @@ protected: void notifyEngineRunAndInferiorRunOk(); void notifyInferiorShutdownOk(); + void notifyInferiorSetupOk(); + void notifyEngineRemoteServerRunning(const QByteArray &, int pid); + +signals: + void aboutToNotifyInferiorSetupOk(); + private: void engineStateChanged(DebuggerState newState); void setState(DebuggerState newState, bool forced = false);