aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/debugger/qqmldebugserverconnection_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/debugger/qqmldebugserverconnection_p.h')
-rw-r--r--src/qml/debugger/qqmldebugserverconnection_p.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qml/debugger/qqmldebugserverconnection_p.h b/src/qml/debugger/qqmldebugserverconnection_p.h
index 18a01544f3..fecb2d8c26 100644
--- a/src/qml/debugger/qqmldebugserverconnection_p.h
+++ b/src/qml/debugger/qqmldebugserverconnection_p.h
@@ -59,10 +59,11 @@ public:
virtual ~QQmlDebugServerConnection() {}
virtual void setServer(QQmlDebugServer *server) = 0;
- virtual void setPortRange(int portFrom, int portTo, bool bock, const QString &hostaddress) = 0;
+ virtual bool setPortRange(int portFrom, int portTo, bool bock, const QString &hostaddress) = 0;
virtual bool isConnected() const = 0;
virtual void send(const QList<QByteArray> &messages) = 0;
virtual void disconnect() = 0;
+ virtual void waitForConnection() = 0;
virtual bool waitForMessage() = 0;
};