diff options
author | Frederik Gladhorn <frederik.gladhorn@theqtcompany.com> | 2015-02-24 12:21:34 +0000 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2015-02-24 12:21:34 +0000 |
commit | b01068a406f6ebf51e103dd541f36fd6ef144805 (patch) | |
tree | 9a1d2d634ce28672a72dfd1c7565f95cc82c2cb4 /examples/websockets/echoclient/echoclient.h | |
parent | 9989055693ac6225ae3e6f8153862765b0cd5e7e (diff) | |
parent | b797778da01f72e64cda8680f29f3fa8434ffb0a (diff) | |
download | qtwebsockets-b01068a406f6ebf51e103dd541f36fd6ef144805.tar.gz |
Merge "Merge remote-tracking branch 'origin/5.4' into 5.5" into refs/staging/5.5
Diffstat (limited to 'examples/websockets/echoclient/echoclient.h')
-rw-r--r-- | examples/websockets/echoclient/echoclient.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/websockets/echoclient/echoclient.h b/examples/websockets/echoclient/echoclient.h index 757c56d..165087b 100644 --- a/examples/websockets/echoclient/echoclient.h +++ b/examples/websockets/echoclient/echoclient.h @@ -40,7 +40,7 @@ class EchoClient : public QObject { Q_OBJECT public: - explicit EchoClient(const QUrl &url, QObject *parent = Q_NULLPTR); + explicit EchoClient(const QUrl &url, bool debug = false, QObject *parent = Q_NULLPTR); Q_SIGNALS: void closed(); @@ -52,6 +52,7 @@ private Q_SLOTS: private: QWebSocket m_webSocket; QUrl m_url; + bool m_debug; }; #endif // ECHOCLIENT_H |